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
The user parameter is used in most modules. For this to be multi-user we need to dynamically set the value of the user based on nixosSystem.
user
nixosSystem
Example: sudo nixos-rebuild switch --flake .#desktop This would set user = calvo;
sudo nixos-rebuild switch --flake .#desktop
user = calvo;
sudo nixos-rebuild switch --flake .#adonis This would set user = adonis;
sudo nixos-rebuild switch --flake .#adonis
user = adonis;
Right now the workaround is to set the variable manually
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The
user
parameter is used in most modules. For this to be multi-user we need to dynamically set the value of theuser
based onnixosSystem
.Example:
sudo nixos-rebuild switch --flake .#desktop
This would set
user = calvo;
sudo nixos-rebuild switch --flake .#adonis
This would set
user = adonis;
Right now the workaround is to set the variable manually
The text was updated successfully, but these errors were encountered: