Merge branch 'main' of github.com:bloxx12/nichts

This commit is contained in:
vali 2024-04-13 21:22:49 +02:00
commit 2ce76d5cfa
4 changed files with 44 additions and 4 deletions

View file

@ -20,7 +20,7 @@
vesktop.enable = true; vesktop.enable = true;
btop.enable = true; btop.enable = true;
mpv.enable = true; mpv.enable = true;
schizofox.enable = true; schizofox.enable = false;
zsh = { zsh = {
enable = true; enable = true;
@ -46,7 +46,11 @@
enable = true; enable = true;
extensions = { extensions = {
"support@lastpass.com" = { "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"; installation_mode = "force_installed";
}; };
}; };
@ -65,7 +69,7 @@
size = 24; size = 24;
}; };
gtk = { gtk = {
enable = false; enable = true;
package = pkgs.catppuccin-gtk; package = pkgs.catppuccin-gtk;
name = "Catppuccin-Mocha-Standard-Green-Dark"; name = "Catppuccin-Mocha-Standard-Green-Dark";
variant = "mocha"; variant = "mocha";
@ -76,7 +80,7 @@
}; };
}; };
qt = { qt = {
enable = false; enable = true;
package = pkgs.catppuccin-kde; package = pkgs.catppuccin-kde;
name = "Catppuccin-Mocha-Dark"; name = "Catppuccin-Mocha-Dark";
variant = "mocha"; variant = "mocha";

View file

@ -83,6 +83,7 @@ in {
"$mod SHIFT, m, exit" "$mod SHIFT, m, exit"
", F11, exec, pamixer -d 2" ", F11, exec, pamixer -d 2"
", F12, exec, pamixer -i 2" ", F12, exec, pamixer -i 2"
"$mod, d, exec, wofi --show drun"
# Application # Application
"$mod SHIFT, c, exec, code --enable-features=UseOzonePlatform --ozone-platform=wayland --disable-gpu" "$mod SHIFT, c, exec, code --enable-features=UseOzonePlatform --ozone-platform=wayland --disable-gpu"

View file

@ -53,6 +53,7 @@ in {
slurp slurp
wl-clipboard wl-clipboard
pavucontrol pavucontrol
wofi
]; ];
}; };
} }

View file

@ -16,7 +16,41 @@ in {
home-manager.users.${username} = { home-manager.users.${username} = {
programs.firefox = { programs.firefox = {
enable = true; enable = true;
policies = { 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 [{ ExtensionSettings = lib.mkMerge [{
"uBlock0@raymondhill.net" = { "uBlock0@raymondhill.net" = {
install_url = "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi"; install_url = "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi";