Files
nix-files/hosts/common/programs/gnome-clocks.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" ];
};
}