nixos-combined-flake/modules/home-manager/desktop/darkman/default.nix

19 lines
280 B
Nix

{
lib,
config,
...
}: {
config = lib.mkIf config.desktop.enable {
services.darkman = {
enable = true;
settings = {
lat = 50.81;
lng = 7.03;
usegeoclue = true;
dbusserver = true;
portal = true;
};
};
};
}