rename machines

This commit is contained in:
Mans Ziesel 2023-06-13 16:12:52 +02:00
parent fc92425e0e
commit 6261267792
3 changed files with 6 additions and 6 deletions

View File

@ -22,16 +22,16 @@
# Available through 'nixos-rebuild --flake .#your-hostname' # Available through 'nixos-rebuild --flake .#your-hostname'
nixosConfigurations = { nixosConfigurations = {
# FIXME_ replace with your hostname # FIXME_ replace with your hostname
nixos-desktop-mans = nixpkgs.lib.nixosSystem { pc-mans = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; }; # Pass flake inputs to our config specialArgs = { inherit inputs; }; # Pass flake inputs to our config
# > Our main nixos configuration file < # > Our main nixos configuration file <
modules = [ ./nixos/machines/nixos-desktop-mans/configuration.nix ]; modules = [ ./nixos/machines/pc-mans/configuration.nix ];
}; };
nixos-laptop-mans = nixpkgs.lib.nixosSystem { lpt-mans = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; }; # Pass flake inputs to our config specialArgs = { inherit inputs; }; # Pass flake inputs to our config
# > Our main nixos configuration file < # > Our main nixos configuration file <
modules = [ ./nixos/machines/nixos-laptop-mans/configuration.nix ]; modules = [ ./nixos/machines/lpt-mans/configuration.nix ];
}; };
}; };
}; };

View File

@ -17,5 +17,5 @@
# Set the hostname # Set the hostname
networking.hostName = "nixos-laptop-mans"; networking.hostName = "lpt-mans";
} }

View File

@ -17,5 +17,5 @@
# Set the hostname # Set the hostname
networking.hostName = "nixos-desktop-mans"; networking.hostName = "pc-mans";
} }