mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-04-02 11:12:09 +02:00
31
hosts/server/variables.nix
Normal file
31
hosts/server/variables.nix
Normal file
@@ -0,0 +1,31 @@
|
||||
{ config, ... }: {
|
||||
imports = [ ../shared/variables-config.nix ];
|
||||
|
||||
config.var = {
|
||||
hostname = "jack-nixos";
|
||||
username = "hadi";
|
||||
homeDirectory = "/home/" + config.var.username;
|
||||
configDirectory = config.var.homeDirectory + "/.config/nixos";
|
||||
|
||||
keyboardLayout = "fr";
|
||||
|
||||
timeZone = "Europe/Paris";
|
||||
defaultLocale = "en_US.UTF-8";
|
||||
extraLocale = "fr_FR.UTF-8";
|
||||
|
||||
git = {
|
||||
username = "Hadi";
|
||||
email = "112569860+anotherhadi@users.noreply.github.com";
|
||||
};
|
||||
|
||||
stateVersion = "24.05";
|
||||
|
||||
autoUpgrade = false;
|
||||
autoGarbageCollector = false;
|
||||
nextcloud = false;
|
||||
sops = true;
|
||||
obsidian = false;
|
||||
|
||||
theme = import ../themes/catppuccin.nix; # select your theme here
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user