some more fixes

This commit is contained in:
Dennis Schoepf 2026-03-04 01:14:15 +01:00
parent c855979239
commit 23de7e39b4
3 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ inputs, ... }:
{
flake.modules.nixos.clipboard =
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
wl-clipboard
cliphist
];
home-manager.sharedModules = [
inputs.self.modules.homeManager.clipboard
];
};
flake.modules.homeManager.clipboard =
{ pkgs, ... }:
{
# Watch clipboard and store history via cliphist
services.cliphist.enable = true;
};
}