blob: 710089700941fc82b7d75e3661f234277ab9832c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{lib, ...}: let
inherit (lib) mkEnableOption;
in {
imports = [
./waybar
./wofi
./alacritty.nix
./astal.nix
./hyprlock.nix
./kitty.nix
./mako.nix
];
options.apps = {
alacritty = mkEnableOption "Enable the alacritty terminal.";
astal = mkEnableOption "Enable the astal gtk shell.";
kitty = mkEnableOption "Enable the kitty terminal.";
mako = mkEnableOption "Enable the mako notification daemon.";
hyprlock = mkEnableOption "Enable the hyprlock lockscreen.";
waybar = mkEnableOption "Enable the waybar bar.";
wofi = mkEnableOption "Enable the wofi launcher.";
};
}
|