Compare commits

..

3 commits

Author SHA1 Message Date
0bfd4cd84b
update channels 2024-11-13 12:43:47 -05:00
9c3bb13183
fix hyprland config, remove chromeium 2024-11-13 12:43:39 -05:00
7e8c1dc81f
change firefox settings 2024-11-13 12:43:29 -05:00
4 changed files with 31 additions and 25 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
"2a6d96425eea57dc6dd48a2bec16743046e32e06") "07cd046c209f192032b425d2ee44f6025bff63a1")
(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
"92bd36b305b5899f3111be238e91050967673b8f") "7f6febcaeca567fc636e6560e002878701ed5f15")
(introduction (introduction
(make-channel-introduction (make-channel-introduction
"8fb2f9c2fa414754c41c1c73665e3e73e12693ab" "8fb2f9c2fa414754c41c1c73665e3e73e12693ab"

View file

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

View file

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

View file

@ -14,8 +14,6 @@
programs.firefox = { programs.firefox = {
enable = true; enable = true;
package = (nixGL pkgs.firefox);
policies = { policies = {
EnableTrackingProtection = { EnableTrackingProtection = {
Value = true; Value = true;
@ -71,6 +69,7 @@
}; };
# Disable Password Manager # Disable Password Manager
DisableMasterPasswordCreation = true;
PasswordManagerEnabled = false; PasswordManagerEnabled = false;
PrimaryPassword = false; PrimaryPassword = false;
OfferToSaveLogins = false; OfferToSaveLogins = false;
@ -197,6 +196,9 @@
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;
@ -231,13 +233,6 @@
# 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;
@ -255,29 +250,38 @@
"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
"sidebar.revamp" = lock-true; "browser.tabs.inTitlebar" = {
"sidebar.verticalTabs" = lock-true; 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.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";