13 lines
174 B
Nix
13 lines
174 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
htop
|
|
wget
|
|
curl
|
|
git
|
|
tree
|
|
];
|
|
|
|
services.openssh.enable = true;
|
|
}
|