diff --git a/_hosts/argon/configuration.nix b/_hosts/argon/configuration.nix index 825c213..ffe86cc 100644 --- a/_hosts/argon/configuration.nix +++ b/_hosts/argon/configuration.nix @@ -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 ]; diff --git a/_hosts/bromine/configuration.nix b/_hosts/bromine/configuration.nix index a4512fa..de79b93 100644 --- a/_hosts/bromine/configuration.nix +++ b/_hosts/bromine/configuration.nix @@ -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 = [ ... ]; diff --git a/flake.nix b/flake.nix index 70901e3..9f3f228 100644 --- a/flake.nix +++ b/flake.nix @@ -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";