18 lines
514 B
Nix
18 lines
514 B
Nix
{
|
|
programs.fish.shellAliases = {
|
|
v = "nvim";
|
|
c = "clear";
|
|
rb = "sudo nixos-rebuild switch --flake ~/nixos-config#";
|
|
"boot-rb" = "sudo nixos-rebuild --install-bootloader boot --flake ~/nixos-config#";
|
|
clc = "cloc . --vcs git -v";
|
|
"dry-rb" = "sudo nixos-rebuild dry-build --flake ~/nixos-config#";
|
|
devim = "NVIM_APPNAME=nvim-dev nvim";
|
|
win = "grub-reboot 'Windows Boot Manager (on /dev/sda2)' && reboot";
|
|
|
|
qwer = "reboot";
|
|
zxcv = "shutdown now";
|
|
|
|
lg = "lazygit";
|
|
};
|
|
}
|