nixos-config/modules/common.nix

29 lines
401 B
Nix
Raw Normal View History

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
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
];
# Nix Garbage Collector
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 7d";
};
2022-05-25 12:50:35 +00:00
}