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
|
pkgs.wofi
|
||||||
];
|
];
|
||||||
|
|
||||||
home-manager.users = {
|
_module.args.hmUsers = {
|
||||||
${username} = {
|
${username} = {
|
||||||
home.file = {
|
|
||||||
".config/wofi/config" = {
|
home.file = {
|
||||||
source = "${assetPath}/config";
|
".config/wofi/config" = {
|
||||||
force = true; # <-- allow overwrite
|
source = "${assetPath}/config";
|
||||||
};
|
force = true; # overwrite existing
|
||||||
".config/wofi/style.css" = {
|
};
|
||||||
source = "${assetPath}/style.css";
|
".config/wofi/style.css" = {
|
||||||
force = true; # <-- allow overwrite
|
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
|
#+END_SRC
|
||||||
|
|
||||||
|
|||||||
@@ -11,18 +11,25 @@ in
|
|||||||
pkgs.wofi
|
pkgs.wofi
|
||||||
];
|
];
|
||||||
|
|
||||||
home-manager.users = {
|
_module.args.hmUsers = {
|
||||||
${username} = {
|
${username} = {
|
||||||
home.file = {
|
|
||||||
".config/wofi/config" = {
|
home.file = {
|
||||||
source = "${assetPath}/config";
|
".config/wofi/config" = {
|
||||||
force = true; # <-- allow overwrite
|
source = "${assetPath}/config";
|
||||||
};
|
force = true; # overwrite existing
|
||||||
".config/wofi/style.css" = {
|
};
|
||||||
source = "${assetPath}/style.css";
|
".config/wofi/style.css" = {
|
||||||
force = true; # <-- allow overwrite
|
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