dotfiles/common/users/homeModules/web.nix
2025-02-13 15:21:20 -05:00

17 lines
249 B
Nix

{ pkgs, ... }:
{
imports = [
./unstable.nix
];
home = {
packages = with pkgs; [
firefox-devedition
google-chrome
thunderbird
jellyfin-web
jellyfin-media-player
vlc
unstable.brave
];
};
}