Regenerated

This commit is contained in:
2026-03-27 14:35:53 +00:00
parent 6ab7061dca
commit f35336a0b2
3 changed files with 354 additions and 333 deletions
+310 -303
View File
File diff suppressed because it is too large Load Diff
+10 -3
View File
@@ -942,18 +942,25 @@ in
pkgs.wofi pkgs.wofi
]; ];
home-manager.users = { _module.args.hmUsers = {
${username} = { ${username} = {
home.file = { home.file = {
".config/wofi/config" = { ".config/wofi/config" = {
source = "${assetPath}/config"; source = "${assetPath}/config";
force = true; # <-- allow overwrite force = true; # overwrite existing
}; };
".config/wofi/style.css" = { ".config/wofi/style.css" = {
source = "${assetPath}/style.css"; source = "${assetPath}/style.css";
force = true; # <-- allow overwrite force = true; # overwrite existing
}; };
}; };
# Ensure ~/.config/wofi exists before writing files
home.activation.fixWofiDir = lib.hm.dag.entryAfter ["writeBoundary"] ''
mkdir -p $HOME/.config/wofi
chmod -R u+rwx $HOME/.config/wofi
'';
}; };
}; };
} }
@@ -11,18 +11,25 @@ in
pkgs.wofi pkgs.wofi
]; ];
home-manager.users = { _module.args.hmUsers = {
${username} = { ${username} = {
home.file = { home.file = {
".config/wofi/config" = { ".config/wofi/config" = {
source = "${assetPath}/config"; source = "${assetPath}/config";
force = true; # <-- allow overwrite force = true; # overwrite existing
}; };
".config/wofi/style.css" = { ".config/wofi/style.css" = {
source = "${assetPath}/style.css"; source = "${assetPath}/style.css";
force = true; # <-- allow overwrite force = true; # overwrite existing
}; };
}; };
# Ensure ~/.config/wofi exists before writing files
home.activation.fixWofiDir = lib.hm.dag.entryAfter ["writeBoundary"] ''
mkdir -p $HOME/.config/wofi
chmod -R u+rwx $HOME/.config/wofi
'';
}; };
}; };
} }