machines-config/hosts/base/hardware-config.nix
Jakub Kropáček 08a7004dda bootstrapping
default bootstrap password

think this is required

pw update

pseudoterm

change pw
2025-01-02 16:59:07 +01:00

25 lines
395 B
Nix

{
lib,
modulesPath,
...
}:
{
imports = [
(modulesPath + "/profiles/qemu-guest.nix")
];
boot.initrd.availableKernelModules = [
"ata_piix"
"uhci_hcd"
"virtio_pci"
"virtio_scsi"
"sd_mod"
"sr_mod"
];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ ];
boot.extraModulePackages = [ ];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
}