summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Parri <simonparri@ganzeria.com>2025-07-14 14:45:24 +0200
committerSimon Parri <simonparri@ganzeria.com>2025-07-14 14:45:24 +0200
commit013df108ae78405983e6ae1110ba20eaf3c8656e (patch)
tree8ecbd00b9137263ff26f0514c0a35587e2d4f0d7
parentfb2aaa7d641025dbabca258a3ca8d14a72925c8d (diff)
downloadnixos-config-013df108ae78405983e6ae1110ba20eaf3c8656e.tar.gz
nixos-config-013df108ae78405983e6ae1110ba20eaf3c8656e.zip
modules/gui: Add xclip to packages
-rw-r--r--modules/gui.nix2
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 ];
};
};