mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-11 20:25:32 +03:00
104 lines
2.7 KiB
Nix
104 lines
2.7 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.programs.dwl;
|
|
in
|
|
{
|
|
options.programs.dwl = {
|
|
enable = lib.mkEnableOption ''
|
|
Dwl is a compact, hackable compositor for Wayland based on wlroots.
|
|
You can manually launch Dwl by executing "exec dwl" on a TTY.
|
|
'';
|
|
|
|
package = lib.mkPackageOption pkgs "dwl" {
|
|
example = ''
|
|
# Lets apply bar patch from:
|
|
# https://codeberg.org/dwl/dwl-patches/src/branch/main/patches/bar
|
|
(pkgs.dwl.override {
|
|
configH = ./dwl-config.h;
|
|
}).overrideAttrs (oldAttrs: {
|
|
buildInputs =
|
|
oldAttrs.buildInputs or []
|
|
++ [
|
|
pkgs.libdrm
|
|
pkgs.fcft
|
|
];
|
|
patches = oldAttrs.patches or [] ++ [
|
|
./bar-0.7.patch
|
|
];
|
|
});
|
|
'';
|
|
};
|
|
|
|
extraSessionCommands = lib.mkOption {
|
|
default = "";
|
|
type = lib.types.lines;
|
|
description = ''
|
|
Shell commands executed just before dwl is started.
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
environment.systemPackages = [ cfg.package ];
|
|
|
|
# Create systemd target for dwl session
|
|
systemd.user.targets.dwl-session = {
|
|
description = "dwl compositor session";
|
|
documentation = [ "man:systemd.special(7)" ];
|
|
bindsTo = [ "graphical-session.target" ];
|
|
wants = [ "graphical-session-pre.target" ];
|
|
after = [ "graphical-session-pre.target" ];
|
|
};
|
|
|
|
# Create wrapper script for dwl
|
|
environment.etc."xdg/dwl-session" = {
|
|
text = ''
|
|
#!${pkgs.runtimeShell}
|
|
# Import environment variables
|
|
${cfg.extraSessionCommands}
|
|
# Setup systemd user environment
|
|
systemctl --user import-environment DISPLAY WAYLAND_DISPLAY
|
|
systemctl --user start dwl-session.target
|
|
# Start dwl
|
|
exec ${lib.getExe cfg.package}
|
|
'';
|
|
mode = "0755"; # Make it executable
|
|
};
|
|
|
|
# Create desktop entry for display managers
|
|
services.displayManager.sessionPackages =
|
|
let
|
|
dwlDesktopFile = pkgs.writeTextFile {
|
|
name = "dwl-desktop-entry";
|
|
destination = "/share/wayland-sessions/dwl.desktop";
|
|
text = ''
|
|
[Desktop Entry]
|
|
Name=dwl
|
|
Comment=Dynamic window manager for Wayland
|
|
Exec=/etc/xdg/dwl-session
|
|
Type=Application
|
|
'';
|
|
};
|
|
|
|
dwlSession = pkgs.symlinkJoin {
|
|
name = "dwl-session";
|
|
paths = [ dwlDesktopFile ];
|
|
passthru.providedSessions = [ "dwl" ];
|
|
};
|
|
in
|
|
[ dwlSession ];
|
|
|
|
# Configure XDG portal for dwl (minimal configuration)
|
|
xdg.portal.config.dwl.default = lib.mkDefault [
|
|
"wlr"
|
|
"gtk"
|
|
];
|
|
};
|
|
|
|
meta.maintainers = with lib.maintainers; [ gurjaka ];
|
|
}
|