mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 07:32:55 +00:00
41d289c5db
preparing for light mode, even though specializations aren't working
32 lines
781 B
Nix
32 lines
781 B
Nix
{ lib, ... }: {
|
|
|
|
imports =
|
|
[ ./xorg.nix ./fonts.nix ./i3.nix ./polybar.nix ./picom.nix ./rofi.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";
|
|
};
|
|
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";
|
|
};
|
|
|
|
};
|
|
|
|
}
|