mirror of
https://github.com/Cian-H/My_NixOS_Config.git
synced 2026-05-20 20:12:06 +01:00
20 lines
268 B
Nix
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";
|
|
};
|
|
}
|