mirror of
https://codeberg.org/tmayoff/.dotfiles.git
synced 2025-12-06 08:48:34 -05:00
20 lines
329 B
Nix
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"
|
|
'';
|
|
};
|
|
};
|
|
}
|