From a4220dbc98c7af29d915d9da9c59f6c7ebae3fa8 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Tue, 4 Jun 2024 03:02:04 -0500 Subject: [PATCH] feat(nix/hm/price): enable `nix` gc --- users/price/conf/nix/default.nix | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 users/price/conf/nix/default.nix diff --git a/users/price/conf/nix/default.nix b/users/price/conf/nix/default.nix new file mode 100644 index 00000000..d664c8a9 --- /dev/null +++ b/users/price/conf/nix/default.nix @@ -0,0 +1,8 @@ +{ ... }: +{ + nix = { + gc = { + automatic = true; + }; + }; +}