summaryrefslogtreecommitdiff
path: root/mini
diff options
context:
space:
mode:
authorChristoph Cullmann <cullmann@kde.org>2024-05-29 21:07:09 +0200
committerChristoph Cullmann <cullmann@kde.org>2024-05-29 21:07:09 +0200
commitfc4607ec20ae60907a7b980f146566b41e320b71 (patch)
treecee2f5afdfc78c06455b904913614474e965c728 /mini
parent560660353312669a3f8004ec2926744ea814b693 (diff)
prepare for ZFS
Diffstat (limited to 'mini')
-rw-r--r--mini/configuration.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/mini/configuration.nix b/mini/configuration.nix
index 44881cc..23f103c 100644
--- a/mini/configuration.nix
+++ b/mini/configuration.nix
@@ -17,10 +17,10 @@
# amd graphics
hardware.opengl.extraPackages = with pkgs; [ amdvlk rocm-opencl-icd rocm-opencl-runtime ];
- # our hostname
+ # our hostname and an ID for ZFS
networking.hostName = "mini";
+ networking.hostId = "e925ccfb";
- # use NetworkManager
- networking.useDHCP = false;
- networking.networkmanager.enable = true;
+ # classic dhcpcd
+ networking.networkmanager.enable = false;
}