aboutsummaryrefslogtreecommitdiff
path: root/home-manager/programs/rofi/default.nix
blob: 8d417babf3bf9b7874b1284b3de376b384380c54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ pkgs, ... }:

let
  theme = ./squared-material-pine.rasi;
  cycle = true;
  plugins = with pkgs; [
    rofi-emoji
    rofi-calc
  ];
in
{
  programs.rofi = {
    enable = true;
    inherit theme cycle plugins;
  };
}