summary refs log tree commit diff stats
path: root/system/settings/configuration
diff options
context:
space:
mode:
authorAlan Pearce2020-01-10 12:26:42 +0100
committerAlan Pearce2020-01-10 12:26:42 +0100
commitb905b92e160c1ea7450ff013f22c1ed5fc49d84d (patch)
treea969f6b81df2dfdeb94ec875de0dc1bafb55cab0 /system/settings/configuration
parentbbac413d6d50b3190b9e522ae8754c4bf858c7d8 (diff)
downloadnixfiles-b905b92e160c1ea7450ff013f22c1ed5fc49d84d.tar.lz
nixfiles-b905b92e160c1ea7450ff013f22c1ed5fc49d84d.tar.zst
nixfiles-b905b92e160c1ea7450ff013f22c1ed5fc49d84d.zip
Add module for browsing CIFS shares
Diffstat (limited to 'system/settings/configuration')
-rw-r--r--system/settings/configuration/networking.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/system/settings/configuration/networking.nix b/system/settings/configuration/networking.nix
new file mode 100644
index 00000000..2e93a4ca
--- /dev/null
+++ b/system/settings/configuration/networking.nix
@@ -0,0 +1,10 @@
+{ config, pkgs, ... }:
+
+{
+  environment.systemPackages = with pkgs; [ lxqt.lxqt-policykit ]; # provides a default authentification client for policykit
+  services.gvfs.enable = true; # enables gvfs
+
+  imports = [
+    ../services/zeroconf.nix
+  ];
+}