2022-05-04 01:11:31 +00:00
|
|
|
{ lib, ... }: {
|
2022-04-30 16:32:00 +00:00
|
|
|
|
2022-11-03 01:29:14 +00:00
|
|
|
imports =
|
|
|
|
[ ./xorg.nix ./fonts.nix ./i3.nix ./polybar.nix ./picom.nix ./rofi.nix ];
|
2022-05-04 01:11:31 +00:00
|
|
|
|
2022-11-03 01:29:14 +00:00
|
|
|
options = {
|
2022-05-06 03:01:56 +00:00
|
|
|
|
2022-11-03 01:29:14 +00: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-23 01:15:41 +00:00
|
|
|
audioSwitchCommand = lib.mkOption {
|
|
|
|
type = lib.types.str;
|
|
|
|
description = "Command to use for switching audio sink";
|
|
|
|
};
|
2022-11-03 01:29:14 +00:00
|
|
|
toggleBarCommand = lib.mkOption {
|
|
|
|
type = lib.types.str;
|
|
|
|
description = "Command to hide and show the status bar.";
|
|
|
|
};
|
2023-04-02 16:25:33 +00:00
|
|
|
powerCommand = lib.mkOption {
|
|
|
|
type = lib.types.str;
|
|
|
|
description = "Command to use for power options menu";
|
|
|
|
};
|
2022-11-03 01:29:14 +00:00
|
|
|
wallpaper = lib.mkOption {
|
|
|
|
type = lib.types.path;
|
|
|
|
description = "Wallpaper background image file";
|
2022-05-04 01:11:31 +00:00
|
|
|
};
|
2022-05-06 03:01:56 +00:00
|
|
|
|
2022-05-04 01:11:31 +00:00
|
|
|
};
|
2022-04-30 16:32:00 +00:00
|
|
|
|
|
|
|
}
|