Skip to content

Commit

Permalink
Added Rofi
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanwclark committed Mar 7, 2024
1 parent b89759a commit 090e19c
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
1 change: 1 addition & 0 deletions home/features/desktop/hyprland/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

{
imports = [
./rofi.nix
./waybar.nix
./basic-binds.nix
];
Expand Down
23 changes: 23 additions & 0 deletions home/features/desktop/hyprland/rofi.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
pkgs,
...
}:
{
programs.rofi = {
enable = true;

extraConfig = {
bw = 1;
columns = 2;
icon-theme = "Papirus-Dark";
};

# theme = "gruvbox-dark-soft";

# font = "Fira Code 12";

package = pkgs.rofi.override {
plugins = [ pkgs.rofi-calc pkgs.rofi-emoji ];
};
};
}

0 comments on commit 090e19c

Please sign in to comment.