switched networkmanager backend to iwd
This commit is contained in:
parent
08e850ed59
commit
74f16b7a48
2 changed files with 11 additions and 4 deletions
|
@ -16,6 +16,7 @@
|
|||
./keyd.nix
|
||||
./locales.nix
|
||||
./mimetype.nix
|
||||
./networking.nix
|
||||
./optimise.nix
|
||||
./options.nix
|
||||
./packages.nix
|
||||
|
@ -25,10 +26,6 @@
|
|||
./users.nix
|
||||
];
|
||||
|
||||
networking = {
|
||||
networkmanager.enable = true;
|
||||
hostName = "${hostname}";
|
||||
};
|
||||
|
||||
console.keyMap = "en";
|
||||
nix = {
|
||||
|
|
10
modules/default/nixos/networking.nix
Normal file
10
modules/default/nixos/networking.nix
Normal file
|
@ -0,0 +1,10 @@
|
|||
{ hostname, ... }:
|
||||
{
|
||||
networking = {
|
||||
networkmanager = {
|
||||
enable = true;
|
||||
wifi.backend = "iwd";
|
||||
};
|
||||
hostName = "${hostname}";
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue