diff options
Diffstat (limited to 'nix/configuration.nix')
-rw-r--r-- | nix/configuration.nix | 8 |
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"; |