Add lucy host

This commit is contained in:
Yorick Barbanneau 2023-09-03 01:21:12 +02:00
parent 88dba04cd4
commit 441b0ff9af

View file

@ -24,7 +24,24 @@ in rec {
laptop = false;
};
};
modules = [
modules = [
./nixos/default.nix
home-manager.nixosModule
];
};
lucy = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {
inherit stateVersion;
hostname = "lucy";
username = "ephase";
hostConfig = {
gaming = false;
desktop = true;
laptop = true;
};
};
modules = [
./nixos/default.nix
home-manager.nixosModule
];