mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 04:02:55 +00:00
60 lines
1.4 KiB
Nix
60 lines
1.4 KiB
Nix
{ lib, ... }: {
|
|
|
|
imports = [
|
|
./xorg.nix
|
|
./fonts.nix
|
|
./i3.nix
|
|
./polybar.nix
|
|
./picom.nix
|
|
# ./dmenu.nix
|
|
./rofi.nix
|
|
];
|
|
|
|
options = with lib; {
|
|
|
|
gui = {
|
|
enable = mkEnableOption {
|
|
description = "Enable graphics";
|
|
default = false;
|
|
};
|
|
compositor.enable = mkEnableOption {
|
|
description = "Enable transparency, blur, shadows";
|
|
default = false;
|
|
};
|
|
launcherCommand = mkOption {
|
|
type = types.str;
|
|
description = "Command to use for launching";
|
|
};
|
|
systemdSearch = mkOption {
|
|
type = types.str;
|
|
description = "Command to use for interacting with systemd";
|
|
};
|
|
toggleBarCommand = lib.mkOption {
|
|
type = lib.types.str;
|
|
description = "Command to hide and show the status bar.";
|
|
};
|
|
gtk.theme = {
|
|
name = mkOption {
|
|
type = types.str;
|
|
description = "Theme name for GTK applications";
|
|
};
|
|
package = mkOption {
|
|
type = types.str;
|
|
description = "Theme package name for GTK applications";
|
|
default = "gnome-themes-extra";
|
|
};
|
|
};
|
|
colorscheme = mkOption {
|
|
type = types.attrs;
|
|
description = "Base16 color scheme";
|
|
};
|
|
wallpaper = mkOption {
|
|
type = types.path;
|
|
description = "Wallpaper background image file";
|
|
};
|
|
};
|
|
|
|
};
|
|
|
|
}
|