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";
       };
     };