Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 884cbc5d5d6e
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0608d78f3c0c
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Jan 9, 2020

  1. nixos/sway: add programs.sway.extraOptions

    gnidorah authored and primeos committed Jan 9, 2020

    Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    ad8a430 View commit details

Commits on Jan 11, 2020

  1. Merge pull request #76437 from gnidorah/sway

    nixos/sway: add programs.sway.extraOptions
    primeos authored Jan 11, 2020

    Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    0608d78 View commit details
Showing with 20 additions and 3 deletions.
  1. +16 −0 nixos/modules/programs/sway.nix
  2. +4 −3 pkgs/applications/window-managers/sway/wrapper.nix
16 changes: 16 additions & 0 deletions nixos/modules/programs/sway.nix
Original file line number Diff line number Diff line change
@@ -28,6 +28,7 @@ let

swayPackage = pkgs.sway.override {
extraSessionCommands = cfg.extraSessionCommands;
extraOptions = cfg.extraOptions;
withBaseWrapper = cfg.wrapperFeatures.base;
withGtkWrapper = cfg.wrapperFeatures.gtk;
};
@@ -67,6 +68,21 @@ in {
'';
};

extraOptions = mkOption {
type = types.listOf types.str;
default = [];
example = [
"--verbose"
"--debug"
"--unsupported-gpu"
"--my-next-gpu-wont-be-nvidia"
];
description = ''
Command line arguments passed to launch Sway. Please DO NOT report
issues if you use an unsupported GPU (proprietary drivers).
'';
};

extraPackages = mkOption {
type = with types; listOf package;
default = with pkgs; [
7 changes: 4 additions & 3 deletions pkgs/applications/window-managers/sway/wrapper.nix
Original file line number Diff line number Diff line change
@@ -3,6 +3,7 @@
, makeWrapper, symlinkJoin, writeShellScriptBin
, withBaseWrapper ? true, extraSessionCommands ? "", dbus
, withGtkWrapper ? false, wrapGAppsHook, gdk-pixbuf
, extraOptions ? [] # E.g.: [ "--verbose" ]
}:

assert extraSessionCommands != "" -> withBaseWrapper;
@@ -39,9 +40,9 @@ in symlinkJoin {
export dontWrapGApps=true
${optionalString withGtkWrapper "wrapGAppsHook"}
wrapProgram $out/bin/sway \
--prefix PATH : "${swaybg}/bin" ${optionalString withGtkWrapper ''\
"''${gappsWrapperArgs[@]}"
''}
--prefix PATH : "${swaybg}/bin" \
${optionalString withGtkWrapper ''"''${gappsWrapperArgs[@]}"''} \
${optionalString (extraOptions != []) "${concatMapStrings (x: " --add-flags " + x) extraOptions}"}
'';

passthru.providedSessions = [ "sway" ];