This repository has been archived on 2024-04-14. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-dotfiles/user/configs/rofi/default.nix

12 lines
212 B
Nix
Executable File

{pkgs, ...}: {
programs.rofi = {
enable = true;
package = pkgs.rofi-wayland;
terminal = "${pkgs.foot}/bin/foot";
extraConfig = {
modi = "drun,run";
};
theme = ./theme.rasi;
};
}