mirror of
https://github.com/kmein/niveum
synced 2026-03-16 10:11:08 +01:00
feat(zaatar): convert to flake feat(tahina, tabula): convert to flake feat(makanek): convert to flake feat(manakish, zaatar): convert to flake feat(ci): build flake systems fix: ci build feat: secrets via submodule foo foo foo
35 lines
657 B
Nix
35 lines
657 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
modulesPath,
|
|
...
|
|
}: {
|
|
imports = [(modulesPath + "/profiles/qemu-guest.nix")];
|
|
|
|
boot = {
|
|
initrd = {
|
|
availableKernelModules = ["ata_piix" "virtio_pci" "xhci_pci" "sd_mod" "sr_mod"];
|
|
kernelModules = [];
|
|
};
|
|
kernelModules = [];
|
|
extraModulePackages = [];
|
|
loader.grub = {
|
|
enable = true;
|
|
version = 2;
|
|
devices = ["/dev/sda"];
|
|
configurationLimit = 3;
|
|
};
|
|
};
|
|
|
|
fileSystems."/" = {
|
|
device = "/dev/disk/by-uuid/9eaeaaa7-b453-4634-8a69-d416f702d3aa";
|
|
fsType = "ext4";
|
|
};
|
|
|
|
swapDevices = [];
|
|
zramSwap.enable = true;
|
|
|
|
nix.settings.max-jobs = lib.mkDefault 2;
|
|
}
|