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