10 lines
279 B
Nix
10 lines
279 B
Nix
{ ... }: {
|
|
sane.programs.gnome-clocks = {
|
|
buildCost = 1;
|
|
sandbox.whitelistAudio = true;
|
|
sandbox.whitelistDbus = [ "user" ]; #< required for DE notification when alarm rings
|
|
sandbox.whitelistWayland = true;
|
|
gsettingsPersist = [ "org/gnome/clocks" ];
|
|
};
|
|
}
|