summaryrefslogtreecommitdiff
path: root/neko
diff options
context:
space:
mode:
authorChristoph Cullmann <cullmann@kde.org>2024-04-29 18:24:44 +0200
committerChristoph Cullmann <cullmann@kde.org>2024-04-29 18:24:44 +0200
commit54960fc9f02457f8e5fedcc8d7b0ee0d07a646a9 (patch)
treebf55abeac790c198fb13fa6e9b5d9d27b95c1b16 /neko
parent11878b4d1ec9b5282915ca7010065137b5650227 (diff)
use network manager
Diffstat (limited to 'neko')
-rw-r--r--neko/configuration.nix16
1 files changed, 4 insertions, 12 deletions
diff --git a/neko/configuration.nix b/neko/configuration.nix
index 3af0537..6e8d8e0 100644
--- a/neko/configuration.nix
+++ b/neko/configuration.nix
@@ -17,18 +17,10 @@
# intel graphics
hardware.opengl.extraPackages = with pkgs; [ intel-media-driver intel-compute-runtime ];
- # use systemd-networkd, fixed IPv4, dynamic IPv6
+ # our hostname
networking.hostName = "neko";
+
+ # use NetworkManager
networking.useDHCP = false;
- networking.nameservers = [ "192.168.13.1" ];
- systemd.network = {
- enable = true;
- networks."10-wan" = {
- matchConfig.Name = "enp10s0";
- address = [ "192.168.13.171/24" ];
- routes = [ { routeConfig.Gateway = "192.168.13.1"; } ];
- networkConfig.IPv6AcceptRA = true;
- linkConfig.RequiredForOnline = "routable";
- };
- };
+ networking.networkmanager.enable = true;
}