summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorSimon Parri <simonparri@ganzeria.com>2025-06-06 11:48:38 -0500
committerSimon Parri <simonparri@ganzeria.com>2025-06-06 11:48:38 -0500
commite5dabe1f612b2efda79a2296733340da6cf7c9bc (patch)
treeaf687314b7ee8d8fc336e8aa7b0f2a68b7969125 /modules
parent1c19fbdd88b075c31bea3ca26d408da1ef3e637c (diff)
downloadnixos-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.nix2
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 ];
};
};