mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 00:29:43 -04:00
done for now, need to fix extensions
This commit is contained in:
parent
d9c856f73e
commit
7f83e9d606
2 changed files with 12 additions and 8 deletions
|
|
@ -35,6 +35,7 @@
|
||||||
|
|
||||||
gui = {
|
gui = {
|
||||||
wm.hyprland.enable = true;
|
wm.hyprland.enable = true;
|
||||||
|
|
||||||
browser = {
|
browser = {
|
||||||
firefox.enable = true;
|
firefox.enable = true;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@ in
|
||||||
passff-host
|
passff-host
|
||||||
];
|
];
|
||||||
profiles = {
|
profiles = {
|
||||||
"${config.user.name}" = {
|
"default" = {
|
||||||
bookmarks = config.user.bookmarks;
|
bookmarks = config.user.bookmarks;
|
||||||
|
|
||||||
search = {
|
search = {
|
||||||
|
|
@ -34,38 +34,41 @@ in
|
||||||
Personal = {
|
Personal = {
|
||||||
color = "blue";
|
color = "blue";
|
||||||
icon = "fingerprint";
|
icon = "fingerprint";
|
||||||
id = 0;
|
id = 1;
|
||||||
};
|
};
|
||||||
Work = {
|
Work = {
|
||||||
color = "yellow";
|
color = "yellow";
|
||||||
icon = "briefcase";
|
icon = "briefcase";
|
||||||
id = 1;
|
id = 2;
|
||||||
};
|
};
|
||||||
Banking = {
|
Banking = {
|
||||||
color = "green";
|
color = "green";
|
||||||
icon = "dollar";
|
icon = "dollar";
|
||||||
id = 2;
|
id = 3;
|
||||||
};
|
};
|
||||||
Social = {
|
Social = {
|
||||||
color = "red";
|
color = "red";
|
||||||
icon = "chill";
|
icon = "chill";
|
||||||
id = 3;
|
id = 4;
|
||||||
};
|
};
|
||||||
Shopping = {
|
Shopping = {
|
||||||
color = "purple";
|
color = "purple";
|
||||||
icon = "cart";
|
icon = "cart";
|
||||||
id = 4;
|
id = 5;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
"ui.key.menuAcessKeyFocuses" = false;
|
"layout.spellcheckDefault" = 0;
|
||||||
|
"ui.key.menuAccessKeyFocuses" = false;
|
||||||
"signon.rememberSignons" = false;
|
"signon.rememberSignons" = false;
|
||||||
"extensions.pocket.enabled" = false;
|
"extensions.pocket.enabled" = false;
|
||||||
|
"extensions.autoDisableScopes" = 0;
|
||||||
|
|
||||||
# May break extensions due to Nix
|
# May break extensions due to Nix
|
||||||
"extensions.enabledScopes" = 5;
|
"extensions.enabledScopes" = 5;
|
||||||
|
|
||||||
# May break stuff but increase privacy
|
# May break stuff but increases privacy
|
||||||
#"extensions.webextensions.restrictedDomains" = "";
|
#"extensions.webextensions.restrictedDomains" = "";
|
||||||
#"privacy.resistFingerprinting" = true;
|
#"privacy.resistFingerprinting" = true;
|
||||||
#"privacy.resistFingerprinting.letterboxing" = true;
|
#"privacy.resistFingerprinting.letterboxing" = true;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue