Files
nixos/home/gui/default.nix
T

49 lines
747 B
Nix
Raw Normal View History

2022-05-25 00:15:11 -05:00
{ pkgs, ... }:
2022-04-29 10:58:31 -05:00
2023-05-02 01:05:57 -05:00
let
excludes = systems: opts: (
if ( builtins.all (x: pkgs.system != x) systems ) then opts else []
);
in
2022-04-29 10:58:31 -05:00
{
imports = [
./chat.nix
./firefox.nix
];
2022-05-25 00:15:11 -05:00
home.packages = with pkgs; [
2022-11-10 08:43:06 -06:00
cdrtools
ffmpeg
2022-11-10 12:21:59 -06:00
gnucash
2022-11-10 13:04:04 -06:00
handbrake
2022-11-10 08:43:06 -06:00
libtheora
2022-11-10 14:10:22 -06:00
vlc
2022-11-10 08:43:06 -06:00
x265
2023-05-02 01:05:57 -05:00
] ++
2023-05-02 01:16:29 -05:00
# Items that cannot be outside of x86_64-linux at all
2023-05-02 01:05:57 -05:00
( excludes ["x86_64-darwin" "aarch64-darwin" "aarch64-linux"]
[
endeavour
jellyfin-media-player
libreoffice
logseq
nextcloud-client
]) ++
2023-05-02 01:16:29 -05:00
# Items that just cannot be outside of x86_64 at all
( excludes ["aarch64-darwin" "aarch64-linux"]
[
synology-drive-client
]) ++
# Items that are not supported on ARM/Linux
2023-05-02 01:05:57 -05:00
( excludes ["aarch64-linux"]
[
bitwarden
onlyoffice-bin
zoom-us
]);
2022-04-29 10:58:31 -05:00
}