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 b4d3b06fbf
commit 9e6bc604f3

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
];
};
}