aboutsummaryrefslogtreecommitdiff
path: root/snowfall/modules/home/suites/desktop/default.nix
blob: ff8dc370d7588b7f351bc9b704ac71d8def2ed3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ options, config, lib, namespace, ... }:

with lib; with lib.${namespace}; let
  cfg = config.${namespace}.suites.desktop;
in {
  options.${namespace}.suites.desktop = with types; {
    enable = mkEnableOption "desktop";
  };

  config = mkIf cfg.enable {
    cxl = {
      apps = {
        i3.enable = true;
        polybar.enable = true;
        kitty.enable = true;
      };
    };
  };
}