Files
nix-config/home-manager/rofi.nix
2024-01-23 12:51:05 +01:00

10 lines
182 B
Nix

{ config, pkgs, inputs, ...}:
{
home.file.".config/rofi" = {
enable = true;
recursive = true;
source = ../.config/rofi;
target = ".config/rofi";
};
}