13 lines
147 B
Nix
13 lines
147 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
nix-output-monitor
|
|
vim
|
|
htop
|
|
wget
|
|
git
|
|
pciutils
|
|
];
|
|
}
|