flake/homes/modules/firefox.nix
2025-02-11 15:47:56 +10:00

13 lines
191 B
Nix
Executable file

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