Add default firefox profile for dragyx/common
This commit is contained in:
parent
62b1ada84c
commit
8bb6866ade
1 changed files with 19 additions and 0 deletions
|
@ -1,5 +1,8 @@
|
||||||
{ config, pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
let
|
||||||
|
username = config.modules.other.system.username;
|
||||||
|
in
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
../../../options/common/pin-registry.nix
|
../../../options/common/pin-registry.nix
|
||||||
|
@ -15,5 +18,21 @@
|
||||||
localuser = null;
|
localuser = null;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
home-manager.users.${username} = {
|
||||||
|
programs.firefox.profiles = {
|
||||||
|
main = {
|
||||||
|
id = 0;
|
||||||
|
isDefault = true;
|
||||||
|
search.default = "DuckDuckGo";
|
||||||
|
extensions = with pkgs.nur.repos.rycee.firefox-addons; [
|
||||||
|
ublock-origin
|
||||||
|
bitwarden
|
||||||
|
darkreader
|
||||||
|
maya-dark
|
||||||
|
];
|
||||||
|
search.force = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue