Compare commits
No commits in common. "0bfd4cd84b6436aa9fb10df9d356d8a596db801c" and "91736b76e25cced9173d2a920a420234a8a38b84" have entirely different histories.
0bfd4cd84b
...
91736b76e2
4 changed files with 25 additions and 31 deletions
|
@ -3,7 +3,7 @@
|
|||
(url "https://git.savannah.gnu.org/git/guix.git")
|
||||
(branch "master")
|
||||
(commit
|
||||
"07cd046c209f192032b425d2ee44f6025bff63a1")
|
||||
"2a6d96425eea57dc6dd48a2bec16743046e32e06")
|
||||
(introduction
|
||||
(make-channel-introduction
|
||||
"9edb3f66fd807b096b48283debdcddccfea34bad"
|
||||
|
@ -25,7 +25,7 @@
|
|||
(url "https://g.freya.cat/freya/sakura")
|
||||
(branch "main")
|
||||
(commit
|
||||
"7f6febcaeca567fc636e6560e002878701ed5f15")
|
||||
"92bd36b305b5899f3111be238e91050967673b8f")
|
||||
(introduction
|
||||
(make-channel-introduction
|
||||
"8fb2f9c2fa414754c41c1c73665e3e73e12693ab"
|
||||
|
|
|
@ -36,10 +36,7 @@ plugin {
|
|||
|
||||
decoration {
|
||||
rounding = $radius
|
||||
|
||||
shadow {
|
||||
enabled = true
|
||||
}
|
||||
drop_shadow = yes
|
||||
|
||||
blur {
|
||||
enabled = true
|
||||
|
|
|
@ -50,6 +50,7 @@
|
|||
; desktop programs
|
||||
"gnome-keyring"
|
||||
"gimp"
|
||||
"ungoogled-chromium"
|
||||
"steam"
|
||||
"nautilus"
|
||||
"cage"
|
||||
|
|
|
@ -14,6 +14,8 @@
|
|||
programs.firefox = {
|
||||
enable = true;
|
||||
|
||||
package = (nixGL pkgs.firefox);
|
||||
|
||||
policies = {
|
||||
EnableTrackingProtection = {
|
||||
Value = true;
|
||||
|
@ -69,7 +71,6 @@
|
|||
};
|
||||
|
||||
# Disable Password Manager
|
||||
DisableMasterPasswordCreation = true;
|
||||
PasswordManagerEnabled = false;
|
||||
PrimaryPassword = false;
|
||||
OfferToSaveLogins = false;
|
||||
|
@ -196,9 +197,6 @@
|
|||
Value = " about:home";
|
||||
Status = "locked";
|
||||
};
|
||||
# autofill
|
||||
"browser.autofill.enabled" = lock-false;
|
||||
"browser.formfill.enable" = lock-false;
|
||||
# search enable
|
||||
"browser.urlbar.suggest.recentsearches" = lock-true;
|
||||
"browser.urlbar.suggest.bookmark" = lock-true;
|
||||
|
@ -233,6 +231,13 @@
|
|||
# graphics
|
||||
"dom.webgpu.enabled" = lock-true;
|
||||
"media.eme.enabled" = lock-true;
|
||||
# tabs
|
||||
"browser.tabs.inTitlebar" = {
|
||||
Value = 0;
|
||||
Status = "locked";
|
||||
};
|
||||
"browser.tabs.warnOnClose" = lock-true;
|
||||
"browser.tabs.firefox-view" = lock-false;
|
||||
# user messaging
|
||||
"browser.newtabpage.activity-stream.feeds.section.topstories" = lock-false;
|
||||
"browser.newtabpage.activity-stream.feeds.snippets" = lock-false;
|
||||
|
@ -250,38 +255,29 @@
|
|||
"browser.safebrowsing.downloads.remote.block_uncommon" = lock-false;
|
||||
"browser.safebrowsing.downloads.remote.block_potentially_unwanted" = lock-false;
|
||||
# sidebar
|
||||
"browser.tabs.inTitlebar" = {
|
||||
Value = 0;
|
||||
Status = "locked";
|
||||
};
|
||||
"browser.tabs.warnOnClose" = lock-true;
|
||||
"browser.tabs.firefox-view" = lock-false;
|
||||
"sidebar.revamp" = {
|
||||
Comment = "Preference not allowed for stability reasons.";
|
||||
Status = "default";
|
||||
Type = "boolean";
|
||||
Value = true;
|
||||
};
|
||||
"sidebar.revamp" = lock-true;
|
||||
"sidebar.verticalTabs" = lock-true;
|
||||
"sidebar.main.tools" = {
|
||||
Value = "";
|
||||
Status = "locked";
|
||||
};
|
||||
"browser.tabs.closeTabByDblclick" = lock-true;
|
||||
"ui.key.menuAccessKeyFocuses" = lock-false;
|
||||
# general settings
|
||||
"general.autoScroll" = lock-false;
|
||||
"general.smoothScroll" = lock-true;
|
||||
"widget.gtk.overlay-scrollbars.enabled" = lock-false;
|
||||
"accessibility.browsewithcaret" = lock-false;
|
||||
"accessibility.typeaheadfind" = lock-false;
|
||||
"media.hardwaremediakeys.enabled" = lock-true;
|
||||
"browser.crashReports.unsubmittedCheck.autoSubmit2" = lock-false;
|
||||
"browser.aboutConfig.showWarning" = lock-false;
|
||||
};
|
||||
};
|
||||
|
||||
profiles = {
|
||||
"freya" = {
|
||||
settings = {
|
||||
# general settings
|
||||
"general.autoScroll" = lock-false;
|
||||
"general.smoothScroll" = lock-true;
|
||||
"widget.gtk.overlay-scrollbars.enabled" = lock-false;
|
||||
"accessibility.browsewithcaret" = lock-false;
|
||||
"accessibility.typeaheadfind" = lock-false;
|
||||
"media.hardwaremediakeys.enabled" = lock-true;
|
||||
"browser.crashReports.unsubmittedCheck.autoSubmit2" = lock-false;
|
||||
};
|
||||
search = {
|
||||
force = true;
|
||||
default = "DuckDuckGo";
|
||||
|
|
Loading…
Reference in a new issue