This commit is contained in:
biscuit
2025-06-05 16:35:01 -05:00
parent f715f08831
commit 363d470386
4 changed files with 10 additions and 19 deletions
+1 -15
View File
@@ -1,22 +1,8 @@
{pkgs, ...}: let
rofiSource = pkgs.fetchFromGitHub {
owner = "adi1090x";
repo = "rofi";
rev = "b76c16b2b7c465d7b082e11e5210fcd10c6683a7";
hash = "sha256-9IHENxHQors2z3aYj/xToZD79Gmi1aqlE3QnKnvOT9A=";
};
# wofiSource = builtins.toPath ./launcher;
in {
{pkgs, ...}: {
programs.rofi = {
enable = true;
plugins = with pkgs; [
rofi-calc
];
};
home.file.".config/rofi" = {
source = rofiSource;
recursive = true;
force = true;
};
}