mirror of
https://codeberg.org/tmayoff/.dotfiles.git
synced 2025-12-06 08:48:34 -05:00
38 lines
793 B
Nix
38 lines
793 B
Nix
{pkgs, ...}: {
|
|
services.darkman = {
|
|
enable = true;
|
|
settings = {
|
|
usegeoclue = true;
|
|
};
|
|
|
|
lightModeScripts = {
|
|
# fish = ''
|
|
# yes | fish_config theme save "Rosé Pine Dawn"
|
|
# '';
|
|
|
|
gtk-theme = ''
|
|
${pkgs.dconf}/bin/dconf write \
|
|
/org/gnome/desktop/interface/color-scheme "'prefer-light'"
|
|
'';
|
|
|
|
noctalia = ''
|
|
noctalia-shell ipc call darkMode setLight
|
|
'';
|
|
};
|
|
|
|
darkModeScripts = {
|
|
gtk-theme = ''
|
|
${pkgs.dconf}/bin/dconf write \
|
|
/org/gnome/desktop/interface/color-scheme "'prefer-dark'"
|
|
'';
|
|
|
|
noctalia = ''
|
|
noctalia-shell ipc call darkMode setDark
|
|
'';
|
|
|
|
# fish = ''
|
|
# yes | fish_config theme save "Rosé Pine"
|
|
# '';
|
|
};
|
|
};
|
|
}
|