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

17 lines
297 B
Nix
Raw Normal View History

2025-11-17 12:12:17 -05:00
{ lib, pkgs, isNixOS ? true, ... }:
lib.mkIf pkgs.stdenv.isLinux {
2025-10-31 17:07:59 -04:00
home.packages = with pkgs; [
2024-10-31 22:56:43 -04:00
imv
2025-11-17 12:12:17 -05:00
xdg-utils
] ++ lib.optional isNixOS [
2024-10-31 22:56:43 -04:00
betterdiscordctl
vesktop
xfce.thunar
pavucontrol
2025-06-27 00:05:28 -04:00
godot
aseprite
gpu-screen-recorder
gpu-screen-recorder-gtk
2025-10-31 17:07:59 -04:00
];
2024-10-31 22:56:43 -04:00
}