aboutsummaryrefslogtreecommitdiff
path: root/nix/configuration.nix
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2022-04-19 18:09:56 +0200
committerAlex Auvolat <alex@adnab.me>2022-04-19 18:09:56 +0200
commit9ff81afd7ea75c583adaef3a49e9b28b45185d99 (patch)
treeff2af1d01eb4336da52bb4375527beb9af00c76d /nix/configuration.nix
parent3d8989b9c918bd4e4b1f8b9a8d294c308fc0b8d9 (diff)
downloadnixcfg-9ff81afd7ea75c583adaef3a49e9b28b45185d99.tar.gz
nixcfg-9ff81afd7ea75c583adaef3a49e9b28b45185d99.zip
Wesher package now works
Diffstat (limited to 'nix/configuration.nix')
-rw-r--r--nix/configuration.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/nix/configuration.nix b/nix/configuration.nix
index bc4edd5..2255d7d 100644
--- a/nix/configuration.nix
+++ b/nix/configuration.nix
@@ -19,15 +19,15 @@
./node.nix
];
+ nixpkgs.overlays = [
+ (import ./wesher.nix)
+ ];
+
# The global useDHCP flag is deprecated, therefore explicitly set to false here.
# Per-interface useDHCP will be mandatory in the future, so this generated config
# replicates the default behaviour.
networking.useDHCP = false;
- nixpkgs.overlays = [
- (import ./wesher.nix)
- ];
-
# Set your time zone.
time.timeZone = "Europe/Paris";