.dotfiles/dot_config/flake/home/darkman.nix
Tyler Mayoff f25d426ae8 theming
2025-07-19 11:18:46 -04:00

22 lines
477 B
Nix

{pkgs, ...}: {
services.darkman = {
enable = true;
settings = {
usegeoclue = true;
};
lightModeScripts = {
# gtk-theme = ''
# ${pkgs.dconf}/bin/dconf write \
# /org/gnome/desktop/interface/color-scheme "'prefer-light'"
# '';
};
darkModeScripts = {
# gtk-theme = ''
# ${pkgs.dconf}/bin/dconf write \
# /org/gnome/desktop/interface/color-scheme "'prefer-dark'"
# '';
};
};
}