diff options
Diffstat (limited to 'common/default.nix')
-rw-r--r-- | common/default.nix | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/common/default.nix b/common/default.nix index 30bb3f2..87b9437 100644 --- a/common/default.nix +++ b/common/default.nix | |||
@@ -1,6 +1,6 @@ | |||
1 | inputs: | 1 | inputs: |
2 | 2 | ||
3 | { config, ... }: | 3 | { config, lib, ... }: |
4 | 4 | ||
5 | { | 5 | { |
6 | imports = [ | 6 | imports = [ |
@@ -28,6 +28,11 @@ inputs: | |||
28 | }) | 28 | }) |
29 | ]; | 29 | ]; |
30 | 30 | ||
31 | location = { | ||
32 | latitude = lib.mkDefault 48.856667; | ||
33 | longitude = lib.mkDefault 2.352222; | ||
34 | }; | ||
35 | |||
31 | services.nscd.enableNsncd = true; | 36 | services.nscd.enableNsncd = true; |
32 | 37 | ||
33 | environment.sessionVariables.DO_NOT_TRACK = "1"; | 38 | environment.sessionVariables.DO_NOT_TRACK = "1"; |