Change structure
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
{ lib, config, ... }:
|
||||
with lib;
|
||||
let
|
||||
cfg = config.os.homebrew.jetbrain;
|
||||
in
|
||||
{
|
||||
options.os.homebrew.jetbrain = {
|
||||
enable = mkEnableOption "System jetbrain homebrew service";
|
||||
};
|
||||
config = mkIf cfg.enable {
|
||||
|
||||
homebrew.casks = [
|
||||
"intellij-idea"
|
||||
"pycharm"
|
||||
"clion"
|
||||
"rustrover"
|
||||
"phpstorm"
|
||||
"rubymine"
|
||||
"goland"
|
||||
];
|
||||
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user