nix-config/modules/home-manager/cli/default.nix
Oliver Davies 1c861aa1b5 Add dev-commit
Add `dev-commit`, a script based on f00f31c649/env/.local/scripts/dev-commit
that is meant to be a fallback to commit and push any missed changes
that should be kept.

This is not intended to be a substitute for making manual commits and
writing detailed commit messages.

The script uses an environment variable for the list of project
directories, which is set within a Home Manager module that also creates
a systemd service and timer to run the command automatically - similar
to a cron job.

Adding this should prevent occasional issues, such as missing the
firewall configuration for my homelab which was removed accidentally and
stopped my reverse proxies for services such as Jellyfin and Immich from
running.
2025-04-29 13:37:20 +01:00

17 lines
242 B
Nix

{
imports = [
./bluetuith.nix
./dev-commit.nix
./direnv.nix
./fzf.nix
./git.nix
./node.nix
./notes.nix
./ranger.nix
./scripts
./starship.nix
./tmux.nix
./tmux-sessionizer.nix
./zsh
];
}