Files
dotfiles/home-modules/pkgs-list/programs.nix
Lennart J. Kurzweg (Nx2) 9d28a08cd4 spotify
2025-09-30 00:04:09 +02:00

15 lines
253 B
Nix

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