My NixOS dotfiles
0

Configure Feed

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

✨ Things

Simon R. - fantomitechno (Feb 18, 2026, 4:09 PM +0100) 88134f26 77f083c1

+15 -1
+1
.gitignore
··· 1 1 home/config/waypaper.ini 2 + home/niri/config/config.kdl
+14 -1
home/zsh.nix
··· 1 - { ... }: 1 + { pkgs, ... }: 2 2 3 3 { 4 4 programs.zsh = { ··· 31 31 "history-substring-search" 32 32 ]; 33 33 }; 34 + 35 + plugins = [ 36 + { 37 + name = "zsh-nix-shell"; 38 + file = "nix-shell.plugin.zsh"; 39 + src = pkgs.fetchFromGitHub { 40 + owner = "chisui"; 41 + repo = "zsh-nix-shell"; 42 + rev = "v0.8.0"; 43 + sha256 = "1lzrn0n4fxfcgg65v0qhnj7wnybybqzs4adz7xsrkgmcsr0ii8b7"; 44 + }; 45 + } 46 + ]; 34 47 }; 35 48 }