30 lines
412 B
Nix
30 lines
412 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
|
||
|
htop
|
||
|
];
|
||
|
# Nix Garbage Collector
|
||
|
nix.gc = {
|
||
|
automatic = true;
|
||
|
dates = "weekly";
|
||
|
options = "--delete-older-than 7d";
|
||
|
};
|
||
|
|
||
|
}
|