feat: setup nushell, bat and tldr

This commit is contained in:
HerozDotExe 2026-02-17 09:37:35 +01:00
parent e7eaef940f
commit 61def35313
2 changed files with 12 additions and 0 deletions

View file

@ -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; [

View file

@ -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";
};