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 | |
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
-rw-r--r-- | gui/redshift.nix | 10 | ||||
-rw-r--r-- | host/athena.nix | 2 |
2 files changed, 12 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"; + }; +} diff --git a/host/athena.nix b/host/athena.nix index 4dff6d0..3c4bf37 100644 --- a/host/athena.nix +++ b/host/athena.nix @@ -4,6 +4,8 @@ imports = [ ../gui/default.nix ../gui/networkmanager.nix + ../gui/stalonetray.nix + ../gui/redshift.nix ]; home.packages = with pkgs; [ |