From 9714dba569d6e5f7c949a5279abba6377b696e5f Mon Sep 17 00:00:00 2001 From: Clara Dautermann Date: Tue, 22 Apr 2025 20:16:43 +0200 Subject: [PATCH] install nfs and cifs --- configuration.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configuration.nix b/configuration.nix index bb5d372..80fe54b 100644 --- a/configuration.nix +++ b/configuration.nix @@ -24,6 +24,8 @@ boot.kernelParams = [ "intel_iommu=on" ]; + boot.supportedFilesystems = [ "nfs" ]; + services.hardware.bolt.enable = true; networking.hostName = "nixpad"; # Define your hostname. @@ -165,6 +167,7 @@ environment.systemPackages = with pkgs; [ vim wget + cifs-utils ] ++ (if !inputs.x11mode then [ greetd.regreet ] else [ ]); programs.dconf.enable = true;