nixos_config/home/alisceon/modules/programs/rofi.nix
2026-03-10 21:05:35 +01:00

12 lines
269 B
Nix

{ pkgs, config, hostName, lib, ... }:
let
commands = import ../../lib/commands.nix { inherit pkgs; };
inherit (commands) term;
in
{
programs.rofi = {
enable = true;
package = pkgs.rofi-unwrapped;
terminal = term;
}; # end programs.rofi
} # end file