blob: ac825387e86204868a72825ed9a440b8a09eaa13 [file] [log] [blame]
Skyler Greyc8dc35e2022-09-01 23:42:28 +01001{config, ...}: {
Skyler Greyf4a835a2022-08-20 22:30:48 +01002 config = {
3 networking.hostName = "python";
4
5 networking.wireless.iwd.enable = true;
6 networking.wireless.iwd.settings = {
7 Settings = {
8 AutoConnect = true;
9 AlwaysRandomizeAddress = true;
10 };
11 };
12 networking.search = [
13 "python.local"
14 ];
Skyler Greyc8dc35e2022-09-01 23:42:28 +010015
16 hardware.enableRedistributableFirmware = true;
17
18 environment.persistence."/nix/persist".directories = ["/var/lib/iwd"];
Skyler Greyf4a835a2022-08-20 22:30:48 +010019 };
20}