flake/homes/modules/apps/firefox.nix
2026-02-22 13:01:00 +10:00

13 lines
191 B
Nix
Executable file

{
config,
pkgs,
...
}: {
programs.firefox = {
enable = true;
policies = {
#BlockAboutConfig = true;
DefaultDownloadDirectory = "\${home}/downloads";
};
};
}