22 lines
411 B
Nix
22 lines
411 B
Nix
{ lib, pkgs, isNixOS ? true, ... }:
|
|
lib.mkIf pkgs.stdenv.isLinux {
|
|
home.packages = with pkgs; [
|
|
imv
|
|
xdg-utils
|
|
] ++ lib.optionals isNixOS [
|
|
vesktop
|
|
thunar
|
|
thunar-volman
|
|
thunar-shares-plugin
|
|
thunar-vcs-plugin
|
|
thunar-archive-plugin
|
|
thunar-media-tags-plugin
|
|
pavucontrol
|
|
zathura
|
|
gpu-screen-recorder
|
|
gpu-screen-recorder-gtk
|
|
inetutils
|
|
easyeffects
|
|
];
|
|
}
|