Files
dotfiles/home-modules/pkgs-list/programs.nix
Lennart J. Kurzweg (Nx2) d6d4a1f3b5 refactor
2025-06-18 15:31:01 +02:00

17 lines
283 B
Nix

{ pkgs, hyper, ... }: {
home.packages = with pkgs; [
chromium
element-desktop
mpv
qbittorrent
unstable.spotify
wl-clipboard
xfce.thunar
] ++ (if (hyper.host != "NxACE") then [
signal-desktop
obsidian
zoom-us
inkscape
] else []);
}