This commit is contained in:
Hadi
2024-06-19 21:41:04 +02:00
parent 115c6345c3
commit b5fe18ab2f
5 changed files with 128 additions and 28 deletions

View File

@@ -2,6 +2,7 @@
imports = [
./hardware-configuration.nix
./variables.nix
../modules/server/security.nix
../modules/server/openssh.nix
];

View File

@@ -2,7 +2,7 @@
imports = [ ../modules/variables-config.nix ];
config.var = {
hostname = "jack-nixos";
hostname = "jack";
username = "hadi";
homeDirectory = "/home/" + config.var.username;
configDirectory = config.var.homeDirectory + "/.config/nixos";
@@ -25,6 +25,6 @@
sops = true;
obsidian = false;
theme = import ../themes/windows.nix; # select your theme here
theme = import ../themes/jack.nix; # select your theme here
};
}