13 lines
126 B
Nix
13 lines
126 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
git
|
|
vim
|
|
htop
|
|
tmux
|
|
fastfetch
|
|
inxi
|
|
];
|
|
}
|