dotfiles/common/users/homeModules/rofi.nix

14 lines
286 B
Nix
Raw Normal View History

2024-11-26 17:01:58 -05:00
{pkgs, ...}: {
home = {
packages = with pkgs; [
rofi
];
file = {
rofi = {
recursive = true;
2024-11-26 17:20:47 -05:00
source = ../../../dotfiles/rofi;
2024-11-26 17:01:58 -05:00
target = "./.config/rofi";
};
};
};
}