diff --git a/machines/Behemoth/configuration.nix b/machines/Behemoth/configuration.nix index 3c70b57..7ea7386 100644 --- a/machines/Behemoth/configuration.nix +++ b/machines/Behemoth/configuration.nix @@ -5,10 +5,8 @@ ./hardware-configuration.nix ]; - services = { - cron.enable = false; - gnome3.gnome-terminal-server.enable = true; - }; + services.cron.enable = false; + programs.gnome-terminal.enable = true; networking.dhcpcd.extraConfig = "noarp"; diff --git a/machines/Behemoth/hardware-configuration.nix b/machines/Behemoth/hardware-configuration.nix index e4e26b7..b8bf8ef 100644 --- a/machines/Behemoth/hardware-configuration.nix +++ b/machines/Behemoth/hardware-configuration.nix @@ -33,7 +33,7 @@ hardware = { firmware = with pkgs; [ firmwareLinuxNonfree ]; enableAllFirmware = true; - enableKSM = true; + ksm.enable = true; opengl = { driSupport = true; extraPackages = with pkgs; [ libvdpau-va-gl vaapiVdpau ];