mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 01:42:55 +00:00
55 lines
1.3 KiB
Nix
55 lines
1.3 KiB
Nix
{ lib, ... }:
|
|
{
|
|
|
|
imports = [
|
|
./dunst.nix
|
|
./fonts.nix
|
|
./gtk.nix
|
|
./i3.nix
|
|
./picom.nix
|
|
./polybar.nix
|
|
./rofi.nix
|
|
./xorg.nix
|
|
];
|
|
|
|
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";
|
|
};
|
|
audioSwitchCommand = lib.mkOption {
|
|
type = lib.types.str;
|
|
description = "Command to use for switching audio sink";
|
|
};
|
|
brightnessCommand = lib.mkOption {
|
|
type = lib.types.str;
|
|
description = "Command to use for adjusting brightness";
|
|
};
|
|
calculatorCommand = lib.mkOption {
|
|
type = lib.types.str;
|
|
description = "Command to use for quick calculations";
|
|
};
|
|
toggleBarCommand = lib.mkOption {
|
|
type = lib.types.str;
|
|
description = "Command to hide and show the status bar.";
|
|
};
|
|
powerCommand = lib.mkOption {
|
|
type = lib.types.str;
|
|
description = "Command to use for power options menu";
|
|
};
|
|
wallpaper = lib.mkOption {
|
|
type = lib.types.path;
|
|
description = "Wallpaper background image file";
|
|
};
|
|
};
|
|
}
|