From 0afbdaa261653e73a4f2f39d7529114989474a64 Mon Sep 17 00:00:00 2001 From: Quentin Aristote Date: Sat, 11 Feb 2023 18:12:03 +0100 Subject: factor out common configuration options --- nixos/environment.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 nixos/environment.nix (limited to 'nixos/environment.nix') diff --git a/nixos/environment.nix b/nixos/environment.nix new file mode 100644 index 0000000..a266ca0 --- /dev/null +++ b/nixos/environment.nix @@ -0,0 +1,13 @@ +{ pkgs, ... }: + +{ + personal.environment = { + enable = true; + locale.enable = true; + }; + + location = { + latitude = 48.856614; + longitude = 2.3522219; + }; +} -- cgit v1.2.3