1
0
Fork 0
forked from fabian/nix_config
nix_config_fabian/home/platforms/fabian@t14/isolation.nix

23 lines
295 B
Nix
Raw Permalink Normal View History

2024-12-03 04:36:26 +01:00
{
pkgs,
config,
lib,
...
}:
with lib; {
home.isolation = {
enable = true;
btrfsSupport = true;
defaults = {
static = true;
bindHome = "home/";
persist = {
base = "shenvs";
btrfs = true;
};
};
modulesUnder = ./shenvs;
};
}