installation: use networkd everywhere

This commit is contained in:
Jörg Thalheim
2025-04-08 10:33:48 +02:00
parent f24df0e33b
commit 99bcd3f797
2 changed files with 5 additions and 0 deletions

View File

@@ -164,6 +164,7 @@
imports = [
(modulesPath + "/../tests/common/auto-format-root-device.nix")
];
networking.useNetworkd = true;
services.openssh.enable = true;
system.nixos.variant_id = "installer";
environment.systemPackages = [ pkgs.nixos-facter ];
@@ -192,6 +193,7 @@
system.extraDependencies = dependencies;
};
nodes.client = {
networking.useNetworkd = true;
environment.systemPackages = [
self.packages.${pkgs.system}.clan-cli
] ++ self.packages.${pkgs.system}.clan-cli.runtimeDependencies;

View File

@@ -20,6 +20,7 @@
(modulesPath + "/profiles/qemu-guest.nix")
../lib/minify.nix
];
networking.useNetworkd = true;
environment.etc."install-successful".text = "ok";
@@ -140,6 +141,7 @@
imports = [
(modulesPath + "/../tests/common/auto-format-root-device.nix")
];
networking.useNetworkd = true;
services.openssh.enable = true;
users.users.root.openssh.authorizedKeys.keyFiles = [ ../lib/ssh/pubkey ];
system.nixos.variant_id = "installer";
@@ -163,6 +165,7 @@
system.extraDependencies = dependencies;
};
nodes.client = {
networking.useNetworkd = true;
environment.systemPackages = [
self.packages.${pkgs.system}.clan-cli
] ++ self.packages.${pkgs.system}.clan-cli.runtimeDependencies;