12 lines
269 B
Nix
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
|