1
0
mirror of https://github.com/ellmau/nixos.git synced 2025-12-19 09:29:36 +01:00

Add tray user service for usdiskie

This commit is contained in:
Stefan Ellmauthaler 2023-06-14 11:37:13 +02:00
parent fded925fb9
commit 2f116df236
Signed by: ellmau
GPG Key ID: C804A9C1B7AF8256

View File

@ -2,6 +2,7 @@
config,
lib,
pkgs,
nixosConfig,
...
}: {
imports = [
@ -41,6 +42,13 @@
tray = "auto";
};
};
# tray service for udiskie
systemd.user.services.tray = {
Unit = {
Description = "Home Manager System Tray";
Requires = ["graphical-session-pre.target"];
};
};
xdg = {
enable = true;