my nixos/home-manager configuration
1
fork

Configure Feed

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

use nix-your-shell program

youn 6a1fa613 95095b76

+1 -8
+1
home-manager/common.nix
··· 54 54 sccache.enable = true; 55 55 carapace.enable = true; 56 56 starship.enable = true; 57 + nix-your-shell.enable = true; 57 58 }; 58 59 59 60 programs.home-manager.enable = true;
-8
home-manager/modules/nushell.nix
··· 1 1 { 2 2 config, 3 - pkgs, 4 3 lib, 5 4 ... 6 5 }: ··· 24 23 ls.clickable_links = false; 25 24 rm.always_trash = true; 26 25 }; 27 - extraConfig = '' 28 - source ${ 29 - pkgs.runCommand "nix-your-shell-nushell-config.nu" { } '' 30 - ${lib.getExe pkgs.nix-your-shell} nu >> "$out" 31 - '' 32 - } 33 - ''; 34 26 environmentVariables = config.home.sessionVariables; 35 27 }; 36 28 };