Add lucy host
This commit is contained in:
parent
88dba04cd4
commit
441b0ff9af
1 changed files with 18 additions and 1 deletions
17
flake.nix
17
flake.nix
|
@ -29,6 +29,23 @@ in rec {
|
||||||
home-manager.nixosModule
|
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
|
||||||
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue