fish through home-manager

aarch64
Zynh Ludwig 2024-02-26 01:30:20 -08:00
parent 88207f9a27
commit 6ab831d89d
3 changed files with 9 additions and 8 deletions

View File

@ -136,12 +136,6 @@
fi
'';
};
programs.fish = {
enable = true;
interactiveShellInit = ''
set fish_greeting
'';
};
# List packages installed in system profile. To search, run:
# $ nix search wget

View File

@ -16,7 +16,6 @@
pkgs = nixpkgs.legacyPackages.${system};
in
{
nixosConfigurations.default = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; };
modules = [

View File

@ -67,7 +67,15 @@
# /etc/profiles/per-user/ravenshade/etc/profile.d/hm-session-vars.sh
#
home.sessionVariables = {
# EDITOR = "emacs";
EDITOR = "nvim";
MANPAGER = "nvim +Man!";
};
programs.fish = {
enable = true;
interactiveShellInit = ''
set fish_greeting
'';
};
# Let Home Manager install and manage itself.