diff options
| author | Caroline Larimore <caroline@larimo.re> | 2025-02-08 17:24:22 -0800 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2025-04-14 18:58:51 -0700 |
| commit | 98242c2f0d37306b72398159d89a39bed6bbc3a2 (patch) | |
| tree | e5074a320aeed5bd3b77740ba645c9f3a47978c5 | |
| parent | 6148ef73f6e93774d34b345f12e8aa2e69dfdfe3 (diff) | |
migration: intellij
| -rw-r--r-- | hosts/c-pc/home.nix | 3 | ||||
| -rw-r--r-- | snowfall/modules/home/apps/default.nix | 8 | ||||
| -rw-r--r-- | snowfall/modules/home/suites/dev/default.nix | 1 |
3 files changed, 9 insertions, 3 deletions
diff --git a/hosts/c-pc/home.nix b/hosts/c-pc/home.nix index 23c1973..2a8627b 100644 --- a/hosts/c-pc/home.nix +++ b/hosts/c-pc/home.nix @@ -43,9 +43,6 @@ irssi mkvtoolnix - - #TODO: latest update broke - # jetbrains.idea-community ]; home.stateVersion = "23.11"; 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 = { |