We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
You know just like the README of vscode server repository.
{ imports = [ (fetchTarball "https://github.com/nix-community/nixos-vscode-server/tarball/master") ]; services.vscode-server.enable = true; }
{ inputs.vscode-server.url = "github:nix-community/nixos-vscode-server"; outputs = { self, nixpkgs, vscode-server }: { nixosConfigurations.yourhostname = nixpkgs.lib.nixosSystem { modules = [ vscode-server.nixosModules.default ({ config, pkgs, ... }: { services.vscode-server.enable = true; }) ]; }; }; }
I don't know how to add this package to my system permanently. And these installation scripts seem a bit imperative rather than declarative.
This may seem unnecessary but i think anything that reduces friction to setting up a feature is a good thing.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
You know just like the README of vscode server repository.
Install as a tarball
Install as a flake
I don't know how to add this package to my system permanently. And these installation scripts seem a bit imperative rather than declarative.
This may seem unnecessary but i think anything that reduces friction to setting up a feature is a good thing.
The text was updated successfully, but these errors were encountered: