diff options
author | Alex Auvolat <alex@adnab.me> | 2021-11-02 10:15:37 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2021-11-02 10:15:37 +0100 |
commit | a02f90422e1e9594f47dd4a694b1cbb55bd70e54 (patch) | |
tree | 6bd94dd4889bd66a2f2baf0d78e574263762094e /configuration.nix | |
parent | dac37b918bbf427a8f499c82ebb464c57ead6478 (diff) | |
download | nixcfg-a02f90422e1e9594f47dd4a694b1cbb55bd70e54.tar.gz nixcfg-a02f90422e1e9594f47dd4a694b1cbb55bd70e54.zip |
Add deploy script
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"; |