Files
nixos/home/gui/default.nix
T

37 lines
440 B
Nix
Raw Normal View History

2022-05-25 00:15:11 -05:00
{ pkgs, ... }:
2022-04-29 10:58:31 -05:00
{
imports = [
./chat.nix
2022-09-14 00:06:00 -05:00
./gnome.nix
2022-04-29 10:58:31 -05:00
./firefox.nix
./terminal.nix
];
2022-05-25 00:15:11 -05:00
home.packages = with pkgs; [
2022-11-10 08:43:06 -06:00
bazel
bazel-buildtools
2022-11-10 11:58:49 -06:00
bitwarden
2022-11-14 14:30:10 -06:00
cargo # Rustc
2022-11-10 08:43:06 -06:00
cdrtools
ffmpeg
2022-11-14 14:30:10 -06:00
gcc
2022-11-10 12:21:59 -06:00
gnucash
2022-11-14 14:30:10 -06:00
go
2022-10-04 11:13:55 -05:00
gopls
2022-11-10 13:04:04 -06:00
handbrake
2022-11-10 08:43:06 -06:00
jdk11
libtheora
2022-11-14 14:30:10 -06:00
onlyoffice-bin
2022-08-19 10:17:23 -05:00
synology-drive-client
2022-11-10 14:10:22 -06:00
vlc
2022-11-10 08:43:06 -06:00
x265
2022-10-10 11:49:30 -05:00
zoom-us
2022-11-14 10:36:00 -06:00
] ++ ( if pkgs.system != "x86_64-darwin" then
2022-09-07 20:01:51 -05:00
[
2022-11-01 08:35:06 -05:00
jellyfin-media-player
2022-09-14 00:06:00 -05:00
nextcloud-client
2022-11-14 23:49:23 -06:00
] else []
2022-09-07 20:01:51 -05:00
);
2022-04-29 10:58:31 -05:00
}