diff options
Diffstat (limited to 'home')
-rw-r--r-- | home/default.nix | 7 | ||||
-rw-r--r-- | home/profiles/base/default.nix | 2 |
2 files changed, 4 insertions, 5 deletions
diff --git a/home/default.nix b/home/default.nix index 2f17aa8..6d51ce5 100644 --- a/home/default.nix +++ b/home/default.nix @@ -1,11 +1,10 @@ { self, unstable, ... } @ inputs: -# TODO See: https://github.com/neovim/neovim/pull/21711 { "sefidel@alpha" = self.lib.mkHome { username = "sefidel"; hostname = "alpha"; - pkgs = import unstable { system = "x86_64-linux"; overlays = with inputs; [ rust.overlays.default neovim.overlay helix.overlays.default ]; }; + pkgs = import unstable { system = "x86_64-linux"; overlays = with inputs; [ rust.overlays.default neovim-nightly.overlay helix.overlays.default ]; }; extraModules = [ ./profiles/populate.nix @@ -29,7 +28,7 @@ "sefidel@haruka" = self.lib.mkHome { username = "sefidel"; hostname = "haruka"; - pkgs = import unstable { system = "x86_64-linux"; overlays = with inputs; [ rust.overlays.default neovim.overlay helix.overlays.default ]; }; + pkgs = import unstable { system = "x86_64-linux"; overlays = with inputs; [ rust.overlays.default neovim-nightly.overlay helix.overlays.default ]; }; extraModules = [ ./profiles/populate.nix @@ -53,7 +52,7 @@ "sefidel@cobalt" = self.lib.mkHome { username = "sefidel"; hostname = "cobalt"; - pkgs = import unstable { system = "x86_64-linux"; overlays = with inputs; [ rust.overlays.default neovim.overlay ]; }; + pkgs = import unstable { system = "x86_64-linux"; overlays = with inputs; [ rust.overlays.default neovim-nightly.overlay ]; }; extraModules = [ ./profiles/populate.nix diff --git a/home/profiles/base/default.nix b/home/profiles/base/default.nix index bab28a3..9189744 100644 --- a/home/profiles/base/default.nix +++ b/home/profiles/base/default.nix @@ -48,7 +48,7 @@ in pkgs.procs pkgs.sops pkgs.tree - pkgs.neovim + pkgs.neovim-nightly # Common build tools (pkgs.rust-bin.selectLatestNightlyWith (toolchain: toolchain.default.override { extensions = [ "rust-src" ]; })) |