dotfiles/common/users/homeModules/web.nix
2025-02-18 15:58:22 -05:00

13 lines
158 B
Nix

{ pkgs, ... }:
{
imports = [
./unstable.nix
];
home = {
packages = with pkgs; [
firefox-beta
vlc
unstable.brave
];
};
}