move configuration to hosts folder structure

This commit is contained in:
akulij 2025-02-15 14:10:22 +00:00
parent 2f650892b5
commit 62afc72fae
4 changed files with 6 additions and 1 deletions

View File

@ -9,7 +9,7 @@
system = "x86_64-linux"; system = "x86_64-linux";
modules = [ modules = [
disko.nixosModules.disko disko.nixosModules.disko
./configuration.nix ./hosts/pc/configuration.nix
]; ];
}; };
}; };

View File

@ -107,6 +107,11 @@ in
pkgs.gamescope pkgs.gamescope
]; ];
programs.git.config.user = {
name = "akulij";
email = "aakulij@gmail.com";
};
users.users.akulij = { users.users.akulij = {
isNormalUser = true; isNormalUser = true;
extraGroups = [ "wheel" ]; extraGroups = [ "wheel" ];