diff --git a/README.md b/README.md index f837b41..daea395 100644 --- a/README.md +++ b/README.md @@ -150,7 +150,7 @@ nix-channel --add https://github.com/nix-community/home-manager/archive/release- nix-channel --update # Konfiguration anwenden -nixos-rebuild switch +nixos-rebuild switch --option experimental-features "nix-command flakes" reboot ``` diff --git a/config/configuration.nix b/config/configuration.nix index 9d82e4a..a13996c 100644 --- a/config/configuration.nix +++ b/config/configuration.nix @@ -1,7 +1,8 @@ { config, pkgs, ... }: { - imports = [ # Include the results of the hardware scan. + imports = [ + # Include the results of the hardware scan. ./hardware-configuration.nix ./common.nix ./mounts.nix @@ -11,12 +12,12 @@ ]; - # Home Manager Konfiguration + # Home Manager configuration home-manager.useGlobalPkgs = true; home-manager.useUserPackages = true; home-manager.backupFileExtension = "backup"; - # NixOS Version (nicht ändern nach Erstinstallation) + # NixOS Version (don't change after first installation) system.stateVersion = "25.11"; nixpkgs.config.allowUnfree = true;