10 lines
182 B
Nix
10 lines
182 B
Nix
{ config, pkgs, inputs, ...}:
|
|
{
|
|
home.file.".config/rofi" = {
|
|
enable = true;
|
|
recursive = true;
|
|
source = ../.config/rofi;
|
|
target = ".config/rofi";
|
|
};
|
|
}
|