remove some clipboard stuff

This commit is contained in:
Reid 2024-04-15 18:37:09 -07:00
parent c56cd0bf0f
commit 3aadb5d551
2 changed files with 2 additions and 8 deletions

View file

@ -23,8 +23,6 @@ in {
modules.desktop.fonts.baseFonts = true;
}
(mkIf (cfg.envProto == "wayland") {
hm.home.packages = with pkgs; [ wl-clipboard-x11 ];
environment.sessionVariables = {
# magic, dont ask
NIXOS_OZONE_WL = "1";
@ -39,8 +37,6 @@ in {
};
})
(mkIf (cfg.envProto == "x11") {
hm.home.packages = with pkgs; [ xclip ];
services.xserver.excludePackages = [ pkgs.xterm ];
})
];