Test extensions

This commit is contained in:
Patrick Menking 2024-09-18 07:08:26 -04:00
parent 0b0b786cb5
commit a78ea7813f
2 changed files with 26 additions and 24 deletions

View file

@ -6,6 +6,7 @@
home-manager.url = "github:nix-community/home-manager";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
hyprland.url = "git+https://github.com/hyprwm/Hyprland?submodules=1";
firefox-addons.url = "gitlab:ryceee/nur-expressions?dir=pkgs/firefox-addons";
};
outputs = inputs: let

View file

@ -253,29 +253,30 @@
bind -n M-Down select-pane -D
'';
};
firefox = {
enable = true;
policies = {
BlockAboutConfig = true;
DisableFirefoxStudies = true;
DisableFormHistory = true;
DisablePasswordReveal = true;
DisablePocket = true;
DisableProfileImport = true;
DontCheckDefaultBrowser = true;
EnableTrackingProtection = {
Value = true;
Locked = true;
Cryptomining = true;
Fingerprinting = true;
};
Homepage = {
URL = "https://home.wanderingcrow.net";
StartPage = "homepage";
};
OfferToSaveLogins = false;
PasswordManagerEnabled = false;
};
};
firefox = {
enable = true;
policies = {
BlockAboutConfig = true;
DisableFirefoxStudies = true;
DisableFormHistory = true;
DisablePasswordReveal = true;
DisablePocket = true;
DisableProfileImport = true;
DontCheckDefaultBrowser = true;
EnableTrackingProtection = {
Value = true;
Locked = true;
Cryptomining = true;
Fingerprinting = true;
};
Homepage = {
URL = "https://home.wanderingcrow.net";
StartPage = "homepage";
};
OfferToSaveLogins = false;
PasswordManagerEnabled = false;
};
profiles.profiles.crow.extensions = with inpits.firefox-addons; [ bitwarden-password-manager ublock-origin ];
};
};
}