Add Morty host
This commit is contained in:
parent
82c32d5d21
commit
8de0eb092f
2 changed files with 63 additions and 0 deletions
18
flake.nix
18
flake.nix
|
@ -12,6 +12,24 @@ let
|
|||
stateVersion = "23.05";
|
||||
in rec {
|
||||
nixosConfigurations = {
|
||||
|
||||
morty = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = {
|
||||
inherit stateVersion;
|
||||
hostname = "morty";
|
||||
username = "ephase";
|
||||
hostConfig = {
|
||||
gaming = true;
|
||||
desktop = true;
|
||||
laptop = true;
|
||||
};
|
||||
};
|
||||
modules = [
|
||||
./nixos/default.nix
|
||||
home-manager.nixosModule
|
||||
];
|
||||
};
|
||||
mrmeeseeks = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue