nixos/home/jetbrains/nixos.nix

35 lines
647 B
Nix
Raw Normal View History

2025-01-13 11:52:09 +08:00
{
pkgs,
lib,
config,
...
}:
with lib;
let
cfg = config.home.jetbrains;
2025-01-13 11:52:09 +08:00
in
{
options.home.jetbrains = {
enable = mkEnableOption "jetbrains text editor";
idea = mkEnableOption "intellij idea";
clion = mkEnableOption "clion ide";
2025-01-13 11:52:09 +08:00
goland = mkEnableOption "goland ide" // {
default = true;
};
};
config = {
users.homeModules = [
# this module passes jetbrains configuration to home-manager
{ passthrough.jetbrains = cfg; }
];
users.home.persist.directories = mkIf cfg.enable [
2024-05-20 09:18:26 +08:00
"go"
".java/.userPrefs"
".config/JetBrains"
".local/share/JetBrains"
];
};
}