abstracted hostnames so that each machine can now use seperate home-manager configs
This commit is contained in:
@@ -43,7 +43,7 @@
|
||||
{
|
||||
nixosConfigurations = {
|
||||
eva-01 = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = {inherit inputs pkgs-unstable configPath;};
|
||||
specialArgs = {inherit inputs pkgs-unstable configPath;} // {hostname = "eva-01";};
|
||||
system = system;
|
||||
modules = [
|
||||
./hosts/eva-01/configuration.nix
|
||||
@@ -53,7 +53,8 @@
|
||||
};
|
||||
|
||||
eva-03 = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = {inherit inputs pkgs-unstable configPath;};
|
||||
hostname = "eva-03";
|
||||
specialArgs = {inherit inputs pkgs-unstable configPath;} // {hostname = "eva-03";};
|
||||
system = system;
|
||||
modules = [
|
||||
./hosts/eva-03/configuration.nix
|
||||
|
||||
Reference in New Issue
Block a user