From a8892e2fb2a12554dc4dc1a5667c343417b30814 Mon Sep 17 00:00:00 2001 From: h7x4 Date: Tue, 27 Jan 2026 04:00:48 +0900 Subject: [PATCH] hosts/various: bump `stateVersion` --- hosts/brzeczyszczykiewicz/configuration.nix | 2 +- hosts/georg/configuration.nix | 2 +- hosts/shark/configuration.nix | 2 +- hosts/skrott/configuration.nix | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/hosts/brzeczyszczykiewicz/configuration.nix b/hosts/brzeczyszczykiewicz/configuration.nix index 43c1f9f..4c637b1 100644 --- a/hosts/brzeczyszczykiewicz/configuration.nix +++ b/hosts/brzeczyszczykiewicz/configuration.nix @@ -17,5 +17,5 @@ # Don't change (even during upgrades) unless you know what you are doing. # See https://search.nixos.org/options?show=system.stateVersion - system.stateVersion = "23.05"; + system.stateVersion = "25.11"; } diff --git a/hosts/georg/configuration.nix b/hosts/georg/configuration.nix index 405f900..05082d4 100644 --- a/hosts/georg/configuration.nix +++ b/hosts/georg/configuration.nix @@ -32,5 +32,5 @@ # Don't change (even during upgrades) unless you know what you are doing. # See https://search.nixos.org/options?show=system.stateVersion - system.stateVersion = "23.05"; + system.stateVersion = "25.11"; } diff --git a/hosts/shark/configuration.nix b/hosts/shark/configuration.nix index 5036782..c53a220 100644 --- a/hosts/shark/configuration.nix +++ b/hosts/shark/configuration.nix @@ -15,5 +15,5 @@ # Don't change (even during upgrades) unless you know what you are doing. # See https://search.nixos.org/options?show=system.stateVersion - system.stateVersion = "23.05"; + system.stateVersion = "25.11"; } diff --git a/hosts/skrott/configuration.nix b/hosts/skrott/configuration.nix index e1d5fe1..a4d9869 100644 --- a/hosts/skrott/configuration.nix +++ b/hosts/skrott/configuration.nix @@ -96,11 +96,11 @@ }; # https://github.com/NixOS/nixpkgs/issues/84105 - boot.kernelParams = [ + boot.kernelParams = lib.mkIf (!config.virtualisation.isVmVariant) [ "console=ttyUSB0,9600" # "console=tty1" # Already part of the module ]; - systemd.services."serial-getty@ttyUSB0" = { + systemd.services."serial-getty@ttyUSB0" = lib.mkIf (!config.virtualisation.isVmVariant) { enable = true; wantedBy = [ "getty.target" ]; # to start at boot serviceConfig.Restart = "always"; # restart when session is closed