refactor: move wl-clipboard to system packages

This commit is contained in:
Mohammad Rafiq 2025-04-01 22:13:21 +08:00
parent 68b562feac
commit f6e775bbd9
No known key found for this signature in database

View file

@ -1,4 +1,5 @@
{ pkgs, inputs, ... }:
with pkgs;
{
imports = [
./programs/ags.nix
@ -17,9 +18,12 @@
./hardware/bluetooth.nix
];
home-manager.users.rafiq.home.packages = with pkgs; [
environment.systemPackages = [
wl-clipboard
];
home-manager.users.rafiq.home.packages = [
hyprpicker
inputs.hyprcloser.packages.${pkgs.stdenv.hostPlatform.system}.default
wl-clipboard # provides cli copy and paste commands
];
}