11 lines
376 B
Nix
Raw Normal View History

2021-01-21 21:13:53 +03:00
{ modulesPath, lib, inputs, ... }: {
imports = [
"${modulesPath}/installer/cd-dvd/installation-cd-minimal.nix"
2021-01-21 21:13:53 +03:00
inputs.self.nixosProfiles.base
];
networking.wireless.enable = lib.mkForce false;
services.openssh.permitRootLogin = lib.mkForce "no";
2021-01-23 22:21:51 +03:00
services.getty.autologinUser = lib.mkForce "balsoft";
disabledModules = [ "installer/cd-dvd/channel.nix" ];
}