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 fi
''; '';
}; };
programs.fish = {
enable = true;
interactiveShellInit = ''
set fish_greeting
'';
};
# List packages installed in system profile. To search, run: # List packages installed in system profile. To search, run:
# $ nix search wget # $ nix search wget

View File

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

View File

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