My Nix configuration. Enter at your own risk.
0

Configure Feed

Select the types of activity you want to include in your feed.

datagrip: Add missing module

The imports list in modules/home/default.nix references
./datagrip.nix, but the file did not exist, breaking
evaluation of every home configuration. Add a minimal
module that follows the discord/obsidian flatpak pattern,
exposing modules.home.datagrip.enable to install
com.jetbrains.DataGrip via Flatpak.

author
Isaac Corbrey
date (Jun 1, 2026, 10:30 AM -0400) commit f43c5560 parent 5188a6f4 change-id zosyrxuw
+13
+13
modules/home/datagrip.nix
··· 1 + { 2 + config, 3 + lib, 4 + ... 5 + }: { 6 + options.modules.home.datagrip = { 7 + enable = lib.mkEnableOption "datagrip"; 8 + }; 9 + 10 + config.modules.home.flatpak.apps = { 11 + "com.jetbrains.DataGrip".enable = config.modules.home.datagrip.enable; 12 + }; 13 + }