dotfiles/modules/desktop/default.nix
2022-05-03 21:11:31 -04:00

21 lines
294 B
Nix

{ lib, ... }: {
imports = [
./xorg.nix
./fonts.nix
./i3.nix
./polybar.nix
./picom.nix
# ./dmenu.nix
./rofi.nix
];
options = {
launcherCommand = lib.mkOption {
type = lib.types.str;
description = "Command to use for launching";
};
};
}