nixos

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit ceb048384e1dbf183e091bab09c66b2da377745b
parent 4b3cd968e7eeb3b515abdd17245de9bf9054da25
Author: Toni Brown <me@tb148.net>
Date:   Thu, 23 Apr 2026 18:17:35 +0800

update nushell config location

Diffstat:
Mhome.nix | 4+---
Rconfig.nu -> home/nushell/config.nu | 0
Ahome/nushell/default.nix | 4++++
3 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/home.nix b/home.nix @@ -10,6 +10,7 @@ ./home/gpg/. ./home/ime/. ./home/jujutsu/. + ./home/nushell/. ./home/zed-editor/. ]; @@ -79,9 +80,6 @@ programs.hyfetch.enable = true; - programs.nushell.enable = true; - programs.nushell.configFile.source = ./config.nu; - programs.pay-respects.enable = true; programs.thunderbird.enable = true; diff --git a/config.nu b/home/nushell/config.nu diff --git a/home/nushell/default.nix b/home/nushell/default.nix @@ -0,0 +1,4 @@ +{...}: { + programs.nushell.enable = true; + programs.nushell.configFile.source = ./config.nu; +}