diff options
Diffstat (limited to 'hosts/carmel')
-rw-r--r-- | hosts/carmel/default.nix | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/hosts/carmel/default.nix b/hosts/carmel/default.nix index 00f370c..11105d3 100644 --- a/hosts/carmel/default.nix +++ b/hosts/carmel/default.nix @@ -1,4 +1,4 @@ -{ config, pkgs, ... }: +{ config, pkgs, hostname, ... }: { imports = @@ -8,17 +8,13 @@ ../../modules/desktop ]; - nix = { - package = pkgs.nixUnstable; - }; - # Use the systemd-boot EFI boot loader. boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; time.timeZone = "America/Los_Angeles"; - networking.hostName = "carmel"; # Define your hostname. + networking.hostName = hostname; networking.wireless.enable = false; networking.interfaces.enp9s0.useDHCP = true; |