diff options
author | Simon Parri <simonparri@ganzeria.com> | 2025-07-14 14:45:24 +0200 |
---|---|---|
committer | Simon Parri <simonparri@ganzeria.com> | 2025-07-14 14:45:24 +0200 |
commit | 013df108ae78405983e6ae1110ba20eaf3c8656e (patch) | |
tree | 8ecbd00b9137263ff26f0514c0a35587e2d4f0d7 /modules | |
parent | fb2aaa7d641025dbabca258a3ca8d14a72925c8d (diff) | |
download | nixos-config-013df108ae78405983e6ae1110ba20eaf3c8656e.tar.gz nixos-config-013df108ae78405983e6ae1110ba20eaf3c8656e.zip |
modules/gui: Add xclip to 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 ccf1c50..de649e6 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 xorg.xdpyinfo ]; + default = with pkgs; [ xorg.xmodmap xorg.xkbcomp xorg.xdpyinfo xclip ]; }; }; |