home: x: add 'xsel' package

I like it better than 'xclip'.
This commit is contained in:
Bruno BELANYI 2021-05-12 21:36:30 +02:00
parent 684dac5904
commit ec73ed2f10

View file

@ -1,4 +1,4 @@
{ config, lib, ... }:
{ config, lib, pkgs, ... }:
let
cfg = config.my.home.x;
in
@ -14,5 +14,9 @@ in
config = lib.mkIf cfg.enable {
xsession.enable = true;
home.packages = with pkgs; [
xsel
];
};
}