fix: remove pre-commit, gc settings

This commit is contained in:
Barrett Ruth 2026-02-12 00:34:43 -05:00
parent 7ca12a38ae
commit 6e7605a562
Signed by: barrett
GPG key ID: A6C96C9349D2FC81
2 changed files with 7 additions and 2 deletions

View file

@ -6,8 +6,6 @@
}: }:
{ {
home.packages = [ pkgs.pre-commit ];
programs.git = { programs.git = {
enable = true; enable = true;
lfs.enable = true; lfs.enable = true;

View file

@ -145,6 +145,7 @@
]; ];
nix.settings = { nix.settings = {
auto-optimise-store = true;
experimental-features = [ experimental-features = [
"nix-command" "nix-command"
"flakes" "flakes"
@ -155,5 +156,11 @@
]; ];
}; };
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 7d";
};
system.stateVersion = "24.11"; system.stateVersion = "24.11";
} }