nixos/home/sway/nixos.nix
514fpv a074a5a652
fix(sway): add --unsupported-gpu conditionally
Sway refuses to run with nvidia drivers loaded.
2024-01-16 17:30:12 +08:00

39 lines
1.2 KiB
Nix

{ pkgs
, lib
, 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 {
name = "sway-session";
destination = "/share/wayland-sessions/sway.desktop";
text = ''
[Desktop Entry]
Name=Sway
Comment=An i3-compatible Wayland compositor
Exec=${pkgs.writeTextFile {
name = "sway-wrapper";
executable = true;
text = ''
#!${pkgs.zsh}/bin/zsh
SHLVL=0
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 ${if nvidia then "--unsupported-gpu" else ""}
'';
checkPhase = ''
${pkgs.stdenv.shellDryRun} "$target"
'';
}}
Type=Application
'';
} // { providedSessions = [ pkgs.sway.meta.mainProgram ]; })
];
security.pam.services.swaylock = { };
programs.light.enable = true;
}