Regenerated
This commit is contained in:
+317
-319
File diff suppressed because it is too large
Load Diff
+5
-7
@@ -1283,19 +1283,17 @@ let
|
|||||||
scriptsPath = flakeRoot + "/generated/.config/scripts";
|
scriptsPath = flakeRoot + "/generated/.config/scripts";
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
#################################
|
|
||||||
# Home Manager integration
|
|
||||||
#################################
|
|
||||||
|
|
||||||
home-manager.users.${username} = {
|
home-manager.users.${username} = {
|
||||||
|
|
||||||
home.file.".config/scripts" = {
|
home.file.".config/scripts" = {
|
||||||
source = scriptsPath;
|
source = scriptsPath;
|
||||||
recursive = true;
|
recursive = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
home.activation.makeScriptsExecutable = ''
|
home.file.".config/scripts/update.sh" = {
|
||||||
chmod -R +x $HOME/.config/scripts
|
source = scriptsPath + "/update.sh";
|
||||||
'';
|
executable = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|||||||
@@ -5,18 +5,16 @@ let
|
|||||||
scriptsPath = flakeRoot + "/generated/.config/scripts";
|
scriptsPath = flakeRoot + "/generated/.config/scripts";
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
#################################
|
|
||||||
# Home Manager integration
|
|
||||||
#################################
|
|
||||||
|
|
||||||
home-manager.users.${username} = {
|
home-manager.users.${username} = {
|
||||||
|
|
||||||
home.file.".config/scripts" = {
|
home.file.".config/scripts" = {
|
||||||
source = scriptsPath;
|
source = scriptsPath;
|
||||||
recursive = true;
|
recursive = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
home.activation.makeScriptsExecutable = ''
|
home.file.".config/scripts/update.sh" = {
|
||||||
chmod -R +x $HOME/.config/scripts
|
source = scriptsPath + "/update.sh";
|
||||||
'';
|
executable = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user