summaryrefslogtreecommitdiff
path: root/home/isolation.nix
blob: 5a15468685c03f31991518d32297f3628ab542bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, ... }:
with lib; {
  home.isolation = {
    enable = true;
    btrfsSupport = true;

    defaults = {
      static = false;
      bindHome = "home";

      persist = {
        base = "shenvs";
        btrfs = true;
      };
    };

    modulesUnder = ./shenvs;
  };
}