enable wpa_supplicant in example config
This commit is contained in:
parent
b0ad046a78
commit
6fcfdccd3a
@ -1,4 +1,6 @@
|
|||||||
{pkgs, ...}: {
|
{pkgs, lib, ...}: let
|
||||||
|
inherit (lib) mkOverride;
|
||||||
|
in {
|
||||||
nix.distributedBuilds = false;
|
nix.distributedBuilds = false;
|
||||||
nix.settings = {
|
nix.settings = {
|
||||||
substituters = ["https://cache-nix.project2.xyz/uconsole"];
|
substituters = ["https://cache-nix.project2.xyz/uconsole"];
|
||||||
@ -13,10 +15,15 @@
|
|||||||
wirelesstools
|
wirelesstools
|
||||||
iw
|
iw
|
||||||
gitMinimal
|
gitMinimal
|
||||||
wpa_supplicant
|
|
||||||
eiwd
|
|
||||||
];
|
];
|
||||||
|
|
||||||
|
networking.wireless = {
|
||||||
|
userControlled.enable = true;
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
systemd.services.wpa_supplicant.wantedBy = mkOverride 50 [];
|
||||||
|
networking.networkmanager.enable = false;
|
||||||
|
|
||||||
users.users.oom = {
|
users.users.oom = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
extraGroups = ["wheel"];
|
extraGroups = ["wheel"];
|
||||||
|
Loading…
Reference in New Issue
Block a user