diff options
author | Adrian Kummerlaender | 2019-01-25 21:44:04 +0100 |
---|---|---|
committer | Adrian Kummerlaender | 2019-01-31 20:36:04 +0100 |
commit | 8f7dac29c3e1d10961dae00a80733f1fb92fd778 (patch) | |
tree | 8717753d1e92175038103746d141e97b7f3994a6 /gui | |
parent | a576fc0630c4eed5263f29ab671b7f4a26f2a698 (diff) | |
download | nixos_home-8f7dac29c3e1d10961dae00a80733f1fb92fd778.tar nixos_home-8f7dac29c3e1d10961dae00a80733f1fb92fd778.tar.gz nixos_home-8f7dac29c3e1d10961dae00a80733f1fb92fd778.tar.bz2 nixos_home-8f7dac29c3e1d10961dae00a80733f1fb92fd778.tar.lz nixos_home-8f7dac29c3e1d10961dae00a80733f1fb92fd778.tar.xz nixos_home-8f7dac29c3e1d10961dae00a80733f1fb92fd778.tar.zst nixos_home-8f7dac29c3e1d10961dae00a80733f1fb92fd778.zip |
Add redshift
Diffstat (limited to 'gui')
-rw-r--r-- | gui/redshift.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gui/redshift.nix b/gui/redshift.nix new file mode 100644 index 0000000..fabdb89 --- /dev/null +++ b/gui/redshift.nix @@ -0,0 +1,10 @@ +{ pkgs, ... }: + +{ + services.redshift = { + enable = true; + tray = true; + latitude = "49.0135248"; + longitude = "8.40435918703854"; + }; +} |