services/proxy: add proxy module

This commit is contained in:
Infinidoge 2021-12-01 10:20:21 -05:00
parent 1260c1b4af
commit ece6d46b5b
5 changed files with 47 additions and 28 deletions

View file

@ -4,8 +4,6 @@
(with profiles; [
networking.wireless
services.privoxy
])
./hardware-configuration.nix
@ -43,6 +41,9 @@
gpu.intel = true;
form.laptop = true;
};
services = {
proxy.enable = true;
};
};
networking.interfaces.wlp170s0.useDHCP = true;

View file

@ -6,8 +6,6 @@
networking.wireless
btrfs
# services.privoxy
])
./hardware-configuration.nix
@ -22,6 +20,7 @@
audio.enable = true;
form.portable = true;
};
services.proxy.enable = true;
};
system.stateVersion = "21.11";

View file

@ -7,8 +7,6 @@
networking.wireless
btrfs
# services.privoxy
];
};
@ -25,6 +23,9 @@
gpu.amdgpu = true;
wireless.enable = true;
};
services = {
proxy.enable = true;
};
};
networking.interfaces.wlan0.useDHCP = true;