mirror of
https://github.com/semere-meb/dotfiles-nix.git
synced 2026-08-03 10:24:36 +00:00
21 lines
286 B
Nix
21 lines
286 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
userVars,
|
|
...
|
|
}:
|
|
|
|
{
|
|
home-manager.users."${userVars.username}" = {
|
|
services.wlsunset = {
|
|
enable = true;
|
|
latitude = "52.52";
|
|
longitude = "13.40";
|
|
temperature = {
|
|
day = 6500;
|
|
night = 4000;
|
|
};
|
|
};
|
|
};
|
|
}
|