Skip to main content

NixOS

Befehle

Apps suchen unter https://search.nixos.org/packages

nix-shell -p bitwardenzum installieren von Bitwarden 
nix-env --install bitwardeninstalliert 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