feat(host/orion): enable udisks2
All checks were successful
Check Formatting of Files / Check-Formatting (push) Successful in 1m8s

This commit is contained in:
Price Hiller 2024-07-24 20:24:06 -05:00
parent b01dd6ab4b
commit 9bb453f877
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,4 @@
{ ... }:
{
services.udisks2.enable = true;
}

View File

@ -0,0 +1,14 @@
{ ... }:
{
services.udiskie.enable = true;
# Udiskie requires a tray target
systemd.user.targets.tray = {
Unit = {
Description = "Home Manager System Tray";
Requires = [
"graphical-session-pre.target"
"compositor.target"
];
};
};
}