about summary refs log tree commit diff
path: root/profiles/workstation.nix
blob: e86038932143677b3f0ac9a2112ecc5729f50414 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ pkgs, config, lib, ... }:
{
  virtualisation.docker.enable = false;
  virtualisation.podman.enable = true;
  virtualisation.podman.dockerCompat = true;

  services.dbus.enable = true;
  services.dbus.packages = with pkgs; [ gcr dconf gnome.sushi ];
  services.udev.packages = with pkgs; [ gnome3.gnome-settings-daemon ];

  services.gvfs.enable = true;

  programs.dconf.enable = true;

  services.avahi.enable = true;
  services.avahi.nssmdns = true;
  services.avahi.openFirewall = true;

  # for the yubikeys
  services.pcscd.enable = true;

  # Install tools related to the scanner (scanimage etc)
  hardware.sane.enable = true;
}