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";
|
scriptsPath = flakeRoot + "/generated/.config/scripts";
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
home-manager.users.${username} = {
|
home-manager.users = {
|
||||||
|
${username} = {
|
||||||
home.file.".config/scripts" = {
|
home.file = {
|
||||||
source = scriptsPath;
|
".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
|
#+END_SRC
|
||||||
|
|||||||
@@ -5,14 +5,15 @@ let
|
|||||||
scriptsPath = flakeRoot + "/generated/.config/scripts";
|
scriptsPath = flakeRoot + "/generated/.config/scripts";
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
home-manager.users.${username} = {
|
home-manager.users = {
|
||||||
|
${username} = {
|
||||||
home.file.".config/scripts" = {
|
home.file = {
|
||||||
source = scriptsPath;
|
".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