diff options
Diffstat (limited to 'snowfall/modules/home/suites/dev/default.nix')
| -rw-r--r-- | snowfall/modules/home/suites/dev/default.nix | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/snowfall/modules/home/suites/dev/default.nix b/snowfall/modules/home/suites/dev/default.nix index fd58bce..9ca35f6 100644 --- a/snowfall/modules/home/suites/dev/default.nix +++ b/snowfall/modules/home/suites/dev/default.nix @@ -2,6 +2,7 @@ with lib; with lib.${namespace}; let cfg = config.${namespace}.suites.dev; + impermanence = config.${namespace}.impermanence; desktop = config.${namespace}.suites.desktop; in { options.${namespace}.suites.dev = with types; { @@ -9,6 +10,12 @@ in { }; config = mkIf cfg.enable { + home.persistence.${impermanence.location} = { + directories = [ + "code" + ]; + }; + cxl = { apps = { vscode.enable = desktop.enable; |