nixos-config/modules/common.nix

27 lines
385 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
exa
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
}