2025-11-17 12:12:17 -05:00
|
|
|
{ lib, pkgs, isNixOS ? true, ... }:
|
|
|
|
|
lib.mkIf pkgs.stdenv.isLinux {
|
2026-03-23 20:21:52 -04:00
|
|
|
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
|
|
|
}
|