blob: 2c30ee94997b8d13d217e3b4a9050488d5de8cf0 [file] [log] [blame]
Skyler Grey6aa7c262022-08-20 22:22:03 +01001{impermanence}: {
2 imports = [
3 impermanence.nixosModules.impermanence
4 ];
5
6 config = {
7 environment.persistence."/nix/persist" = {
8 hideMounts = true;
9 };
10
11 fileSystems."/" = {
12 device = "none";
13 fsType = "tmpfs";
14 options = ["defaults" "size=4G" "mode=755"];
15 };
16 };
17}