NixOS
Befehle
Apps suchen unter https://search.nixos.org/packages
nix-shell -p bitwarden | zum installieren von Bitwarden | |
nix-env --install bitwarden | installiert Bitwarden im System permanent |
Programme Dauerhaft installieren
sudo nano /etc/nixos/configuration.nix
Füge das Programm hinzu
environment.systemPackages = with pkgs; {
htop
# andere Pakete hier hinzufügen
}
Aktualisiere die NixOs-Konfiguration
sudo nixos-rebuild switch
No Comments