This commit is contained in:
2025-03-17 14:25:24 -07:00
parent 3f12e44e34
commit 12965077ee
7 changed files with 333 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
rofi
];
home.file.".config/rofi" = {
source = ./config;
recursive = true;
};
}