Compare commits
No commits in common. "62612677924ba70cc8730854e04a6a2156e69d46" and "8cf6f8e5981b771076c9f968f622c0deb63996dc" have entirely different histories.
6261267792
...
8cf6f8e598
@ -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
|
||||||
pc-mans = nixpkgs.lib.nixosSystem {
|
nixos-desktop-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/pc-mans/configuration.nix ];
|
modules = [ ./nixos/machines/nixos-desktop-mans/configuration.nix ];
|
||||||
};
|
};
|
||||||
|
|
||||||
lpt-mans = nixpkgs.lib.nixosSystem {
|
nixos-laptop-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/lpt-mans/configuration.nix ];
|
modules = [ ./nixos/machines/nixos-laptop-mans/configuration.nix ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -13,8 +13,7 @@
|
|||||||
# ./users.nix
|
# ./users.nix
|
||||||
./network.nix
|
./network.nix
|
||||||
../../roles/desktop.nix
|
../../roles/desktop.nix
|
||||||
|
../../roles/nvidia.nix
|
||||||
../../modules/nvidia.nix
|
|
||||||
|
|
||||||
# Import home-manager's NixOS module
|
# Import home-manager's NixOS module
|
||||||
inputs.home-manager.nixosModules.home-manager
|
inputs.home-manager.nixosModules.home-manager
|
@ -17,5 +17,5 @@
|
|||||||
|
|
||||||
|
|
||||||
# Set the hostname
|
# Set the hostname
|
||||||
networking.hostName = "pc-mans";
|
networking.hostName = "nixos-desktop-mans";
|
||||||
}
|
}
|
@ -17,5 +17,5 @@
|
|||||||
|
|
||||||
|
|
||||||
# Set the hostname
|
# Set the hostname
|
||||||
networking.hostName = "lpt-mans";
|
networking.hostName = "nixos-laptop-mans";
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user