diff options
Diffstat (limited to 'snowfall')
| -rw-r--r-- | snowfall/modules/home/apps/default.nix | 8 | ||||
| -rw-r--r-- | snowfall/modules/home/suites/dev/default.nix | 1 |
2 files changed, 9 insertions, 0 deletions
diff --git a/snowfall/modules/home/apps/default.nix b/snowfall/modules/home/apps/default.nix index b455ef1..c780f3e 100644 --- a/snowfall/modules/home/apps/default.nix +++ b/snowfall/modules/home/apps/default.nix @@ -27,5 +27,13 @@ with lib; with lib.${namespace}; { (mkSimpleApp "lutris" { persist = [ ".local/share/lutris" ]; }) + (mkSimpleApp "intellij" { + packages = [ jetbrains.idea-community ]; + persist = [ + ".config/JetBrains" + ".local/share/JetBrains" + ".cache/JetBrains" + ]; + }) ]; } diff --git a/snowfall/modules/home/suites/dev/default.nix b/snowfall/modules/home/suites/dev/default.nix index 9ca35f6..57302cd 100644 --- a/snowfall/modules/home/suites/dev/default.nix +++ b/snowfall/modules/home/suites/dev/default.nix @@ -19,6 +19,7 @@ in { cxl = { apps = { vscode.enable = desktop.enable; + intellij.enable = desktop.enable; }; tools = { |