12 lines
218 B
Nix
12 lines
218 B
Nix
{ pkgs, ... }:
|
|
let
|
|
commands = import ../../../lib/commands.nix { inherit pkgs; };
|
|
inherit (commands) term;
|
|
in
|
|
{
|
|
programs.rofi = {
|
|
enable = true;
|
|
package = pkgs.rofi-unwrapped;
|
|
terminal = term;
|
|
};
|
|
}
|