mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-01-11 12:30:23 +01:00
21 lines
362 B
Nix
21 lines
362 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
|
|
home.packages = with pkgs; [
|
|
swaybg # the wallpaper
|
|
wl-clipboard # copying and pasting
|
|
hyprpicker # color picker
|
|
brightnessctl
|
|
|
|
hyprshot # screen shot
|
|
wf-recorder # screen recording
|
|
|
|
# audio
|
|
alsa-utils # provides amixer/alsamixer/...
|
|
networkmanagerapplet # provide GUI app: nm-connection-editor
|
|
];
|
|
}
|