dotfiles/common/users/homeModules/rofi.nix

14 lines
280 B
Nix
Raw Normal View History

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