Files
dotfiles/hosts/hina/hardware.nix
2025-07-02 00:31:54 +05:30

27 lines
325 B
Nix

{
config,
lib,
pkgs,
modulesPath,
...
}:
{
imports = [
(modulesPath + "/profiles/qemu-guest.nix")
];
fileSystems."/" = {
device = "/dev/disk/by-label/cloudimg-rootfs";
fsType = "ext4";
};
swapDevices = [
{
device = "/swapfile";
size = 7168;
priority = 0;
}
];
}