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
|
./keyd.nix
|
||||||
./locales.nix
|
./locales.nix
|
||||||
./mimetype.nix
|
./mimetype.nix
|
||||||
|
./networking.nix
|
||||||
./optimise.nix
|
./optimise.nix
|
||||||
./options.nix
|
./options.nix
|
||||||
./packages.nix
|
./packages.nix
|
||||||
|
@ -25,10 +26,6 @@
|
||||||
./users.nix
|
./users.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
networking = {
|
|
||||||
networkmanager.enable = true;
|
|
||||||
hostName = "${hostname}";
|
|
||||||
};
|
|
||||||
|
|
||||||
console.keyMap = "en";
|
console.keyMap = "en";
|
||||||
nix = {
|
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