mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-04-22 16:58:31 +02:00
20 lines
345 B
Nix
20 lines
345 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}: {
|
|
|
|
|
|
home.packages = with pkgs; [
|
|
swaybg # the wallpaper
|
|
wl-clipboard # copying and pasting
|
|
hyprpicker # color picker
|
|
|
|
hyprshot # screen shot
|
|
wf-recorder # screen recording
|
|
|
|
# audio
|
|
alsa-utils # provides amixer/alsamixer/...
|
|
networkmanagerapplet # provide GUI app: nm-connection-editor
|
|
];
|
|
}
|