1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
config,
lib,
pkgs,
...
}:
{
options.zpha.services.dssd.enable = lib.mkEnableOption "dssd";
config = lib.mkIf config.zpha.services.dssd.enable {
preservation.preserveAt."/persist".users.zaphyra.directories = [
".local/state/dssd"
];
services.gnome.gnome-keyring.enable = lib.mkForce false;
users.users.zaphyra.maid = {
dbus.packages = [ pkgs.zpha.dssd ];
systemd.services.dssd = {
unitConfig = {
Description = "Dead Simple Secret Daemon";
Documentation = "https://github.com/ylxdzsw/dssd";
};
serviceConfig = {
Type = "dbus";
ExecStart = lib.getExe pkgs.zpha.dssd;
BusName = "org.freedesktop.secrets";
};
};
};
};
}