Files
nix-config-v2/home/packages/linux.nix

16 lines
280 B
Nix
Raw Normal View History

2025-11-17 12:12:17 -05:00
{ lib, pkgs, isNixOS ? true, ... }:
lib.mkIf pkgs.stdenv.isLinux {
home.packages = with pkgs; [
imv
xdg-utils
] ++ lib.optionals isNixOS [
vesktop
xfce.thunar
pavucontrol
zathura
gpu-screen-recorder
gpu-screen-recorder-gtk
inetutils
];
2024-10-31 22:56:43 -04:00
}