Personal-use NixOS configuration
0
fork

Configure Feed

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

at main 24 lines 359 B view raw
1{ 2 flakeLib, 3 pkgs, 4 ... 5}: 6 7{ 8 home.packages = [ 9 (flakeLib.customJetbrainsPackage { 10 idePackage = pkgs.jetbrains.idea-oss; 11 12 pluginIds = [ 13 "com.ddoong2.direnvloader" 14 "com.liubs.jaredit" 15 ]; 16 17 patchedPlugins = [ 18 "catppuccin-theme" 19 "-env-files" 20 "minecraft-development" 21 ]; 22 }) 23 ]; 24}