refactor: move home-manager module to their respective hosts

This commit is contained in:
2024-10-21 16:25:00 +05:30
parent ee4670912b
commit b9d444e78d
10 changed files with 80 additions and 121 deletions

View File

@ -10,6 +10,7 @@
(modulesPath + "/installer/scan/not-detected.nix")
(modulesPath + "/profiles/qemu-guest.nix")
inputs.disko.nixosModules.default
inputs.home-manager.nixosModules.home-manager
(import ./disko.nix {device = "/dev/sda";})
];
@ -114,5 +115,11 @@
};
};
home-manager.users.${username} = {
imports = [
./home.nix
];
};
system.stateVersion = "24.11";
}