Compare commits

..

No commits in common. "0bfd4cd84b6436aa9fb10df9d356d8a596db801c" and "91736b76e25cced9173d2a920a420234a8a38b84" have entirely different histories.

4 changed files with 25 additions and 31 deletions

View file

@ -3,7 +3,7 @@
(url "https://git.savannah.gnu.org/git/guix.git") (url "https://git.savannah.gnu.org/git/guix.git")
(branch "master") (branch "master")
(commit (commit
"07cd046c209f192032b425d2ee44f6025bff63a1") "2a6d96425eea57dc6dd48a2bec16743046e32e06")
(introduction (introduction
(make-channel-introduction (make-channel-introduction
"9edb3f66fd807b096b48283debdcddccfea34bad" "9edb3f66fd807b096b48283debdcddccfea34bad"
@ -25,7 +25,7 @@
(url "https://g.freya.cat/freya/sakura") (url "https://g.freya.cat/freya/sakura")
(branch "main") (branch "main")
(commit (commit
"7f6febcaeca567fc636e6560e002878701ed5f15") "92bd36b305b5899f3111be238e91050967673b8f")
(introduction (introduction
(make-channel-introduction (make-channel-introduction
"8fb2f9c2fa414754c41c1c73665e3e73e12693ab" "8fb2f9c2fa414754c41c1c73665e3e73e12693ab"

View file

@ -36,10 +36,7 @@ plugin {
decoration { decoration {
rounding = $radius rounding = $radius
drop_shadow = yes
shadow {
enabled = true
}
blur { blur {
enabled = true enabled = true

View file

@ -50,6 +50,7 @@
; desktop programs ; desktop programs
"gnome-keyring" "gnome-keyring"
"gimp" "gimp"
"ungoogled-chromium"
"steam" "steam"
"nautilus" "nautilus"
"cage" "cage"

View file

@ -14,6 +14,8 @@
programs.firefox = { programs.firefox = {
enable = true; enable = true;
package = (nixGL pkgs.firefox);
policies = { policies = {
EnableTrackingProtection = { EnableTrackingProtection = {
Value = true; Value = true;
@ -69,7 +71,6 @@
}; };
# Disable Password Manager # Disable Password Manager
DisableMasterPasswordCreation = true;
PasswordManagerEnabled = false; PasswordManagerEnabled = false;
PrimaryPassword = false; PrimaryPassword = false;
OfferToSaveLogins = false; OfferToSaveLogins = false;
@ -196,9 +197,6 @@
Value = " about:home"; Value = " about:home";
Status = "locked"; Status = "locked";
}; };
# autofill
"browser.autofill.enabled" = lock-false;
"browser.formfill.enable" = lock-false;
# search enable # search enable
"browser.urlbar.suggest.recentsearches" = lock-true; "browser.urlbar.suggest.recentsearches" = lock-true;
"browser.urlbar.suggest.bookmark" = lock-true; "browser.urlbar.suggest.bookmark" = lock-true;
@ -233,6 +231,13 @@
# graphics # graphics
"dom.webgpu.enabled" = lock-true; "dom.webgpu.enabled" = lock-true;
"media.eme.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 # user messaging
"browser.newtabpage.activity-stream.feeds.section.topstories" = lock-false; "browser.newtabpage.activity-stream.feeds.section.topstories" = lock-false;
"browser.newtabpage.activity-stream.feeds.snippets" = 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_uncommon" = lock-false;
"browser.safebrowsing.downloads.remote.block_potentially_unwanted" = lock-false; "browser.safebrowsing.downloads.remote.block_potentially_unwanted" = lock-false;
# sidebar # sidebar
"browser.tabs.inTitlebar" = { "sidebar.revamp" = lock-true;
Value = 0; "sidebar.verticalTabs" = lock-true;
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.main.tools" = { "sidebar.main.tools" = {
Value = ""; Value = "";
Status = "locked"; Status = "locked";
}; };
"browser.tabs.closeTabByDblclick" = lock-true; "browser.tabs.closeTabByDblclick" = lock-true;
"ui.key.menuAccessKeyFocuses" = lock-false; "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 = { profiles = {
"freya" = { "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 = { search = {
force = true; force = true;
default = "DuckDuckGo"; default = "DuckDuckGo";