#1 hater of infinite recursion

This commit is contained in:
do butterflies cry? 2026-02-13 23:27:35 +10:00
parent 39e5c40e12
commit f66aa330c3
31 changed files with 946 additions and 851 deletions

View file

@ -1,6 +1,5 @@
{ inputs, lib, pkgs, ... }:
{
home.packages = with pkgs; [
{upkgs, ...}: {
home.packages = with upkgs; [
fastfetch # displays system info! x3
];

View file

@ -1,5 +1,4 @@
{ inputs, lib, pkgs, ... }:
{
{...}: {
programs = {
zoxide = {
enable = true;
@ -12,14 +11,14 @@
hyfetch = {
enable = true;
settings = {
preset = "genderfae";
mode = "rgb";
backend = "fastfetch";
color_align = {
mode = "vertical";
};
auto_detect_light_dark = true;
pride_month_disable = false;
preset = "genderfae";
mode = "rgb";
backend = "fastfetch";
color_align = {
mode = "vertical";
};
auto_detect_light_dark = true;
pride_month_disable = false;
};
};
};

View file

@ -1,8 +1,4 @@
{ inputs, lib, pkgs, ... }:
let
unstable = inputs.nixpkgs-unstable.legacyPackages.${pkgs.stdenv.hostPlatform.system};
in
{
{...}: {
# the theme file template for zellij is in wallust
programs.zellij = {
@ -10,8 +6,8 @@ in
enableZshIntegration = false;
extraConfig = ''
theme "test"
show_startup_tips false
theme "test"
show_startup_tips false
'';
};
}

View file

@ -1,8 +1,4 @@
{ inputs, lib, pkgs, ... }:
let
unstable = inputs.nixpkgs-unstable.legacyPackages.${pkgs.stdenv.hostPlatform.system};
in
{
{upkgs, ...}: {
programs.zsh = {
enable = true;
enableCompletion = true;
@ -12,22 +8,22 @@ in
plugins = [
{
name = "vi-mode";
src = pkgs.zsh-vi-mode;
src = upkgs.zsh-vi-mode;
file = "share/zsh-vi-mode/zsh-vi-mode.plugin.zsh";
}
];
initContent = ''
# yazi wrapper!!!
function yazi() {
local tmp="$(mktemp -p "/run/user/$UID" -t "yazi-cwd.XXXXXX")" cwd
command yazi "$@" --cwd-file="$tmp"
IFS= read -r -d ''' cwd < "$tmp"
[ -n "$cwd" ] && [ "$cwd" != "$PWD" ] && builtin cd -- "$cwd"
rm -f -- "$tmp"
}
# yazi wrapper!!!
function yazi() {
local tmp="$(mktemp -p "/run/user/$UID" -t "yazi-cwd.XXXXXX")" cwd
command yazi "$@" --cwd-file="$tmp"
IFS= read -r -d ''' cwd < "$tmp"
[ -n "$cwd" ] && [ "$cwd" != "$PWD" ] && builtin cd -- "$cwd"
rm -f -- "$tmp"
}
hyfetch # oh i'm so gay!! :3
hyfetch # oh i'm so gay!! :3
'';
shellAliases = {
@ -87,4 +83,3 @@ in
theme = "agnoster";
};
}