From a074a5a65280fffd5086d3309340d62c6ce47452 Mon Sep 17 00:00:00 2001 From: 514fpv <koishi@514fpv.one> Date: Tue, 16 Jan 2024 17:30:12 +0800 Subject: [PATCH] fix(sway): add --unsupported-gpu conditionally Sway refuses to run with nvidia drivers loaded. --- home/sway/nixos.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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"