From 8e00178c0ea06ea0db64d2ba02000ffeb717e4ab Mon Sep 17 00:00:00 2001 From: MayNiklas Date: Thu, 9 May 2024 18:19:45 +0200 Subject: [PATCH] kora: add sg module --- machines/kora/configuration.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/machines/kora/configuration.nix b/machines/kora/configuration.nix index dd533e5f..11a86561 100644 --- a/machines/kora/configuration.nix +++ b/machines/kora/configuration.nix @@ -75,6 +75,8 @@ ssh = { user = "root"; host = "192.168.5.21"; }; }; + boot.kernelModules = [ "sg" ]; + nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; system.stateVersion = "20.09";