diff options
Diffstat (limited to 'installer')
-rw-r--r-- | installer/default.nix | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/installer/default.nix b/installer/default.nix index baaf2dc6..e9d9fa1a 100644 --- a/installer/default.nix +++ b/installer/default.nix | |||
@@ -4,10 +4,12 @@ with lib; | |||
4 | 4 | ||
5 | { | 5 | { |
6 | imports = with flake.nixosModules.systemProfiles; [ | 6 | imports = with flake.nixosModules.systemProfiles; [ |
7 | default-locale zfs networkmanager openssh | 7 | default-locale zfs bcachefs networkmanager openssh |
8 | ]; | 8 | ]; |
9 | 9 | ||
10 | config = { | 10 | config = { |
11 | boot.initrd.availableKernelModules = [ "e1000e" ]; | ||
12 | |||
11 | hardware.cpu.amd.updateMicrocode = config.hardware.enableRedistributableFirmware; | 13 | hardware.cpu.amd.updateMicrocode = config.hardware.enableRedistributableFirmware; |
12 | 14 | ||
13 | networking = { | 15 | networking = { |
@@ -51,6 +53,10 @@ with lib; | |||
51 | 53 | ||
52 | nix.settings.auto-allocate-uids = mkForce false; | 54 | nix.settings.auto-allocate-uids = mkForce false; |
53 | 55 | ||
56 | services.getty.autologinUser = lib.mkForce null; | ||
57 | |||
58 | system.disableInstallerTools = false; | ||
59 | |||
54 | system.stateVersion = config.system.nixos.release; # No state in installer | 60 | system.stateVersion = config.system.nixos.release; # No state in installer |
55 | }; | 61 | }; |
56 | } | 62 | } |