10 lines
246 B
Nix
10 lines
246 B
Nix
{ pkgs, ... }:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
file
|
|
lm_sensors # TODO: this shouldn't be installed on cloud nodes
|
|
nodejs_20 # TODO: this is for one job on nomad, it should just be a dependency there
|
|
neovim
|
|
];
|
|
}
|