14 lines
194 B
Nix
14 lines
194 B
Nix
|
{ config, pkgs, ...}:
|
||
|
{
|
||
|
environment.variables.EDITOR = "nvim";
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
gitAndTools.gitFull
|
||
|
unzip
|
||
|
zip
|
||
|
tmux
|
||
|
lshw
|
||
|
bc
|
||
|
neovim
|
||
|
];
|
||
|
}
|