Regenerated
This commit is contained in:
+319
-317
File diff suppressed because it is too large
Load Diff
+7
-5
@@ -1283,16 +1283,18 @@ 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;
|
||||||
executable = true;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Make scripts executable properly
|
||||||
|
home.activation.makeScriptsExecutable =
|
||||||
|
lib.hm.dag.entryAfter ["writeBoundary"] ''
|
||||||
|
chmod -R +x $HOME/.config/scripts
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|||||||
@@ -5,15 +5,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;
|
||||||
executable = true;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Make scripts executable properly
|
||||||
|
home.activation.makeScriptsExecutable =
|
||||||
|
lib.hm.dag.entryAfter ["writeBoundary"] ''
|
||||||
|
chmod -R +x $HOME/.config/scripts
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user