summaryrefslogtreecommitdiff
path: root/common/modules/window_managers/default.nix
blob: 1c66f638744f3e94835fc77316ac82ed8a90dd85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
  homeManager,
  inputs,
  moduleNameSpace,
  ...
}:
{
  config,
  lib,
  pkgs,
  ...
}:
let
  args = {
    moduleNameSpace = "beeMods";
    inherit inputs homeManager;
  };
  scripts = import ./scripts.nix { inherit pkgs config; };
in
{
  imports = [
    (import ./mango args)
  ];

  options.${moduleNameSpace}.windowManagers = {
    mango.enable = lib.mkEnableOption "Enable mangowm";
    eyeCandy = {
      animations.enable = lib.mkEnableOption "Uiiiiiiiiiii";
      window = {
        blur = {
          enable = lib.mkEnableOption "Enable window blur";
          passes = lib.mkOption {
            type = lib.types.int;
            default = 1;
          };
          radius = lib.mkOption {
            type = lib.types.int;
            default = 10;
          };
        };
        shadows.enable = lib.mkEnableOption "Enable window drop shadows";
        borderRadius = lib.mkOption {
          type = lib.types.int;
          default = 0;
          description = "Border radius";
        };
        opacity = lib.mkOption {
          type = lib.types.number;
          default = 1.0;
          description = "Window opacity";
        };
      };
    };
  };
  config = (
    if homeManager then
      {
        home.packages = with pkgs; [
          wl-clipboard
          cliphist
          brightnessctl
          playerctl
          matugen
          awww
          waybar
          scripts.dotfiles
        ];
      }
    else
      {
      }
  );

}