21 lines
346 B
Nix
21 lines
346 B
Nix
{ inputs, config, pkgs, ... }:
|
|
|
|
{
|
|
programs = {
|
|
firefox = {
|
|
enable = true;
|
|
languagePacks = [
|
|
"en-GB"
|
|
];
|
|
policies = {
|
|
"DisplayMenuBar" = true;
|
|
};
|
|
profiles.default = import ./firefox-profile.nix // {
|
|
id = 0;
|
|
name = "default";
|
|
isDefault = true;
|
|
};
|
|
};
|
|
};
|
|
}
|