Remove hostname variable
This commit is contained in:
parent
ec4a091991
commit
2c088442a1
4 changed files with 10 additions and 16 deletions
lib/nixos
|
@ -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
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue