diff options
Diffstat (limited to 'nix/system/default.nix')
-rw-r--r-- | nix/system/default.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/nix/system/default.nix b/nix/system/default.nix index dbc34f5..65e6b73 100644 --- a/nix/system/default.nix +++ b/nix/system/default.nix @@ -4,6 +4,9 @@ # allow flakes nix.settings.experimental-features = [ "nix-command" "flakes" ]; + # hostname + networking.hostName = config.hostName; + # common system packages environment.systemPackages = with pkgs; [ # editor @@ -42,7 +45,6 @@ networking.networkmanager.enable = true; services.fwupd.enable = true; services.libinput.enable = true; - services.pcscd.enable = true; services.printing.enable = true; services.pipewire = { enable = true; |