this repo has no description
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

yeah

+20 -4
+2
users/modules/firefox/default.nix
··· 17 17 lockPref("privacy.clearOnShutdown.history", false); 18 18 lockPref("privacy.clearOnShutdown.offlineApps", false); 19 19 lockPref("privacy.clearOnShutdown.sessions", false); 20 + lockPref("privacy.clearOnShutdown.cookies", false); 20 21 lockPref("services.sync.engine.passwords", false); 21 22 ''; 22 23 extraPolicies = { ··· 48 49 ] 49 50 ++ (with myExtensions; [ 50 51 catppuccin-mocha-sky 52 + youtube-disable-number-seek 51 53 ]); 52 54 profiles = { 53 55 default = {
+2 -1
users/modules/firefox/extensions.json
··· 1 1 [ 2 - {"slug":"catppuccin-mocha-sky"} 2 + {"slug":"catppuccin-mocha-sky"}, 3 + {"slug":"youtube-disable-number-seek"} 3 4 ]
+12
users/modules/firefox/extensions.nix
··· 15 15 platforms = platforms.all; 16 16 }; 17 17 }; 18 + "youtube-disable-number-seek" = buildFirefoxXpiAddon { 19 + pname = "youtube-disable-number-seek"; 20 + version = "1.1"; 21 + addonId = "{963aa3d4-c342-4dfe-872e-76be742d1bea}"; 22 + url = "https://addons.mozilla.org/firefox/downloads/file/3592479/youtube_disable_number_seek-1.1.xpi"; 23 + sha256 = "28075f68438242615cbe857e52c3ae1f661447c7d066d4ef4e5076b44efad07a"; 24 + meta = with lib; { 25 + description = "Disables 0-9 keyboard shortcuts on YouTube which seek to different times on a video."; 26 + license = licenses.mpl20; 27 + platforms = platforms.all; 28 + }; 29 + }; 18 30 }
+1 -1
users/modules/hyprland/default.nix
··· 24 24 wl-copy = "${pkgs.wl-clipboard}/bin/wl-copy"; 25 25 notify-date = with pkgs; 26 26 writers.writeBash "notify-date" '' 27 - ${libnotify}/bin/notify-send " $(${coreutils}/bin/date +'%H:%M %d/%m/%Y')" 27 + ${libnotify}/bin/notify-send -t 1000 " $(${coreutils}/bin/date +'%H:%M %d/%m/%Y')" 28 28 ''; 29 29 in '' 30 30 # should be configured per-profile
+2 -1
users/modules/wezterm/default.nix
··· 21 21 default_cursor_style = "BlinkingBar", 22 22 enable_wayland = true, 23 23 enable_tab_bar = false, 24 - colors = catppuccin 24 + colors = catppuccin, 25 + window_background_opacity = 0.85 25 26 } 26 27 ''; 27 28 "wezterm/colors/catppuccin.lua".source = builtins.fetchurl {
+1 -1
users/patriot/default.nix
··· 182 182 sessionVariables = 183 183 nixosConfig.environment.sessionVariables 184 184 // l.optionalAttrs config.programs.fzf.enable { 185 - FZF_DEFAULT_OPTS = "--color=bg+:#302D41,bg:#1E1E2E,spinner:#F8BD96,hl:#F28FAD --color=fg:#D9E0EE,header:#F28FAD,info:#DDB6F2,pointer:#F8BD96 --color=marker:#F8BD96,fg+:#F2CDCD,prompt:#DDB6F2,hl+:#F28FAD"; 185 + FZF_DEFAULT_OPTS = "--color=spinner:#F8BD96,hl:#F28FAD --color=fg:#D9E0EE,header:#F28FAD,info:#DDB6F2,pointer:#F8BD96 --color=marker:#F8BD96,fg+:#F2CDCD,prompt:#DDB6F2,hl+:#F28FAD"; 186 186 }; 187 187 }; 188 188 programs = {