Regenerated

This commit is contained in:
2026-03-23 12:41:34 +00:00
parent 36a2c11cb1
commit c2e793b1a8
32 changed files with 1424 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
{ lib, config, pkgs, ... }:
let
programName = "wofi";
username = config.defaultUser or "henrov";
assetPath = ../../../assets/system/conf/${programName};
in
{
# Deploy assets to ~/.config/wofi via Home Manager
home-manager.users.${username}.home.file =
if builtins.pathExists assetPath then
lib.genAttrs (builtins.attrNames (builtins.readDir assetPath)) (name: {
source = "${assetPath}/${name}";
target = ".config/${programName}/${name}";
})
else {};
}