summary refs log tree commit diff stats
path: root/system/settings/configuration/networking.nix
blob: 2e93a4caef33fe0de0b18e4800714b2e9bee21f7 (plain)
1
2
3
4
5
6
7
8
9
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
  ];
}