nixos-config/modules/common.nix

31 lines
423 B
Nix
Raw Normal View History

2023-07-15 17:07:55 +00:00
{ config, pkgs, ...}:
{
#environment.variables.EDITOR = "nvim";
environment.systemPackages = with pkgs; [
gitAndTools.gitFull
unzip
zip
tmux
lshw
bc
2023-07-28 18:10:45 +00:00
neovim
2023-07-15 17:07:55 +00:00
ncdu
nixos-option
bat
procs
plocate
lsd
age
lsd
htop
2023-12-05 20:12:19 +00:00
wezterm
2023-07-15 17:07:55 +00:00
];
# Nix Garbage Collector
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 7d";
};
}