From 61def35313bba8f73e8de86cdaa3504608c5b882 Mon Sep 17 00:00:00 2001 From: HerozDotExe Date: Tue, 17 Feb 2026 09:37:35 +0100 Subject: [PATCH] feat: setup nushell, bat and tldr --- configuration.nix | 1 + home.nix | 11 +++++++++++ 2 files changed, 12 insertions(+) diff --git a/configuration.nix b/configuration.nix index 31e2616..9cb4a35 100644 --- a/configuration.nix +++ b/configuration.nix @@ -120,6 +120,7 @@ # Define a user account. Don't forget to set a password with ‘passwd’. users.users.heroz = { + shell = pkgs.nushell; isNormalUser = true; extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user. packages = with pkgs; [ diff --git a/home.nix b/home.nix index c0d7c9f..82975ee 100644 --- a/home.nix +++ b/home.nix @@ -27,6 +27,9 @@ in prismlauncher jdk21_headless affine + bat + micro + tldr ]; # Fix duplicate brave entry in gnome apps @@ -72,6 +75,14 @@ in }; }; + programs.nushell = { + enable = true; + extraConfig = '' + $env.config.buffer_editor = "micro" + $env.config.show_banner = false + ''; + }; + nixpkgs.config.allowUnfree = true; home.stateVersion = "25.05"; };