diff options
author | Alan Pearce | 2018-01-05 10:10:01 +0000 |
---|---|---|
committer | Alan Pearce | 2018-01-05 10:10:01 +0000 |
commit | ce3d3f9d20ceeea8a4b40f2641f48e9acddeb59e (patch) | |
tree | a20e1711fd2c53d6d7c69cd765e3cf865d16b71c | |
parent | 590f508681facee9ec586351036d0a15b54707d7 (diff) | |
download | nixos-configuration-ce3d3f9d20ceeea8a4b40f2641f48e9acddeb59e.tar.lz nixos-configuration-ce3d3f9d20ceeea8a4b40f2641f48e9acddeb59e.tar.zst nixos-configuration-ce3d3f9d20ceeea8a4b40f2641f48e9acddeb59e.zip |
Add config module for England
-rw-r--r-- | modules/configuration/england.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/configuration/england.nix b/modules/configuration/england.nix new file mode 100644 index 0000000..b2f799c --- /dev/null +++ b/modules/configuration/england.nix @@ -0,0 +1,8 @@ +{ config, pkgs, ... }: + +{ time.timeZone = "Europe/London"; + services.redshift = { + latitude = "52.2394"; + longitude = "-0.9416"; + }; +} |