This commit is contained in:
Nico
2025-06-16 01:08:44 +02:00
parent e3c6e694f1
commit 10bf6d204c
37 changed files with 1311 additions and 14 deletions

View File

@@ -0,0 +1,18 @@
{ pkgs, config, lib,... }:
{
home.packages = with pkgs; [
rofi-screenshot
rofi-power-menu
rofi-bluetooth
bitwarden-menu
];
programs.rofi = {
enable = true;
theme = "/etc/nixos/packages/rofi/themes/catppuccin-mocha";
plugins = [
pkgs.rofi-power-menu
];
};
}