2022-05-03 21:11:31 -04:00
|
|
|
{ lib, ... }: {
|
2022-04-30 12:32:00 -04:00
|
|
|
|
2023-04-02 19:19:40 -04:00
|
|
|
imports = [
|
|
|
|
./dunst.nix
|
|
|
|
./fonts.nix
|
2023-08-06 18:07:47 -04:00
|
|
|
./gtk.nix
|
2023-04-02 19:19:40 -04:00
|
|
|
./i3.nix
|
|
|
|
./picom.nix
|
|
|
|
./polybar.nix
|
|
|
|
./rofi.nix
|
|
|
|
./xorg.nix
|
|
|
|
];
|
2022-05-03 21:11:31 -04:00
|
|
|
|
2022-11-02 21:29:14 -04:00
|
|
|
options = {
|
2022-05-05 23:01:56 -04:00
|
|
|
|
2022-11-02 21:29:14 -04:00
|
|
|
launcherCommand = lib.mkOption {
|
|
|
|
type = lib.types.str;
|
|
|
|
description = "Command to use for launching";
|
|
|
|
};
|
|
|
|
systemdSearch = lib.mkOption {
|
|
|
|
type = lib.types.str;
|
|
|
|
description = "Command to use for interacting with systemd";
|
|
|
|
};
|
|
|
|
altTabCommand = lib.mkOption {
|
|
|
|
type = lib.types.str;
|
|
|
|
description = "Command to use for choosing windows";
|
|
|
|
};
|
2023-03-22 21:15:41 -04:00
|
|
|
audioSwitchCommand = lib.mkOption {
|
|
|
|
type = lib.types.str;
|
|
|
|
description = "Command to use for switching audio sink";
|
|
|
|
};
|
2023-04-02 15:52:45 -04:00
|
|
|
brightnessCommand = lib.mkOption {
|
|
|
|
type = lib.types.str;
|
|
|
|
description = "Command to use for adjusting brightness";
|
|
|
|
};
|
2023-04-10 23:10:49 -04:00
|
|
|
calculatorCommand = lib.mkOption {
|
|
|
|
type = lib.types.str;
|
|
|
|
description = "Command to use for quick calculations";
|
|
|
|
};
|
2022-11-02 21:29:14 -04:00
|
|
|
toggleBarCommand = lib.mkOption {
|
|
|
|
type = lib.types.str;
|
|
|
|
description = "Command to hide and show the status bar.";
|
|
|
|
};
|
2023-04-02 12:25:33 -04:00
|
|
|
powerCommand = lib.mkOption {
|
|
|
|
type = lib.types.str;
|
|
|
|
description = "Command to use for power options menu";
|
|
|
|
};
|
2022-11-02 21:29:14 -04:00
|
|
|
wallpaper = lib.mkOption {
|
|
|
|
type = lib.types.path;
|
|
|
|
description = "Wallpaper background image file";
|
2022-05-03 21:11:31 -04:00
|
|
|
};
|
2022-05-05 23:01:56 -04:00
|
|
|
|
2022-05-03 21:11:31 -04:00
|
|
|
};
|
2022-04-30 12:32:00 -04:00
|
|
|
|
|
|
|
}
|