Files
nixos/pkgs/rofi/default.nix
T
biscuit ba7174224c upd
2025-06-02 14:05:20 -05:00

23 lines
491 B
Nix

{pkgs, ...}: let
# wofiSource = pkgs.fetchFromGitHub {
# owner = "adi1090x";
# repo = "rofi";
# rev = "b76c16b2b7c465d7b082e11e5210fcd10c6683a7";
# hash = "sha256-9IHENxHQors2z3aYj/xToZD79Gmi1aqlE3QnKnvOT9A=";
# };
wofiSource = builtins.toPath ./launcher;
in {
programs.rofi = {
enable = true;
package = with pkgs; [
rofi-calc
];
};
# home.file.".config/wofi" = {
# source = wofiSource;
# recursive = true;
# force = true;
# };
}