nix/nixos/desktop.nix

61 lines
1.0 KiB
Nix
Raw Normal View History

2021-10-08 05:48:27 +02:00
{ pkgs, ... }:
{
networking.wireless.iwd = {
enable = true;
settings = {
General = {
AddressRandomization = "network";
# EnableNetworkConfiguration = false;
RoamThreshold = -70;
RoamThreshold5G = -90;
RoamRetryInterval = 10;
};
# Network.EnableIPv6 = true;
Rank.BandModifier5Ghz = 5.0;
# Scan.DisablePeriodicScan = true;
};
};
2021-10-13 00:47:43 +02:00
systemd.network.networks.wifi = {
matchConfig = {
Name = "wlan0";
SSID = "!HotoHo-v6";
};
2021-10-13 00:47:43 +02:00
DHCP = "ipv4";
2021-10-15 19:32:20 +02:00
networkConfig = {
IPv6AcceptRA = true;
IPv6PrivacyExtensions = true;
};
2021-10-13 00:47:43 +02:00
};
systemd.network.networks.wifi-v6 = {
matchConfig = {
Name = "wlan0";
SSID = "HotoHo-v6";
};
networkConfig = {
DNSSEC = false;
IPv6AcceptRA = true;
IPv6PrivacyExtensions = true;
};
};
2021-10-23 19:39:06 +02:00
systemd.network.networks.eth = {
matchConfig.Name = "enp*";
DHCP = "ipv4";
networkConfig = {
IPv6AcceptRA = true;
IPv6PrivacyExtensions = true;
};
};
2021-10-08 05:48:27 +02:00
2021-10-13 00:47:43 +02:00
sound.enable = true;
2021-10-09 01:09:39 +02:00
2021-10-13 00:47:43 +02:00
environment.systemPackages = with pkgs; [
iw
];
2021-10-09 01:09:39 +02:00
2021-10-13 00:47:43 +02:00
# smartcard
services.pcscd.enable = true;
2021-10-08 05:48:27 +02:00
}