My dotfiles (written in Nix, btw!) ❄
at main 14 lines 301 B view raw
1{pkgs, ...}: { 2 programs.nushell = { 3 enable = true; 4 configFile.text = '' 5 #!/usr/bin/env nu 6 $env.config.buffer_editor = "${pkgs.helix}/bin/hx" 7 $env.config.show_banner = false 8 ''; 9 }; 10 programs.starship = { 11 enable = true; 12 enableNushellIntegration = true; 13 }; 14}