Changed other hostnames

This commit is contained in:
2025-01-10 13:55:26 +01:00
parent ecc8187973
commit 44c97f169d
8 changed files with 10 additions and 21 deletions

View File

@@ -58,7 +58,7 @@
];
};
xv-surface = nixpkgs.lib.nixosSystem {
ti-clt-tbl01 = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit inputs; };
modules = [
@@ -67,17 +67,17 @@
inputs.nixos-hardware.nixosModules.microsoft-surface-go
nixos-cosmic.nixosModules.default
./hosts/surface
./hosts/ti-clt-tbl01
];
};
xv-desktop = nixpkgs.lib.nixosSystem {
ti-clt-dsk01 = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit inputs; };
modules = [
({ config, pkgs, ... }: { nixpkgs.overlays = [ overlay-unstable ]; })
./hosts/desktop
./hosts/ti-clt-dsk01
];
};
};
@@ -103,23 +103,23 @@
];
};
"xeovalyte@xv-surface" = home-manager.lib.homeManagerConfiguration {
"xeovalyte@ti-clt-tbl01" = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.x86_64-linux;
extraSpecialArgs = { inherit inputs nix-colors; };
modules = [
({ config, pkgs, ... }: { nixpkgs.overlays = [ overlay-unstable ]; })
./hosts/surface/home.nix
./hosts/ti-clt-tbl01/home.nix
];
};
"xeovalyte@xv-desktop" = home-manager.lib.homeManagerConfiguration {
"xeovalyte@ti-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/desktop/home.nix
./hosts/ti-clt-dsk01/home.nix
];
};
};