diff options
author | Alan Pearce | 2017-09-09 14:55:22 +0200 |
---|---|---|
committer | Alan Pearce | 2017-09-09 16:49:30 +0200 |
commit | 2a7fdeb9dfa214e1eef0b7cdabc970b69e65c25d (patch) | |
tree | 80af04e9961a9c39f8611a1c87118a235e09d874 | |
parent | 237e8d6f5d9f4ed9a98891d1486c3fa0a7d2fafe (diff) | |
download | nixos-configuration-2a7fdeb9dfa214e1eef0b7cdabc970b69e65c25d.tar.lz nixos-configuration-2a7fdeb9dfa214e1eef0b7cdabc970b69e65c25d.tar.zst nixos-configuration-2a7fdeb9dfa214e1eef0b7cdabc970b69e65c25d.zip |
Add Berlin module
-rw-r--r-- | modules/berlin.nix | 8 | ||||
-rw-r--r-- | satoshipad.nix | 1 |
2 files changed, 9 insertions, 0 deletions
diff --git a/modules/berlin.nix b/modules/berlin.nix new file mode 100644 index 0000000..a388a57 --- /dev/null +++ b/modules/berlin.nix @@ -0,0 +1,8 @@ +{ config, pkgs, ... }: + +{ time.timezone = "Europe/Berlin"; + redshift = { + latitude = "52.586"; + longitude = "13.300"; + }; +} diff --git a/satoshipad.nix b/satoshipad.nix index 2e644c4..ed688e2 100644 --- a/satoshipad.nix +++ b/satoshipad.nix @@ -13,6 +13,7 @@ ./modules/nitrokey.nix ./modules/shell.nix ./modules/dotfiles.nix + ./modules/berlin.nix ]; networking.hostName = "satoshipad"; |