Files
My_NixOS_Config/nixos/core/programs.nix
T
2026-05-01 10:16:38 +01:00

20 lines
268 B
Nix

{
inputs,
lib,
config,
pkgs,
unstablePkgs,
...
}: {
imports = [
./programs/neovim.nix
];
programs.nh = {
enable = true;
clean.enable = true;
clean.extraArgs = "--keep-since 7d --keep 5";
flake = "/home/cianh/.config/nix";
};
}