diff options
author | Alan Pearce | 2020-01-10 12:26:42 +0100 |
---|---|---|
committer | Alan Pearce | 2020-01-10 12:26:42 +0100 |
commit | b905b92e160c1ea7450ff013f22c1ed5fc49d84d (patch) | |
tree | a969f6b81df2dfdeb94ec875de0dc1bafb55cab0 /system/settings | |
parent | bbac413d6d50b3190b9e522ae8754c4bf858c7d8 (diff) | |
download | nixfiles-b905b92e160c1ea7450ff013f22c1ed5fc49d84d.tar.lz nixfiles-b905b92e160c1ea7450ff013f22c1ed5fc49d84d.tar.zst nixfiles-b905b92e160c1ea7450ff013f22c1ed5fc49d84d.zip |
Add module for browsing CIFS shares
Diffstat (limited to 'system/settings')
-rw-r--r-- | system/settings/configuration/networking.nix | 10 |
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 + ]; +} |