forked from foxora/nix
18 lines
349 B
Nix
18 lines
349 B
Nix
|
|
{ config, inputs, pkgs, ... }:
|
||
|
|
let
|
||
|
|
unstable = inputs.nixpkgs-unstable.legacyPackages.${pkgs.stdenv.hostPlatform.system};
|
||
|
|
in
|
||
|
|
{
|
||
|
|
programs.rofi = {
|
||
|
|
enable = true;
|
||
|
|
|
||
|
|
font = "DepartureMono Nerd Font Mono 10";
|
||
|
|
theme = ./theme.rasi;
|
||
|
|
|
||
|
|
extraConfig = {
|
||
|
|
#kb-row-up = "Up,Control+k";
|
||
|
|
#kb-row-down = "Down,Control+j";
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|