added nh
This commit is contained in:
parent
b00d03b728
commit
afb7b748bf
3 changed files with 18 additions and 9 deletions
|
@ -14,15 +14,6 @@
|
||||||
# reduce file size used & automatic garbage collector
|
# reduce file size used & automatic garbage collector
|
||||||
auto-optimise-store = true;
|
auto-optimise-store = true;
|
||||||
};
|
};
|
||||||
gc = {
|
|
||||||
automatic = true;
|
|
||||||
options = "--delete-older-than 14d";
|
|
||||||
};
|
|
||||||
# required for nix-direnv to work and have environments not garbage collected
|
|
||||||
extraOptions = ''
|
|
||||||
keep-outputs = true
|
|
||||||
keep-derivations = true
|
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
security.sudo.package = pkgs.sudo.override { withInsults = true; };
|
security.sudo.package = pkgs.sudo.override { withInsults = true; };
|
||||||
security.polkit.enable = true;
|
security.polkit.enable = true;
|
||||||
|
@ -55,6 +46,7 @@
|
||||||
emacs.enable = true;
|
emacs.enable = true;
|
||||||
fish.enable = true;
|
fish.enable = true;
|
||||||
stylix.enable = true;
|
stylix.enable = true;
|
||||||
|
nh.enable = true;
|
||||||
# spicetify.enable = true;
|
# spicetify.enable = true;
|
||||||
anyrun.enable = true;
|
anyrun.enable = true;
|
||||||
};
|
};
|
||||||
|
|
|
@ -2,5 +2,6 @@ _: {
|
||||||
imports = [
|
imports = [
|
||||||
./neovim.nix
|
./neovim.nix
|
||||||
./fish.nix
|
./fish.nix
|
||||||
|
./nh.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
16
modules/cli/nh.nix
Normal file
16
modules/cli/nh.nix
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
{ pkgs, lib, config, callPackage, ... }:
|
||||||
|
with lib; let
|
||||||
|
username = config.modules.other.system.username;
|
||||||
|
cfg = config.modules.programs.nh;
|
||||||
|
in {
|
||||||
|
options.modules.programs.nh.enable = mkEnableOption "nh";
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
programs.nh = {
|
||||||
|
enable = true;
|
||||||
|
clean.enable = true;
|
||||||
|
clean.extraArgs = "--keep-since 4d --keep 3";
|
||||||
|
flake = "/home/vali/repos/nichts";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue