29 lines
401 B
Nix
29 lines
401 B
Nix
{ config, pkgs, ...}:
|
|
{
|
|
environment.variables.EDITOR = "nvim";
|
|
environment.systemPackages = with pkgs; [
|
|
gitAndTools.gitFull
|
|
unzip
|
|
zip
|
|
tmux
|
|
lshw
|
|
bc
|
|
neovim
|
|
ncdu
|
|
nixos-option
|
|
bat
|
|
procs
|
|
plocate
|
|
lsd
|
|
age
|
|
lsd
|
|
];
|
|
# Nix Garbage Collector
|
|
nix.gc = {
|
|
automatic = true;
|
|
dates = "weekly";
|
|
options = "--delete-older-than 7d";
|
|
};
|
|
|
|
}
|