diff options
author | Simon Parri <simonparri@ganzeria.com> | 2025-06-06 11:48:38 -0500 |
---|---|---|
committer | Simon Parri <simonparri@ganzeria.com> | 2025-06-06 11:48:38 -0500 |
commit | e5dabe1f612b2efda79a2296733340da6cf7c9bc (patch) | |
tree | af687314b7ee8d8fc336e8aa7b0f2a68b7969125 /modules | |
parent | 1c19fbdd88b075c31bea3ca26d408da1ef3e637c (diff) | |
download | nixos-config-e5dabe1f612b2efda79a2296733340da6cf7c9bc.tar.gz nixos-config-e5dabe1f612b2efda79a2296733340da6cf7c9bc.zip |
modules/gui: Add xdpyinfo to installed X packages
Diffstat (limited to 'modules')
-rw-r--r-- | modules/gui.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gui.nix b/modules/gui.nix index 376afb5..ccf1c50 100644 --- a/modules/gui.nix +++ b/modules/gui.nix @@ -5,7 +5,7 @@ this.gui.enable = lib.mkEnableOption "GUI"; this.gui.extraPackages = lib.mkOption { type = with lib.types; listOf package; - default = with pkgs; [ xorg.xmodmap xorg.xkbcomp ]; + default = with pkgs; [ xorg.xmodmap xorg.xkbcomp xorg.xdpyinfo ]; }; }; |