added Lillie host

This commit is contained in:
willifan 2024-11-02 13:29:38 +01:00
parent d8df4f3de1
commit 267b0e1f28
4 changed files with 94 additions and 0 deletions

View file

@ -135,6 +135,33 @@
};
Lillie = let
system = "x86_64-linux";
in
lib.nixosSystem {
specialArgs = {
hostname = "Lillie";
type = "desktop";
inherit attrs;
inherit system;
};
modules = [
attrs.home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
}
attrs.disko.nixosModules.disko
attrs.stylix.nixosModules.stylix
attrs.nixvim.nixosModules.nixvim
./hosts
./users/willifan
];
};
};
};
}