VS Code server stuff

This commit is contained in:
Matthew Bessette 2024-07-25 18:21:22 -04:00
parent ffeabaa1c3
commit b39568d106
3 changed files with 7 additions and 3 deletions

View File

@ -12,7 +12,7 @@
boot.loader.efi.canTouchEfiVariables = true;
boot.initrd.luks.devices."luks-e9ee8166-a569-4bfc-9ada-fb2b718d9ad5".device = "/dev/disk/by-uuid/e9ee8166-a569-4bfc-9ada-fb2b718d9ad5";
networking.hostName = "nixos"; # Define your hostname.
networking.hostName = "argon"; # Define your hostname.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
# Configure network proxy if necessary
@ -104,7 +104,8 @@
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
vim
vim
nodejs_22
# wget
];

View File

@ -14,7 +14,7 @@
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
networking.hostName = "nixos"; # Define your hostname.
networking.hostName = "bromine"; # Define your hostname.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
# Configure network proxy if necessary
@ -86,6 +86,8 @@
enable = true;
};
services.vscode-server.enable = true;
# Open ports in the firewall.
# networking.firewall.allowedTCPPorts = [ ... ];
# networking.firewall.allowedUDPPorts = [ ... ];

View File

@ -4,6 +4,7 @@
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
vscode-server.url = "github:nix-community/nixos-vscode-server";
home-manager = {
url = "github:nix-community/home-manager";