mirror of
https://github.com/srid/nixos-config.git
synced 2025-12-27 15:54:58 +08:00
11 lines
320 B
Nix
11 lines
320 B
Nix
# A server for (remote) development purposes.
|
|
{ pkgs, inputs, ... }: {
|
|
imports = [
|
|
inputs.nixos-vscode-server.nixosModules.system
|
|
];
|
|
environment.systemPackages = with pkgs; [
|
|
nodejs-14_x # Need this for https://nixos.wiki/wiki/Vscode server
|
|
wget
|
|
];
|
|
services.auto-fix-vscode-server.enable = true;
|
|
}
|