17 lines
297 B
Nix
17 lines
297 B
Nix
{ lib, pkgs, isNixOS ? true, ... }:
|
|
lib.mkIf pkgs.stdenv.isLinux {
|
|
home.packages = with pkgs; [
|
|
imv
|
|
xdg-utils
|
|
] ++ lib.optional isNixOS [
|
|
betterdiscordctl
|
|
vesktop
|
|
xfce.thunar
|
|
pavucontrol
|
|
godot
|
|
aseprite
|
|
gpu-screen-recorder
|
|
gpu-screen-recorder-gtk
|
|
];
|
|
}
|