Start from scratch

This commit is contained in:
Christoph Hollizeck 2025-10-26 22:40:37 +01:00
parent f15630dfb1
commit fe6de112e6
Signed by: Daholli
GPG key ID: 249300664F2AF2C7
111 changed files with 428 additions and 6886 deletions

13
modules/base/home.nix Normal file
View file

@ -0,0 +1,13 @@
{
flake.modules.homeManager.base = {
programs.home-manager.enable = true;
services = {
home-manager.autoExpire = {
enable = true;
frequency = "weekly";
store.cleanup = true;
};
};
};
}