1
0
Fork 0

Move common NixOS configuration to another module

This commit is contained in:
Avery 2024-03-19 19:41:47 +01:00
parent 0ebff98838
commit 07833fcdd4
Signed by: Avery
GPG key ID: B684FD451B692E04
4 changed files with 97 additions and 56 deletions

View file

@ -18,7 +18,7 @@
totsugeki = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
# ./common/nixos.nix
./common/nixos.nix
./hosts/totsugeki/nixos.nix
home-manager.nixosModules.home-manager
{
@ -38,8 +38,9 @@
greatyamada = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
# ./common/nixos.nix
./common/nixos.nix
./hosts/greatyamada/nixos.nix
./hosts/greatyamada/services
];
};
};