diff --git a/configuration.nix b/configuration.nix index 4d0809c..25bc096 100644 --- a/configuration.nix +++ b/configuration.nix @@ -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 diff --git a/flake.nix b/flake.nix index 00ad9a5..48e62f3 100644 --- a/flake.nix +++ b/flake.nix @@ -16,7 +16,6 @@ pkgs = nixpkgs.legacyPackages.${system}; in { - nixosConfigurations.default = nixpkgs.lib.nixosSystem { specialArgs = { inherit inputs; }; modules = [ diff --git a/home.nix b/home.nix index ca8356b..3a06d96 100644 --- a/home.nix +++ b/home.nix @@ -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.