dotfiles/common/users/homeModules/web.nix

18 lines
249 B
Nix
Raw Normal View History

2025-02-04 01:51:05 -05:00
{ pkgs, ... }:
{
2025-02-13 15:21:20 -05:00
imports = [
./unstable.nix
];
2025-02-04 01:51:05 -05:00
home = {
packages = with pkgs; [
firefox-devedition
google-chrome
thunderbird
jellyfin-web
jellyfin-media-player
vlc
2025-02-13 15:21:20 -05:00
unstable.brave
2025-02-04 01:51:05 -05:00
];
};
}