Regenerated
This commit is contained in:
+318
-311
File diff suppressed because it is too large
Load Diff
+18
-11
@@ -942,20 +942,27 @@ in
|
||||
pkgs.wofi
|
||||
];
|
||||
|
||||
home-manager.users = {
|
||||
${username} = {
|
||||
home.file = {
|
||||
".config/wofi/config" = {
|
||||
source = "${assetPath}/config";
|
||||
force = true; # <-- allow overwrite
|
||||
};
|
||||
".config/wofi/style.css" = {
|
||||
source = "${assetPath}/style.css";
|
||||
force = true; # <-- allow overwrite
|
||||
_module.args.hmUsers = {
|
||||
${username} = {
|
||||
|
||||
home.file = {
|
||||
".config/wofi/config" = {
|
||||
source = "${assetPath}/config";
|
||||
force = true; # overwrite existing
|
||||
};
|
||||
".config/wofi/style.css" = {
|
||||
source = "${assetPath}/style.css";
|
||||
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
|
||||
'';
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
#+END_SRC
|
||||
|
||||
|
||||
@@ -11,18 +11,25 @@ in
|
||||
pkgs.wofi
|
||||
];
|
||||
|
||||
home-manager.users = {
|
||||
${username} = {
|
||||
home.file = {
|
||||
".config/wofi/config" = {
|
||||
source = "${assetPath}/config";
|
||||
force = true; # <-- allow overwrite
|
||||
};
|
||||
".config/wofi/style.css" = {
|
||||
source = "${assetPath}/style.css";
|
||||
force = true; # <-- allow overwrite
|
||||
_module.args.hmUsers = {
|
||||
${username} = {
|
||||
|
||||
home.file = {
|
||||
".config/wofi/config" = {
|
||||
source = "${assetPath}/config";
|
||||
force = true; # overwrite existing
|
||||
};
|
||||
".config/wofi/style.css" = {
|
||||
source = "${assetPath}/style.css";
|
||||
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
|
||||
'';
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user