14 lines
140 B
Nix
14 lines
140 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
vim
|
||
|
git
|
||
|
wget
|
||
|
curl
|
||
|
tree
|
||
|
python3
|
||
|
lm_sensors
|
||
|
];
|
||
|
}
|