nixos/machines/Ophanim/hardware-configuration.nix

30 lines
597 B
Nix
Raw Normal View History

2019-02-26 13:44:40 +01:00
{
2023-09-11 20:23:04 +02:00
nixpkgs,
pkgs,
...
}: {
imports = [
"${nixpkgs}/nixos/modules/profiles/qemu-guest.nix"
];
2019-02-26 13:44:40 +01:00
boot = {
2023-09-11 20:23:04 +02:00
initrd.availableKernelModules = ["ata_piix" "uhci_hcd" "virtio_pci" "sd_mod" "sr_mod"];
kernelPackages = pkgs.linuxPackages_latest;
2023-09-11 20:23:04 +02:00
kernelModules = [];
extraModulePackages = [];
2019-02-26 13:44:40 +01:00
loader.grub = {
enable = true;
device = "/dev/sda"; # or "nodev" for efi only
};
};
time.timeZone = "Europe/Berlin";
2023-09-11 20:23:04 +02:00
fileSystems."/" = {
device = "/dev/disk/by-uuid/fa0c2ff3-59f9-4c00-8153-c2c2ef0f0e84";
fsType = "ext4";
};
2019-02-26 13:44:40 +01:00
2023-09-11 20:23:04 +02:00
swapDevices = [];
2019-02-26 13:44:40 +01:00
}