Merge branch 'main' of github.com:bloxx12/nichts
This commit is contained in:
commit
2ce76d5cfa
4 changed files with 44 additions and 4 deletions
|
@ -20,7 +20,7 @@
|
|||
vesktop.enable = true;
|
||||
btop.enable = true;
|
||||
mpv.enable = true;
|
||||
schizofox.enable = true;
|
||||
schizofox.enable = false;
|
||||
|
||||
zsh = {
|
||||
enable = true;
|
||||
|
@ -46,7 +46,11 @@
|
|||
enable = true;
|
||||
extensions = {
|
||||
"support@lastpass.com" = {
|
||||
install_url = "https://addons.mozilla.org/de/firefox/addon/lastpass-password-manager/";
|
||||
install_url = "https://addons.mozilla.org/firefox/downloads/file/4246455/lastpass_password_manager-4.127.0.1.xpi";
|
||||
installation_mode = "force_installed";
|
||||
};
|
||||
"newtaboverride@agenedia.com" = {
|
||||
install_url = "https://addons.mozilla.org/firefox/downloads/file/4231522/new_tab_override-16.0.0.xpi";
|
||||
installation_mode = "force_installed";
|
||||
};
|
||||
};
|
||||
|
@ -65,7 +69,7 @@
|
|||
size = 24;
|
||||
};
|
||||
gtk = {
|
||||
enable = false;
|
||||
enable = true;
|
||||
package = pkgs.catppuccin-gtk;
|
||||
name = "Catppuccin-Mocha-Standard-Green-Dark";
|
||||
variant = "mocha";
|
||||
|
@ -76,7 +80,7 @@
|
|||
};
|
||||
};
|
||||
qt = {
|
||||
enable = false;
|
||||
enable = true;
|
||||
package = pkgs.catppuccin-kde;
|
||||
name = "Catppuccin-Mocha-Dark";
|
||||
variant = "mocha";
|
||||
|
|
|
@ -83,6 +83,7 @@ in {
|
|||
"$mod SHIFT, m, exit"
|
||||
", F11, exec, pamixer -d 2"
|
||||
", F12, exec, pamixer -i 2"
|
||||
"$mod, d, exec, wofi --show drun"
|
||||
|
||||
# Application
|
||||
"$mod SHIFT, c, exec, code --enable-features=UseOzonePlatform --ozone-platform=wayland --disable-gpu"
|
||||
|
|
|
@ -53,6 +53,7 @@ in {
|
|||
slurp
|
||||
wl-clipboard
|
||||
pavucontrol
|
||||
wofi
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -16,7 +16,41 @@ in {
|
|||
home-manager.users.${username} = {
|
||||
programs.firefox = {
|
||||
enable = true;
|
||||
|
||||
policies = {
|
||||
DisableTelemetry = true;
|
||||
DisableFirefoxStudies = true;
|
||||
EnableTrackingProtection = {
|
||||
Value= true;
|
||||
Locked = true;
|
||||
Cryptomining = true;
|
||||
Fingerprinting = true;
|
||||
};
|
||||
DisablePocket = true;
|
||||
DisableFirefoxAccounts = true;
|
||||
DisableAccounts = true;
|
||||
DisableFirefoxScreenshots = true;
|
||||
OverrideFirstRunPage = "";
|
||||
OverridePostUpdatePage = "";
|
||||
DontCheckDefaultBrowser = true;
|
||||
DisplayBookmarksToolbar = "never"; # alternatives: "always" or "newtab"
|
||||
DisplayMenuBar = "default-off"; # alternatives: "always", "never" or "default-on"
|
||||
SearchBar = "unified"; # alternative: "separate"
|
||||
FirefoxSuggest = {
|
||||
WebSuggestions = true;
|
||||
ImproveSuggest = true;
|
||||
Locked = true;
|
||||
};
|
||||
SearchSuggestEnabled = true;
|
||||
theme = {
|
||||
colors = {
|
||||
background-darker = "181825";
|
||||
background = "1e1e2e";
|
||||
foreground = "cdd6f4";
|
||||
};
|
||||
};
|
||||
|
||||
font = "Lexend";
|
||||
ExtensionSettings = lib.mkMerge [{
|
||||
"uBlock0@raymondhill.net" = {
|
||||
install_url = "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue