Remove hostname variable

This commit is contained in:
Oliver Davies 2024-02-29 23:23:57 +00:00
parent ec4a091991
commit 2c088442a1
4 changed files with 10 additions and 16 deletions

View file

@ -1,7 +1,6 @@
{
inputs,
desktop ? false,
hostname,
pkgs,
system,
}: let
@ -36,7 +35,7 @@ in {
DefaultTimeoutStopSec=10s
'';
networking.hostName = hostname;
# networking.hostName = hostname;
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
# Configure network proxy if necessary

View file

@ -6,9 +6,8 @@
username,
}: {
desktop ? false,
hostname,
}: let
configuration = import ./configuration.nix {inherit desktop hostname inputs pkgs system;};
configuration = import ./configuration.nix {inherit desktop inputs pkgs system;};
hardwareConfiguration = import ./hardware-configuration.nix;
in
inputs.nixpkgs.lib.nixosSystem {