Nixfiles! :3
0

Configure Feed

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

yazi


Signed-off-by: MLC Bloeiman <mar@strawmelonjuice.com>

MLC Bloeiman (May 30, 2026, 9:45 AM +0200) 10fa0736 0fbede17

+8 -1
+1 -1
configs/zshrc-append
··· 1 1 # Stole ollies idea of putting _part_ in a separate file and part inline :3 2 - 2 + export EDITOR=nvim 3 3 # Function: zap 4 4 _zap() { 5 5 if [[ -d .jj || -d .git ]]; then
+3
home/cli.nix
··· 19 19 home.homeDirectory = "/home/mar"; 20 20 home.stateVersion = "25.11"; # Ensure this matches your NixOS version 21 21 22 + programs.yazi = { 23 + enable = true; 24 + }; 22 25 programs.direnv = { 23 26 silent = true; 24 27 enable = true;
+1
home/desktop.nix
··· 61 61 }; 62 62 63 63 home.sessionVariables.TERMINAL = "wezterm"; 64 + home.sessionVariables.EDITOR = "nvim"; 64 65 home.sessionVariables.PASSWORD_STORE_TYPE = "basic"; 65 66 home.sessionVariables.ZED_ALLOW_EMULATED_GPU = 1; 66 67
+3
home/modules/shell/zsh.nix
··· 30 30 { name = "giacomocavalieri/zsh_gleam_completions"; } 31 31 ]; 32 32 }; 33 + 33 34 shellAliases = { 34 35 # Stealing these back actually! 35 36 to-dotfiles = "cd ~/.dotfiles || cd ~/dotfiles"; ··· 68 69 # Zoxide + a little dash of info ------------------------------------------------ 69 70 cd = "zox"; 70 71 cdi = "zoxi"; 72 + 71 73 }; 74 + 72 75 initContent = 73 76 let 74 77 zshConfigEarlyInit = lib.mkOrder 500 ''