Update for 25.05

This commit is contained in:
Bun 2025-05-28 18:19:50 -04:00
parent 8bfcca1bb8
commit 63c42b081d
12 changed files with 193 additions and 209 deletions

View file

@ -21,7 +21,7 @@
};
};
extensions = with pkgs.nur.repos.rycee.firefox-addons; [
extensions.packages = with pkgs.nur.repos.rycee.firefox-addons; [
bitwarden
darkreader
return-youtube-dislikes
@ -33,16 +33,16 @@
search = {
force = true;
default = "Ecosia";
default = "ecosia";
order = [
"Ecosia"
"NixPKGs"
"MyNixOS"
"YouTube"
"Spotify"
"ecosia"
"nixpkgs"
"mynixos"
"youtube"
"spotify"
];
engines = {
"Ecosia" = {
"ecosia" = {
urls = [{
template = "https://www.ecosia.org/search";
params = [{
@ -53,7 +53,7 @@
definedAliases = [ "@e" ];
};
"NixPKGs" = {
"nixpkgs" = {
urls = [{
template = "https://search.nixos.org/packages";
params = [
@ -70,7 +70,7 @@
definedAliases = [ "@p" ];
};
"MyNixOS" = {
"mynixos" = {
urls = [{
template = "https://mynixos.com/search";
params = [{
@ -81,7 +81,7 @@
definedAliases = [ "@my" ];
};
"YouTube" = {
"youtube" = {
urls = [{
template = "https://www.youtube.com/results";
params = [{
@ -92,7 +92,7 @@
definedAliases = [ "@y" ];
};
"Spotify" = {
"spotify" = {
urls = [{ template = "https://open.spotify.com/search/{searchTerms}"; }];
definedAliases = [ "@s" ];
};

View file

@ -1,11 +1,11 @@
{ config, lib, pkgsStable, ... }:
{ config, lib, pkgs, ... }:
{
programs.ranger = {
enable = true;
package = pkgsStable.ranger;
#package = pkgs.ranger;
settings = {
preview_images = true;
preview_images_method = "sixel";
#preview_images_method = "sixel";
dirname_in_tabs = true;
autosave_bookmarks = false;
show_hidden = true;
@ -118,9 +118,6 @@
P:${XDG_NETWORK_DIR}/Midas/Photos
'';
};
packages = with pkgsStable; [
imagemagick
poppler_utils
];
packages = with pkgs; [ poppler_utils ];
};
}

View file

@ -21,7 +21,7 @@
ignoreSpace = true;
path = "$ZDOTDIR/.zsh_history";
};
initExtra = ''
initContent = ''
smallfetch
source ${pkgs.zsh-you-should-use}/share/zsh/plugins/you-should-use/you-should-use.plugin.zsh
'';