We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05298ea commit c597b80Copy full SHA for c597b80
machines/vm/shared.nix
@@ -77,7 +77,6 @@
77
# Default system packages.
78
environment.systemPackages = with pkgs; [
79
alacritty
80
- bat
81
ungoogled-chromium
82
# camunda-modeler
83
# dbeaver-bin
modules/fish/default.nix
@@ -12,6 +12,7 @@ in
12
options.conf.fish.enable = lib.mkEnableOption "fish";
13
config = lib.mkIf cfg.enable {
14
environment.systemPackages = [
15
+ pkgs.bat
16
pkgs.nitch
17
pkgs.zoxide
18
];
@@ -23,6 +24,7 @@ in
23
24
enable = true;
25
shellAliases = {
26
cd = "z";
27
+ cat = "bat";
28
};
29
shellAbbrs = {
30
vimdev = ''vim --cmd "set rtp+=./"'';
0 commit comments