Added configuration for desktop

This commit is contained in:
2024-03-12 21:24:29 +01:00
parent 4fdc520c13
commit 7ab4886e90
9 changed files with 219 additions and 2 deletions

View File

@@ -42,7 +42,7 @@
in
{
nixosConfigurations = {
laptop = nixpkgs.lib.nixosSystem {
xv-laptop = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit inputs; };
modules = [
@@ -58,5 +58,22 @@
];
};
};
nixosConfigurations = {
xv-desktop = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit inputs; };
modules = [
({ config, pkgs, ... }: { nixpkgs.overlays = [ overlay-unstable ]; })
./hosts/desktop
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.extraSpecialArgs = { inherit inputs nix-colors; };
home-manager.users.xeovalyte.imports = [ ./hosts/desktop/home.nix ];
}
];
};
};
};
}