chore(fish): add alias to nom

This commit is contained in:
Julien Malka 2024-10-13 12:25:45 +02:00
parent aaf599a534
commit 5a822dee2a
Signed by: Luj
GPG key ID: 6FC74C847011FD83

View file

@ -1,7 +1,11 @@
{ config, pkgs, lib, ... }:
{
config,
pkgs,
lib,
...
}:
let
cfg = config.luj.programs.fish;
inherit (pkgs) fetchFromGitHub;
in
with lib;
{
@ -19,6 +23,8 @@ with lib;
ka = "killall";
mkd = "mkdir -pv";
nix-build = "nom-build";
ca = "khal interactive";
sync_ca = "vsync sync";
@ -35,7 +41,6 @@ with lib;
SU = "systemctl --user";
SS = "sudo systemctl";
weather = "curl wttr.in";
v6 = "curl api6.ipify.org";
v4 = "curl api.ipify.org";
@ -92,6 +97,11 @@ with lib;
# Misc
programs.lesspipe.enable = true;
home.packages = with pkgs; [ eza python3 libnotify ];
home.packages = with pkgs; [
eza
python3
libnotify
nix-output-monitor
];
};
}