diff --git a/hosts/skrot/configuration.nix b/hosts/skrot/configuration.nix index 64ad337..e2241b7 100644 --- a/hosts/skrot/configuration.nix +++ b/hosts/skrot/configuration.nix @@ -14,6 +14,8 @@ (fp /base) ]; + boot.consoleLogLevel = 0; + sops.defaultSopsFile = fp /secrets/skrot/skrot.yaml; systemd.network.networks."enp2s0" = values.defaultNetworkConfig // { @@ -51,5 +53,11 @@ }; }; + 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 + }; + system.stateVersion = "25.11"; # Did you read the comment? Nah bro }