nix-config/home/programs/web/firefox.nix

13 lines
125 B
Nix
Raw Normal View History

2025-03-27 14:59:12 +01:00
{
pkgs,
config,
username,
...
2025-09-03 10:03:29 +02:00
}:
{
programs.firefox = {
enable = false;
profiles.${username} = { };
};
2025-03-27 14:59:12 +01:00
}