blob: bb2b28a4941aca974314eb6851ffa3816c59096c [file] [log] [blame]
{impermanence}: {
imports = [
impermanence.nixosModules.impermanence
];
config = {
environment.persistence."/nix/persist" = {
hideMounts = true;
};
fileSystems."/" = {
device = "none";
fsType = "tmpfs";
options = ["defaults" "size=4G" "mode=755"];
};
fileSystems."/boot" = {
device = "/dev/disk/by-label/boot";
fsType = "vfat";
};
fileSystems."/nix" = {
device = "/dev/disk/by-label/nixos";
fsType = "ext4";
};
swapDevices = [
{device = "/dev/disk/by-label/swap";}
];
};
}