mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 12:49:32 -08:00
added folder exists check before copy
This commit is contained in:
parent
f87dc5734b
commit
3e0c163917
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ let
|
|||
in
|
||||
{
|
||||
system.activationScripts.copyStuff = "cp -r ${../../../rsrcs/giteaCustomDir}/. /Aurora/Forgejo/custom";
|
||||
system.activationScripts.copyTheme = "cp ${palenight}/dist/theme-palenight.css /Aurora/Forgejo/custom/public/assets/css/";
|
||||
system.activationScripts.copyTheme = "mkdir -p /Aurora/Forgejo/custom/public/assets/css && cp ${palenight}/dist/theme-palenight.css /Aurora/Forgejo/custom/public/assets/css/";
|
||||
|
||||
services.gitea = {
|
||||
enable = true;
|
||||
|
|
Loading…
Reference in a new issue