Enabled home-manager.autoExpire

This commit is contained in:
2025-05-09 09:35:54 +01:00
parent c6ea7d8030
commit 917d4aa152
2 changed files with 15 additions and 0 deletions

View File

@@ -12,6 +12,7 @@
./core/user.nix
./core/packages.nix
./core/programs.nix
./core/services.nix
inputs.hyprcursor-phinger.homeManagerModules.hyprcursor-phinger
];

View File

@@ -0,0 +1,14 @@
{
inputs,
outputs,
lib,
config,
pkgs,
unstablePkgs,
...
}: {
services.home-manager.autoExpire = {
enable = true;
store.cleanup = true;
};
}