Regenerated
This commit is contained in:
+321
-320
File diff suppressed because it is too large
Load Diff
+9
-8
@@ -1283,15 +1283,16 @@ let
|
||||
scriptsPath = flakeRoot + "/generated/.config/scripts";
|
||||
in
|
||||
{
|
||||
home-manager.users.${username} = {
|
||||
|
||||
home.file.".config/scripts" = {
|
||||
source = scriptsPath;
|
||||
home-manager.users = {
|
||||
${username} = {
|
||||
home.file = {
|
||||
".config/scripts/update.sh" = {
|
||||
text = builtins.readFile (flakeRoot + "/generated/.config/scripts/update.sh");
|
||||
executable = true;
|
||||
force = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
home.activation.makeScriptsExecutable = ''
|
||||
chmod -R +x $HOME/.config/scripts
|
||||
'';
|
||||
};
|
||||
}
|
||||
#+END_SRC
|
||||
|
||||
@@ -5,14 +5,15 @@ let
|
||||
scriptsPath = flakeRoot + "/generated/.config/scripts";
|
||||
in
|
||||
{
|
||||
home-manager.users.${username} = {
|
||||
|
||||
home.file.".config/scripts" = {
|
||||
source = scriptsPath;
|
||||
home-manager.users = {
|
||||
${username} = {
|
||||
home.file = {
|
||||
".config/scripts/update.sh" = {
|
||||
text = builtins.readFile (flakeRoot + "/generated/.config/scripts/update.sh");
|
||||
executable = true;
|
||||
force = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
home.activation.makeScriptsExecutable = ''
|
||||
chmod -R +x $HOME/.config/scripts
|
||||
'';
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user