switch to systemd-networkd
This commit is contained in:
parent
8d21ac5bf5
commit
027834dc59
2 changed files with 34 additions and 24 deletions
|
@ -1,12 +1,9 @@
|
||||||
{
|
{pkgs, ...}: {
|
||||||
lib,
|
|
||||||
pkgs,
|
|
||||||
...
|
|
||||||
}: {
|
|
||||||
imports = [
|
imports = [
|
||||||
./hardware
|
./hardware
|
||||||
./programs
|
./programs
|
||||||
./services
|
./services
|
||||||
|
./network.nix
|
||||||
./persistence.nix
|
./persistence.nix
|
||||||
./plymouth.nix
|
./plymouth.nix
|
||||||
./rollback.nix
|
./rollback.nix
|
||||||
|
@ -16,7 +13,6 @@
|
||||||
./virtualisation.nix
|
./virtualisation.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
boot.binfmt.emulatedSystems = ["aarch64-linux"];
|
|
||||||
console.useXkbConfig = true;
|
console.useXkbConfig = true;
|
||||||
|
|
||||||
environment.sessionVariables = {
|
environment.sessionVariables = {
|
||||||
|
@ -57,24 +53,6 @@
|
||||||
|
|
||||||
location.provider = "geoclue2";
|
location.provider = "geoclue2";
|
||||||
|
|
||||||
networking = {
|
|
||||||
hostName = "Skipper";
|
|
||||||
networkmanager = {
|
|
||||||
enable = true;
|
|
||||||
dns = "systemd-resolved";
|
|
||||||
wifi = {
|
|
||||||
backend = "iwd";
|
|
||||||
powersave = false;
|
|
||||||
};
|
|
||||||
extraConfig = ''
|
|
||||||
[device]
|
|
||||||
wifi.iwd.autoconnect=yes
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
useDHCP = lib.mkDefault false;
|
|
||||||
wireless.iwd.enable = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
sound.enable = true;
|
sound.enable = true;
|
||||||
time.timeZone = "Asia/Kolkata";
|
time.timeZone = "Asia/Kolkata";
|
||||||
|
|
||||||
|
|
32
hosts/skipper/network.nix
Normal file
32
hosts/skipper/network.nix
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
_: {
|
||||||
|
networking = {
|
||||||
|
hostName = "Skipper";
|
||||||
|
wireless.iwd = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
General = {
|
||||||
|
AddressRandomization = "network";
|
||||||
|
};
|
||||||
|
Settings = {
|
||||||
|
AutoConnect = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
systemd.network = {
|
||||||
|
enable = true;
|
||||||
|
networks.wifi = {
|
||||||
|
enable = true;
|
||||||
|
matchConfig = {
|
||||||
|
Name = "wlan0";
|
||||||
|
};
|
||||||
|
networkConfig = {
|
||||||
|
DHCP = "yes";
|
||||||
|
};
|
||||||
|
linkConfig = {
|
||||||
|
RequiredForOnline = "yes";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue