.dotfiles/dot_config/flake/home/darkman.nix
2025-08-29 22:37:18 -04:00

20 lines
329 B
Nix

{...}: {
services.darkman = {
enable = true;
settings = {
usegeoclue = true;
};
lightModeScripts = {
fish = ''
yes | fish_config theme save "Rosé Pine Dawn"
'';
};
darkModeScripts = {
fish = ''
yes | fish_config theme save "Rosé Pine"
'';
};
};
}