diff --git a/flake.nix b/flake.nix index 0e4e12c..525c1d3 100644 --- a/flake.nix +++ b/flake.nix @@ -22,16 +22,16 @@ # Available through 'nixos-rebuild --flake .#your-hostname' nixosConfigurations = { # 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 # > 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 # > Our main nixos configuration file < - modules = [ ./nixos/machines/nixos-laptop-mans/configuration.nix ]; + modules = [ ./nixos/machines/lpt-mans/configuration.nix ]; }; }; }; diff --git a/nixos/machines/lpt-mans/network.nix b/nixos/machines/lpt-mans/network.nix index 5191f61..d735e96 100644 --- a/nixos/machines/lpt-mans/network.nix +++ b/nixos/machines/lpt-mans/network.nix @@ -17,5 +17,5 @@ # Set the hostname - networking.hostName = "nixos-laptop-mans"; + networking.hostName = "lpt-mans"; } diff --git a/nixos/machines/pc-mans/network.nix b/nixos/machines/pc-mans/network.nix index 1e428c1..d6b3c40 100644 --- a/nixos/machines/pc-mans/network.nix +++ b/nixos/machines/pc-mans/network.nix @@ -17,5 +17,5 @@ # Set the hostname - networking.hostName = "nixos-desktop-mans"; + networking.hostName = "pc-mans"; }