Added christa desktop

This commit is contained in:
2025-01-09 15:59:10 +01:00
parent f85a04b3b8
commit 3705f8b8fe
5 changed files with 189 additions and 2 deletions

View File

@@ -62,6 +62,31 @@
};
};
# Christa Desktop Configuration
nixosConfigurations = {
ch-clt-dsk01 = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit inputs; };
modules = [
({ config, pkgs, ... }: { nixpkgs.overlays = [ overlay-unstable ]; })
./hosts/ch-clt-dsk01
];
};
};
homeConfigurations = {
"kiiwy@ch-clt-dsk01" = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.x86_64-linux;
extraSpecialArgs = { inherit inputs nix-colors; };
modules = [
({ config, pkgs, ... }: { nixpkgs.overlays = [ overlay-unstable ]; })
./hosts/ch-clt-dsk01/home.nix
];
};
};
# Surface Configuration
nixosConfigurations = {
xv-surface = nixpkgs.lib.nixosSystem {