diff options
author | Alex Auvolat <alex@adnab.me> | 2022-04-19 17:41:18 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-04-19 17:41:18 +0200 |
commit | 3d8989b9c918bd4e4b1f8b9a8d294c308fc0b8d9 (patch) | |
tree | 6e06494880c55f758190d315528d6e6b20496b9d /nix/configuration.nix | |
parent | 65902d47800473a709c0c89ff2edfd3170b3c49c (diff) | |
download | nixcfg-3d8989b9c918bd4e4b1f8b9a8d294c308fc0b8d9.tar.gz nixcfg-3d8989b9c918bd4e4b1f8b9a8d294c308fc0b8d9.zip |
nix infinite recursioninfinite-recursion
Diffstat (limited to 'nix/configuration.nix')
-rw-r--r-- | nix/configuration.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/nix/configuration.nix b/nix/configuration.nix index 7e32a8d..bc4edd5 100644 --- a/nix/configuration.nix +++ b/nix/configuration.nix @@ -24,6 +24,10 @@ # replicates the default behaviour. networking.useDHCP = false; + nixpkgs.overlays = [ + (import ./wesher.nix) + ]; + # Set your time zone. time.timeZone = "Europe/Paris"; @@ -63,6 +67,7 @@ SystemMaxUse=1G rclone docker docker-compose + wesher ]; programs.vim.defaultEditor = true; |