32 lines
781 B
Nix
Raw Normal View History

2022-05-03 21:11:31 -04:00
{ lib, ... }: {
2022-04-30 12:32:00 -04:00
imports =
[ ./xorg.nix ./fonts.nix ./i3.nix ./polybar.nix ./picom.nix ./rofi.nix ];
2022-05-03 21:11:31 -04:00
options = {
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";
};
toggleBarCommand = lib.mkOption {
type = lib.types.str;
description = "Command to hide and show the status bar.";
};
wallpaper = lib.mkOption {
type = lib.types.path;
description = "Wallpaper background image file";
2022-05-03 21:11:31 -04:00
};
2022-05-03 21:11:31 -04:00
};
2022-04-30 12:32:00 -04:00
}