initial commit

This commit is contained in:
2024-12-31 04:29:58 -05:00
commit 69ed9b2d4d
41 changed files with 4509 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
{
pkgs,
lib,
...
}: {
# programs.rofi = {
# enable = true;
# configPath = "./config.rasi";
# };
home.file.".config/rofi/config.rasi".source = ./config.rasi;
home.activation.copyRofiDir = lib.mkAfter ''
mkdir -p ~/.config/rofi/styles
cp -r ${./styles}/* ~/.config/rofi/styles/
chmod -R u+w ~/.config/rofi/styles/
'';
}