Skip to content

Commit c597b80

Browse files
fish: add bat
1 parent 05298ea commit c597b80

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

machines/vm/shared.nix

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@
7777
# Default system packages.
7878
environment.systemPackages = with pkgs; [
7979
alacritty
80-
bat
8180
ungoogled-chromium
8281
# camunda-modeler
8382
# dbeaver-bin

modules/fish/default.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ in
1212
options.conf.fish.enable = lib.mkEnableOption "fish";
1313
config = lib.mkIf cfg.enable {
1414
environment.systemPackages = [
15+
pkgs.bat
1516
pkgs.nitch
1617
pkgs.zoxide
1718
];
@@ -23,6 +24,7 @@ in
2324
enable = true;
2425
shellAliases = {
2526
cd = "z";
27+
cat = "bat";
2628
};
2729
shellAbbrs = {
2830
vimdev = ''vim --cmd "set rtp+=./"'';

0 commit comments

Comments
 (0)