diff --git a/home/sway/nixos.nix b/home/sway/nixos.nix index 7bf782f5..6e09b3af 100644 --- a/home/sway/nixos.nix +++ b/home/sway/nixos.nix @@ -3,6 +3,7 @@ , config , ... }: with lib; let gui = with config.global.gui; ( enable && session ); + nvidia = with config.global.gui; ( type == "nvidia" || type == "prime" ); in mkIf gui { services.xserver.displayManager.sessionPackages = [ (pkgs.writeTextFile { @@ -21,7 +22,7 @@ in mkIf gui { for profile in ''${(z)NIX_PROFILES}; do fpath+=($profile/share/zsh/site-functions $profile/share/zsh/$ZSH_VERSION/functions $profile/share/zsh/vendor-completions) done - exec sway --unsupported-gpu + exec sway ${if nvidia then "--unsupported-gpu" else ""} ''; checkPhase = '' ${pkgs.stdenv.shellDryRun} "$target"