about summary refs log tree commit diff
path: root/profiles
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2023-05-01 19:52:29 -0700
committerFranck Cuny <franck@fcuny.net>2023-05-01 19:52:29 -0700
commit5493fe0db118b0fd934073eb63d2d2e3e1fc99df (patch)
treeb6e1a0d57b39f2c2a366358d5bcd5a54dc66e20c /profiles
parentprofiles/laptop: consolidate services related to laptop (diff)
downloadworld-5493fe0db118b0fd934073eb63d2d2e3e1fc99df.tar.gz
profiles/workstation: moved more things around
Diffstat (limited to '')
-rw-r--r--profiles/workstation.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/profiles/workstation.nix b/profiles/workstation.nix
index 484d110..e860389 100644
--- a/profiles/workstation.nix
+++ b/profiles/workstation.nix
@@ -3,4 +3,22 @@
   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;
 }