NixOS on WSL updates

This commit is contained in:
Greg Hellings
2022-12-24 00:36:36 -06:00
parent 75b1f637a0
commit 50238c7fba
9 changed files with 124 additions and 87 deletions
+8 -7
View File
@@ -3,15 +3,12 @@
{
imports = [
./chat.nix
./gnome.nix
./firefox.nix
./terminal.nix
];
home.packages = with pkgs; [
bazel
bazel-buildtools
bitwarden
cargo # Rustc
cdrtools
ffmpeg
@@ -22,15 +19,19 @@
handbrake
jdk11
libtheora
onlyoffice-bin
synology-drive-client
vlc
x265
zoom-us
] ++ ( if pkgs.system != "x86_64-darwin" then
] ++ ( if ( pkgs.system != "x86_64-darwin" && pkgs.system != "aarch64-linux" ) then
[
jellyfin-media-player
nextcloud-client
] else []
) ++ ( if ( pkgs.system != "aarch64-linux" ) then
[
bitwarden
onlyoffice-bin
synology-drive-client
zoom-us
] else []
);
}