add t14 sys platform

This commit is contained in:
Fabian Montero 2024-12-02 21:36:26 -06:00
parent b64c85e314
commit e6a8a66432
Signed by: fabian
GPG key ID: 1FFAC35E1798174F
8 changed files with 260 additions and 2 deletions

View file

@ -0,0 +1,22 @@
{
pkgs,
config,
lib,
...
}:
with lib; {
home.isolation = {
enable = true;
btrfsSupport = true;
defaults = {
static = true;
bindHome = "home/";
persist = {
base = "shenvs";
btrfs = true;
};
};
modulesUnder = ./shenvs;
};
}