13 lines
191 B
Nix
Executable file
13 lines
191 B
Nix
Executable file
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
programs.firefox = {
|
|
enable = true;
|
|
policies = {
|
|
#BlockAboutConfig = true;
|
|
DefaultDownloadDirectory = "\${home}/downloads";
|
|
};
|
|
};
|
|
}
|