diff options
Diffstat (limited to 'configuration.nix')
-rw-r--r-- | configuration.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/configuration.nix b/configuration.nix index d500108..e47cdbf 100644 --- a/configuration.nix +++ b/configuration.nix @@ -17,10 +17,20 @@ boot.loader.timeout = 20; boot.loader.efi.canTouchEfiVariables = true; + nix = { + binaryCaches = [ + "http://binarycache.home.adnab.me" + ]; + binaryCachePublicKeys = [ + "binarycache.home.adnab.me:ErR6pMnewf9oVyZJd5uC2nI4EZF49c7Mh86eDZWYZaw=" + ]; + }; + # 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; + # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. # Set your time zone. time.timeZone = "Europe/Paris"; |