mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-07 12:19:07 +00:00
users/foo-dogsquared: update the fetching service
This commit is contained in:
parent
f140494894
commit
e04d31afeb
@ -352,14 +352,19 @@ in
|
|||||||
type = "git";
|
type = "git";
|
||||||
extraArgs = [ "--depth" "1" ];
|
extraArgs = [ "--depth" "1" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
"${config.xdg.dataHome}/base16/bark-on-a-tree" = {
|
||||||
|
url = "https://github.com/foo-dogsquared/base16-bark-on-a-tree-scheme.git";
|
||||||
|
type = "git";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
systemd.user.services.fetch-mutable-files = {
|
systemd.user.services.fetch-mutable-files = {
|
||||||
Service.ExecStartPost = pkgs.writeScript "${config.home.username}-post-fetch-mutable-files" ''
|
Service.ExecStartPost = let
|
||||||
#!${pkgs.runtimeShell}
|
script = pkgs.writeShellScript "post-fetch-mutable-files" ''
|
||||||
|
# Automate installation of Doom Emacs.
|
||||||
# Automate installation of Doom Emacs.
|
${config.xdg.configHome}/emacs/bin/doom install --no-config --no-fonts --install --force
|
||||||
${config.xdg.configHome}/emacs/bin/doom install --no-config --no-fonts --install --force
|
'';
|
||||||
'';
|
in builtins.toString script;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user