mirror of
https://github.com/srid/nixos-config.git
synced 2025-12-27 07:44:58 +08:00
6 lines
184 B
Nix
6 lines
184 B
Nix
# A server for (remote) development purposes.
|
|
{ pkgs, ... }: {
|
|
environment.systemPackages = with pkgs; [
|
|
nodejs-14_x # Need this for https://nixos.wiki/wiki/Vscode server
|
|
];
|
|
}
|