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
|
2026-07-12 15:31:27 -04:00
|
|
|
thunar
|
|
|
|
|
thunar-volman
|
|
|
|
|
thunar-shares-plugin
|
|
|
|
|
thunar-vcs-plugin
|
|
|
|
|
thunar-archive-plugin
|
|
|
|
|
thunar-media-tags-plugin
|
2026-03-23 20:21:52 -04:00
|
|
|
pavucontrol
|
|
|
|
|
zathura
|
|
|
|
|
gpu-screen-recorder
|
|
|
|
|
gpu-screen-recorder-gtk
|
|
|
|
|
inetutils
|
2026-04-08 19:53:03 -04:00
|
|
|
easyeffects
|
2026-03-23 20:21:52 -04:00
|
|
|
];
|
2024-10-31 22:56:43 -04:00
|
|
|
}
|