dotfiles/common/users/homeModules/web.nix

14 lines
158 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; [
2025-02-18 15:58:22 -05:00
firefox-beta
2025-02-04 01:51:05 -05:00
vlc
2025-02-13 15:21:20 -05:00
unstable.brave
2025-02-04 01:51:05 -05:00
];
};
}