mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-15 09:35:12 -05:00
14 lines
228 B
Nix
Executable file
14 lines
228 B
Nix
Executable file
{ flake, ... }:
|
|
let
|
|
inherit (flake.config.people) user0;
|
|
in
|
|
{
|
|
programs.nh = {
|
|
enable = true;
|
|
clean = {
|
|
enable = true;
|
|
dates = "weekly";
|
|
};
|
|
flake = "/home/${user0}/Files/Projects/dotfiles";
|
|
};
|
|
}
|