summaryrefslogtreecommitdiff
path: root/mini
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 /mini
parent11878b4d1ec9b5282915ca7010065137b5650227 (diff)
use network manager
Diffstat (limited to 'mini')
-rw-r--r--mini/configuration.nix16
1 files changed, 4 insertions, 12 deletions
diff --git a/mini/configuration.nix b/mini/configuration.nix
index 5210fdd..44881cc 100644
--- a/mini/configuration.nix
+++ b/mini/configuration.nix
@@ -17,18 +17,10 @@
# amd graphics
hardware.opengl.extraPackages = with pkgs; [ amdvlk rocm-opencl-icd rocm-opencl-runtime ];
- # use systemd-networkd, fixed IPv4, dynamic IPv6
+ # our hostname
networking.hostName = "mini";
+
+ # use NetworkManager
networking.useDHCP = false;
- networking.nameservers = [ "192.168.13.1" ];
- systemd.network = {
- enable = true;
- networks."10-wan" = {
- matchConfig.Name = "eno1";
- address = [ "192.168.13.100/24" ];
- routes = [ { routeConfig.Gateway = "192.168.13.1"; } ];
- networkConfig.IPv6AcceptRA = true;
- linkConfig.RequiredForOnline = "routable";
- };
- };
+ networking.networkmanager.enable = true;
}