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";
|
||||
in
|
||||
{
|
||||
home-manager.users.${username} = {
|
||||
#################################
|
||||
# Home Manager integration
|
||||
#################################
|
||||
|
||||
home-manager.users.${username} = {
|
||||
home.file.".config/scripts" = {
|
||||
source = scriptsPath;
|
||||
recursive = true;
|
||||
};
|
||||
|
||||
# Make scripts executable properly
|
||||
home.activation.makeScriptsExecutable =
|
||||
lib.hm.dag.entryAfter ["writeBoundary"] ''
|
||||
chmod -R +x $HOME/.config/scripts
|
||||
'';
|
||||
home.activation.makeScriptsExecutable = ''
|
||||
chmod -R +x $HOME/.config/scripts
|
||||
'';
|
||||
};
|
||||
}
|
||||
#+END_SRC
|
||||
|
||||
@@ -5,17 +5,18 @@ let
|
||||
scriptsPath = flakeRoot + "/generated/.config/scripts";
|
||||
in
|
||||
{
|
||||
home-manager.users.${username} = {
|
||||
#################################
|
||||
# Home Manager integration
|
||||
#################################
|
||||
|
||||
home-manager.users.${username} = {
|
||||
home.file.".config/scripts" = {
|
||||
source = scriptsPath;
|
||||
recursive = true;
|
||||
};
|
||||
|
||||
# Make scripts executable properly
|
||||
home.activation.makeScriptsExecutable =
|
||||
lib.hm.dag.entryAfter ["writeBoundary"] ''
|
||||
chmod -R +x $HOME/.config/scripts
|
||||
'';
|
||||
home.activation.makeScriptsExecutable = ''
|
||||
chmod -R +x $HOME/.config/scripts
|
||||
'';
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user