feat(jetbrains): add jetbrains products
This commit is contained in:
parent
a8027f4a62
commit
87c1b02e31
11
home/jetbrains/home.nix
Normal file
11
home/jetbrains/home.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{ pkgs
|
||||
, lib
|
||||
, config
|
||||
, ... }: with lib; let
|
||||
cfg = config.passthrough.jetbrains;
|
||||
in mkIf cfg.enable {
|
||||
home.packages = with pkgs.jetbrains; [ ] ++
|
||||
optional cfg.idea idea-community ++
|
||||
optional cfg.clion clion ++
|
||||
optional cfg.goland goland;
|
||||
}
|
26
home/jetbrains/nixos.nix
Normal file
26
home/jetbrains/nixos.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ pkgs
|
||||
, lib
|
||||
, config
|
||||
, ... }: with lib; let
|
||||
cfg = config.home.jetbrains;
|
||||
in {
|
||||
options.home.jetbrains = {
|
||||
enable = mkEnableOption "jetbrains text editor";
|
||||
idea = mkEnableOption "intellij idea";
|
||||
clion = mkEnableOption "clion ide";
|
||||
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 [
|
||||
".java/.userPrefs"
|
||||
".config/JetBrains"
|
||||
".local/share/JetBrains"
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue