about summary refs log tree commit diff
path: root/hosts/common/desktop/default.nix
blob: b5effa9c83a758a5fc7f7b8b419fef1edba7059f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{lib, config, pkgs, ...}:
{
  imports = [
    ./fonts.nix
    ./sound.nix
    ./xserver.nix
  ];

  services.avahi.enable = true;
  # Important to resolve .local domains of printers, otherwise you get an error
  # like  "Impossible to connect to XXX.local: Name or service not known"
  services.avahi.nssmdns = true;
}