dotfiles/modules/desktop/default.nix

21 lines
294 B
Nix
Raw Normal View History

2022-05-04 01:11:31 +00:00
{ lib, ... }: {
2022-04-30 16:32:00 +00:00
2022-05-04 01:11:31 +00:00
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";
};
};
2022-04-30 16:32:00 +00:00
}