From 87236d4923089c593d20be49fb2627d2bb850b9f Mon Sep 17 00:00:00 2001 From: Nydragon Date: Thu, 11 Jul 2024 01:18:58 +0200 Subject: [PATCH] feat: set hostname automatically --- hosts/brontes/configuration.nix | 2 -- hosts/marr/configuration.nix | 2 -- lib/default.nix | 13 +++++-------- 3 files changed, 5 insertions(+), 12 deletions(-) diff --git a/hosts/brontes/configuration.nix b/hosts/brontes/configuration.nix index 76075a6..f51cfb1 100644 --- a/hosts/brontes/configuration.nix +++ b/hosts/brontes/configuration.nix @@ -2,7 +2,6 @@ pkgs, inputs, username, - hostname, ... }: { @@ -17,7 +16,6 @@ boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; - networking.hostName = hostname; hardware.bluetooth.enable = true; hardware.bluetooth.powerOnBoot = true; services.blueman.enable = true; diff --git a/hosts/marr/configuration.nix b/hosts/marr/configuration.nix index b64e793..45995a8 100644 --- a/hosts/marr/configuration.nix +++ b/hosts/marr/configuration.nix @@ -3,7 +3,6 @@ pkgs, inputs, username, - hostname, ... }: { @@ -20,7 +19,6 @@ boot.loader.efi.canTouchEfiVariables = true; boot.initrd.luks.devices."luks-7adaa102-d438-4e9e-9972-4a3c91b887b3".device = "/dev/disk/by-uuid/7adaa102-d438-4e9e-9972-4a3c91b887b3"; - networking.hostName = hostname; hardware.bluetooth.enable = true; hardware.bluetooth.powerOnBoot = true; diff --git a/lib/default.nix b/lib/default.nix index e55420a..1b008c9 100644 --- a/lib/default.nix +++ b/lib/default.nix @@ -18,15 +18,12 @@ }: lib.nixosSystem { inherit system; - modules = [ ../hosts/${hostname}/configuration.nix ] ++ extraModules; + modules = [ + ../hosts/${hostname}/configuration.nix + { networking.hostName = hostname; } + ] ++ extraModules; specialArgs = { - inherit - inputs - system - lib - hostname - ; - + inherit inputs; username = "nico"; }; };