mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 02:33:25 +00:00
2a71e7815e
dwm is not in Java's internal list of non-reparrenting window managers. Running Java GUI programs without this variable on window managers (eg. jd-gui) causes the window to be blank.
59 lines
1.2 KiB
Nix
59 lines
1.2 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.services.xserver.windowManager.dwm;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
###### interface
|
|
|
|
options = {
|
|
services.xserver.windowManager.dwm = {
|
|
enable = mkEnableOption (lib.mdDoc "dwm");
|
|
package = mkOption {
|
|
type = types.package;
|
|
default = pkgs.dwm;
|
|
defaultText = literalExpression "pkgs.dwm";
|
|
example = literalExpression ''
|
|
pkgs.dwm.overrideAttrs (oldAttrs: rec {
|
|
patches = [
|
|
(super.fetchpatch {
|
|
url = "https://dwm.suckless.org/patches/steam/dwm-steam-6.2.diff";
|
|
sha256 = "sha256-f3lffBjz7+0Khyn9c9orzReoLTqBb/9gVGshYARGdVc=";
|
|
})
|
|
];
|
|
})
|
|
'';
|
|
description = lib.mdDoc ''
|
|
dwm package to use.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
|
|
###### implementation
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
services.xserver.windowManager.session = singleton
|
|
{ name = "dwm";
|
|
start =
|
|
''
|
|
export _JAVA_AWT_WM_NONREPARENTING=1
|
|
dwm &
|
|
waitPID=$!
|
|
'';
|
|
};
|
|
|
|
environment.systemPackages = [ cfg.package ];
|
|
|
|
};
|
|
|
|
}
|