my nixos/home-manager configuration
1
fork

Configure Feed

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

feat(home-manager/nushell): use nix-your-shell

youn ea01fa9d 6eb61902

+8
+8
home-manager/modules/nushell.nix
··· 1 1 { 2 2 config, 3 + pkgs, 3 4 lib, 4 5 ... 5 6 }: ··· 28 29 ls.clickable_links = false; 29 30 rm.always_trash = true; 30 31 }; 32 + extraConfig = '' 33 + source ${ 34 + pkgs.runCommand "nix-your-shell-nushell-config.nu" { } '' 35 + ${lib.getExe pkgs.nix-your-shell} nu >> "$out" 36 + '' 37 + } 38 + ''; 31 39 }; 32 40 }; 33 41 }