dinky: use iwd as wifi backend
This commit is contained in:
parent
66a3c221d3
commit
7f7855c03d
2 changed files with 13 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
age-plugin-fido2-hmac
|
||||
bacon
|
||||
cargo
|
||||
clang
|
||||
|
|
|
@ -11,6 +11,11 @@
|
|||
{
|
||||
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
||||
|
||||
system.switch = {
|
||||
enable = false;
|
||||
enableNg = true;
|
||||
};
|
||||
|
||||
boot = {
|
||||
initrd = {
|
||||
availableKernelModules = [
|
||||
|
@ -78,9 +83,16 @@
|
|||
|
||||
networking = {
|
||||
hostName = "dinky";
|
||||
domain = "aarn.shelman.io";
|
||||
search = [
|
||||
"shelman.io"
|
||||
"aarn.shelman.io"
|
||||
];
|
||||
useDHCP = lib.mkDefault true;
|
||||
};
|
||||
|
||||
networking.networkmanager.wifi.backend = "iwd";
|
||||
|
||||
services.mullvad-vpn.enable = true;
|
||||
|
||||
users.users.dln = {
|
||||
|
|
Loading…
Reference in a new issue