nix/users/gandalf/modules/gui/i3/rofi.nix

13 lines
189 B
Nix

{ pkgs, lib, ... }:
let
common = (import ../common.nix) { pkgs = pkgs; lib = lib; };
in
{
programs.rofi = {
enable = true;
font = common.font;
location = "center";
};
}