reorganise

This commit is contained in:
tristan 2023-04-15 13:55:16 +01:00
parent 98af4d5664
commit 744f70fc87
14 changed files with 72 additions and 64 deletions

View file

@ -5,13 +5,16 @@ nixpkgs.lib.nixosSystem rec {
modules = [
../hardware/${name}.nix
../system/${name}.nix
../global.nix
../system/global/system.nix
../system/${name}/system.nix
../system/${name}/hardware.nix
home-manager.nixosModules.home-manager {
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.${user} = import ../home.nix;
home-manager.users.${user}.imports = [
../system/global/home.nix
../system/${name}/home.nix
];
}
];
}