separate hostnames into flake
This commit is contained in:
parent
49a5923f06
commit
4ef52b8226
@ -18,7 +18,7 @@
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
|
||||
networking.hostName = "starscream"; # Define your hostname.
|
||||
# networking.hostName = "starscream"; # Define your hostname.
|
||||
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
||||
|
||||
# Configure network proxy if necessary
|
||||
|
@ -12,7 +12,9 @@
|
||||
starscream = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
modules = [
|
||||
./configuration.nix
|
||||
./configuration.nix {
|
||||
networking.hostname = "starscream";
|
||||
};
|
||||
./hardware/starscream-hw.nix
|
||||
home-manager.nixosModules.home-manager
|
||||
{
|
||||
@ -26,7 +28,9 @@
|
||||
knockout = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
modules = [
|
||||
./configuration.nix
|
||||
./configuration.nix {
|
||||
networking.hostname = "knockout";
|
||||
};
|
||||
./hardware/knockout-hw.nix
|
||||
home-manager.nixosModules.home-manager
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user