nix-config/modules/fish.nix

19 lines
399 B
Nix

{ config, pkgs, ... }:
{
programs.fish = {
enable = true;
shellAliases = {
nxr = "cd ~/nix-config && sudo nix flake update && sudo nixos-rebuild switch --upgrade --flake .#";
nxe = "nano /home/rainy/nix-config/configuration.nix";
nxh = "nano /home/rainy/nix-config/home.nix";
};
interactiveShellInit = ''
set fish_greeting
fastfetch
'';
};
}