Add Morty host

This commit is contained in:
Yorick Barbanneau 2023-09-09 22:20:37 +02:00
parent 82c32d5d21
commit 8de0eb092f
2 changed files with 63 additions and 0 deletions

View file

@ -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 = {