mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-09 22:49:42 +00:00
Enable impermanence on voyager
This commit is contained in:
parent
4e2a6e7757
commit
ad1a4bae0c
|
@ -37,7 +37,21 @@
|
||||||
sound.enable = true;
|
sound.enable = true;
|
||||||
bluetooth.enable = true;
|
bluetooth.enable = true;
|
||||||
|
|
||||||
# TODO: Impermanence
|
impermanence = {
|
||||||
|
root = {
|
||||||
|
enable = true;
|
||||||
|
|
||||||
|
# Some people use /nix/persist/system for this, leaving persistent files in /nix subvolume
|
||||||
|
# I much prefer using a standalone subvolume for this though.
|
||||||
|
persistentMountPoint = "/persist";
|
||||||
|
};
|
||||||
|
|
||||||
|
# Configure automatic root subvolume wiping on boot from initrd
|
||||||
|
autoWipeBtrfs = {
|
||||||
|
enable = true;
|
||||||
|
devices."/dev/disk/by-label/NIXOS-FS".subvolumes = [ "root" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
device = {
|
device = {
|
||||||
|
|
Loading…
Reference in a new issue