2022-05-25 12:50:35 +00:00
|
|
|
{ config, pkgs, ...}:
|
|
|
|
{
|
|
|
|
environment.variables.EDITOR = "nvim";
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
gitAndTools.gitFull
|
|
|
|
unzip
|
|
|
|
zip
|
|
|
|
tmux
|
|
|
|
lshw
|
|
|
|
bc
|
|
|
|
neovim
|
2022-06-01 19:04:19 +00:00
|
|
|
ncdu
|
|
|
|
nixos-option
|
|
|
|
bat
|
|
|
|
procs
|
2022-07-05 16:00:15 +00:00
|
|
|
plocate
|
2022-11-08 20:27:38 +00:00
|
|
|
lsd
|
2022-07-06 20:46:17 +00:00
|
|
|
age
|
2023-01-07 19:28:32 +00:00
|
|
|
lsd
|
2022-05-25 12:50:35 +00:00
|
|
|
];
|
2022-07-02 18:20:21 +00:00
|
|
|
# Nix Garbage Collector
|
|
|
|
nix.gc = {
|
|
|
|
automatic = true;
|
|
|
|
dates = "weekly";
|
|
|
|
options = "--delete-older-than 7d";
|
|
|
|
};
|
|
|
|
|
2022-05-25 12:50:35 +00:00
|
|
|
}
|