nix-files/machines/lappy/default.nix
colin 0acb2e138b image building: enable impermanence
note that it still needs an interactive `mkdir /mnt-root/nix/var/{lib,log}`
in the initrd.
2022-06-23 03:39:09 -07:00

15 lines
327 B
Nix

{ ... }:
{
imports = [
./fs.nix
];
# colinsane.gui.sway.enable = true;
colinsane.impermanence.enable = true;
colinsane.extlinux.enable = true;
boot.loader.efi.canTouchEfiVariables = false;
# docs: https://nixos.org/manual/nixos/stable/options.html#opt-system.stateVersion
system.stateVersion = "21.05";
}