diff --git a/hosts/canopus/default.nix b/hosts/canopus/default.nix index 3bc6d67..f4e8f75 100755 --- a/hosts/canopus/default.nix +++ b/hosts/canopus/default.nix @@ -57,7 +57,7 @@ hardware = { bluetooth.enable = true; bluetooth.powerOnBoot = true; - opengl.driSupport32Bit = true; + graphics.enable32Bit = true; }; security = { @@ -129,9 +129,10 @@ layout = "in"; variant = "eng"; }; - libinput.touchpad.naturalScrolling = true; }; + libinput.touchpad.naturalScrolling = true; + # To use Auto-cpufreq we need to # disable TLP because it's enabled by nixos-hardware tlp.enable = false; diff --git a/hosts/canopus/home.nix b/hosts/canopus/home.nix index a82bee9..177e377 100644 --- a/hosts/canopus/home.nix +++ b/hosts/canopus/home.nix @@ -18,7 +18,7 @@ }; qt.enable = true; - qt.platformTheme = "gtk"; + qt.platformTheme.name = "gtk"; qt.style.name = "adwaita-dark"; qt.style.package = pkgs.adwaita-qt; diff --git a/modules/home-manager/shell/default.nix b/modules/home-manager/shell/default.nix index e60a339..cb7a0bf 100755 --- a/modules/home-manager/shell/default.nix +++ b/modules/home-manager/shell/default.nix @@ -7,7 +7,7 @@ ls = "lsd"; }; syntaxHighlighting.enable = true; - enableAutosuggestions = true; + autosuggestion.enable = true; initExtra = '' nitch export WINIT_X11_SCALE_FACTOR=1 @@ -44,7 +44,6 @@ bore-cli fast-cli gdu - nvtop zip unzip pciutils diff --git a/modules/nixos/steam.nix b/modules/nixos/steam.nix index 5bcd6ae..1931b0d 100644 --- a/modules/nixos/steam.nix +++ b/modules/nixos/steam.nix @@ -3,5 +3,5 @@ enable = true; }; - hardware.opengl.driSupport32Bit = true; + hardware.graphics.enable32Bit = true; }