Add vscodium configuration

This commit is contained in:
Greg Hellings
2023-08-23 14:03:13 -05:00
committed by greg-compass
parent ba6a4e3694
commit 50223fb8f7
4 changed files with 30 additions and 22 deletions
+8 -20
View File
@@ -12,7 +12,9 @@ in
./firefox.nix
];
home.packages = with pkgs; [
# These packages are Linux only
home.packages = with pkgs; ( excludes ["x86_64-darwin" "aarch64-darwin"]
[
cdrtools
ffmpeg
handbrake
@@ -20,34 +22,20 @@ in
makemkv
vlc
x265
] ++
]) ++
# Items that cannot be outside of x86_64-linux at all
# x86_64-linux only
( excludes ["x86_64-darwin" "aarch64-darwin" "aarch64-linux"]
[
bitwarden
endeavour
gnucash
jellyfin-media-player
libreoffice
logseq
nextcloud-client
]) ++
# 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
( excludes ["aarch64-linux"]
[
bitwarden
onlyoffice-bin
synology-drive-client
zoom-us
]) ++
( excludes ["aarch64-darwin" "x86_64-darwin"]
[
gnucash
]);
}