Files
system-config/home-manager/features/rofi/rofi.nix
2025-03-17 14:25:24 -07:00

12 lines
146 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
rofi
];
home.file.".config/rofi" = {
source = ./config;
recursive = true;
};
}