Stabilize server and desktop module

- Exluce hyprland for now
This commit is contained in:
Florian RICHER 2024-05-26 00:07:18 +02:00
parent 36ae7b2141
commit 5a593616f8
16 changed files with 15 additions and 11 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];
};
}