Better git

This commit is contained in:
Filippo Berto 2025-09-09 14:35:17 +02:00
parent 762085707c
commit d0a6387caf
Signed by: bertof
GPG key ID: 9DBF7E6A1D2CE9ED
4 changed files with 9 additions and 0 deletions

View file

@ -161,6 +161,8 @@
wl-update-background
;
inherit (inputs.cute-api.packages.${system}) cute-api;
# Installer ISO
install-iso = inputs.nixos-generators.nixosGenerate {
inherit system;

View file

@ -141,6 +141,9 @@ in
lfs.enable = true;
delta.enable = true;
};
git-cliff.enable = true;
bash.shellAliases = shellAliases;
zsh.shellAliases = shellAliases;
};

View file

@ -1,5 +1,6 @@
{
imports = [
./git.nix
./automatic-garbage-collection.nix
./btrfs-scrub.nix
./distributed.nix

View file

@ -0,0 +1,3 @@
{
programs.git = { enable = true; lfs.enable = true; };
}