rofi themed

This commit is contained in:
2024-04-20 14:26:21 +02:00
parent 8de21a99f0
commit 835925812f
4 changed files with 19 additions and 3 deletions

View File

@@ -4,5 +4,7 @@
./git.nix
./zsh
];
# home.packages = with pkgs; [];
home.packages = with pkgs; [
killall
];
}

View File

@@ -6,10 +6,10 @@
}: {
imports = [
./picom.nix
./rofi.nix
];
home.packages = with pkgs; [
rofi
dmenu
st
dunst

View File

@@ -0,0 +1,15 @@
{
lib,
config,
pkgs,
...
}: {
programs.rofi = {
enable = true;
plugins = with pkgs; [
rofi-calc
];
location = "center";
theme = "gruvbox-dark-soft";
};
}