nix-config/devices/hufuf/default.nix
2025-03-29 21:55:27 +01:00

21 lines
382 B
Nix

{pkgs, ...}: {
imports = [
./options.nix
];
nixpkgs.hostPlatform = "x86_64-linux";
networking = {
hostName = "hufuf";
};
boot = {
initrd.availableKernelModules = ["ata_piix" "uhci_hcd" "virtio_pci" "virtio_scsi" "sd_mod"];
kernelPackages = pkgs.linuxPackages_latest;
loader = {
systemd-boot = {
enable = true;
};
};
};
}