Finish migrate all hosts conf

This commit is contained in:
Florian RICHER 2024-05-25 00:51:55 +02:00
parent 0aa0f2eb80
commit d0e303d0f9
23 changed files with 348 additions and 2476 deletions

View file

@ -0,0 +1,16 @@
{ config, pkgs, lib, ... }:
with lib;
let
cfg = config.modules.desktop.jetbrainsToolbox;
in
{
options.modules.desktop.jetbrainsToolbox = {
enable = mkEnableOption ''
Enable jetbrainsToolbox with my custom configurations
'';
};
config = mkIf cfg.enable {
home.packages = with pkgs; [jetbrains-toolbox];
};
}