set up defiant

This commit is contained in:
Leyla Becker 2024-08-31 11:53:34 -05:00
parent aabad6f30e
commit eca25529d7
7 changed files with 61 additions and 24 deletions

View file

@ -25,7 +25,7 @@
nixosConfigurations = {
# Leyla Laptop
horizon = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs;};
specialArgs = { inherit inputs; };
modules = [
./hosts/horizon/configuration.nix
inputs.home-manager.nixosModules.default
@ -34,12 +34,19 @@
};
# Leyla Desktop
twilight = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs;};
specialArgs = { inherit inputs; };
modules = [
./hosts/twilight/configuration.nix
inputs.home-manager.nixosModules.default
];
};
# NAS Service
defiant = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inpits; }
modules = [
./hosts/defiant/configuration.nix
]
};
};
};
}