update flake inputs; dustbowl: adapt wpa_supplicant conf
This commit is contained in:
parent
848d197367
commit
ce9c78cf7a
2 changed files with 23 additions and 9 deletions
12
flake.lock
generated
12
flake.lock
generated
|
|
@ -20,11 +20,11 @@
|
||||||
},
|
},
|
||||||
"nixos-hardware": {
|
"nixos-hardware": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1762847253,
|
"lastModified": 1768584846,
|
||||||
"narHash": "sha256-BWWnUUT01lPwCWUvS0p6Px5UOBFeXJ8jR+ZdLX8IbrU=",
|
"narHash": "sha256-IRPmIOV2tPwxbhP/I9M5AmwhTC0lMPtoPStC+8T6xl0=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixos-hardware",
|
"repo": "nixos-hardware",
|
||||||
"rev": "899dc449bc6428b9ee6b3b8f771ca2b0ef945ab9",
|
"rev": "cce68f4a54fa4e3d633358364477f5cc1d782440",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
@ -36,11 +36,11 @@
|
||||||
},
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1763421233,
|
"lastModified": 1768564909,
|
||||||
"narHash": "sha256-Stk9ZYRkGrnnpyJ4eqt9eQtdFWRRIvMxpNRf4sIegnw=",
|
"narHash": "sha256-Kell/SpJYVkHWMvnhqJz/8DqQg2b6PguxVWOuadbHCc=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "89c2b2330e733d6cdb5eae7b899326930c2c0648",
|
"rev": "e4bae1bd10c9c57b2cf517953ab70060a828ee6f",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
||||||
|
|
@ -100,8 +100,12 @@
|
||||||
|
|
||||||
networking.useNetworkd = true;
|
networking.useNetworkd = true;
|
||||||
networking.hostName = "dustbowl";
|
networking.hostName = "dustbowl";
|
||||||
networking.wireless.enable = true;
|
networking.wireless = {
|
||||||
networking.wireless.interfaces = [ "wlp2s0" ];
|
enable = true;
|
||||||
|
interfaces = [ "wlp2s0" ];
|
||||||
|
allowAuxiliaryImperativeNetworks = true;
|
||||||
|
userControlled = true;
|
||||||
|
};
|
||||||
|
|
||||||
networking.wireguard.enable = true;
|
networking.wireguard.enable = true;
|
||||||
networking.firewall.checkReversePath = "loose";
|
networking.firewall.checkReversePath = "loose";
|
||||||
|
|
@ -440,7 +444,17 @@
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
home = "/home/joachim";
|
home = "/home/joachim";
|
||||||
shell = pkgs.fish;
|
shell = pkgs.fish;
|
||||||
extraGroups = [ "wheel" "scanner" "libvirtd" "wireshark" "vboxusers" "tss" "plugdev" "dialout" ];
|
extraGroups = [
|
||||||
|
"wheel"
|
||||||
|
"scanner"
|
||||||
|
"libvirtd"
|
||||||
|
"wireshark"
|
||||||
|
"vboxusers"
|
||||||
|
"tss"
|
||||||
|
"plugdev"
|
||||||
|
"dialout"
|
||||||
|
"wpa_supplicant"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
# Yubikey PAM
|
# Yubikey PAM
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue