feat: setup nushell, bat and tldr
This commit is contained in:
parent
e7eaef940f
commit
61def35313
2 changed files with 12 additions and 0 deletions
|
|
@ -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; [
|
||||
|
|
|
|||
11
home.nix
11
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";
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue