add rofi config

This commit is contained in:
Kopatz
2024-01-23 12:51:05 +01:00
parent e93c6f16a2
commit ac3ea28845
2 changed files with 10 additions and 0 deletions

9
home-manager/rofi.nix Normal file
View File

@@ -0,0 +1,9 @@
{ config, pkgs, inputs, ...}:
{
home.file.".config/rofi" = {
enable = true;
recursive = true;
source = ../.config/rofi;
target = ".config/rofi";
};
}