diff options
Diffstat (limited to 'home')
-rw-r--r-- | home/default.nix | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/home/default.nix b/home/default.nix index 3004cb3..0a45fe5 100644 --- a/home/default.nix +++ b/home/default.nix @@ -3,16 +3,16 @@ let # TODO See: https://github.com/neovim/neovim/pull/21711 # TODO See: https://github.com/NixOS/nixpkgs/pull/214231 - neovim-fix = self: super: { - inherit (nixpkgs-neovim-fix.legacyPackages.${super.system}) - neovim neovim-unwrapped; - }; + # neovim-fix = self: super: { + # inherit (nixpkgs-neovim-fix.legacyPackages.${super.system}) + # neovim neovim-unwrapped; + # }; in { "sefidel@alpha" = self.lib.mkHome { username = "sefidel"; hostname = "alpha"; - pkgs = import unstable { system = "x86_64-linux"; overlays = with inputs; [ rust.overlays.default neovim-fix neovim.overlay ]; }; + pkgs = import unstable { system = "x86_64-linux"; overlays = with inputs; [ rust.overlays.default (import ../overlays/neovim.nix) neovim.overlay ]; }; extraModules = [ ./profiles/populate.nix @@ -33,7 +33,7 @@ in "sefidel@kompakt" = self.lib.mkHome { username = "sefidel"; hostname = "kompakt"; - pkgs = import unstable { system = "aarch64-linux"; overlays = with inputs; [ rust.overlays.default neovim-fix neovim.overlay ]; }; + pkgs = import unstable { system = "aarch64-linux"; overlays = with inputs; [ rust.overlays.default (import ../overlays/neovim.nix) neovim.overlay ]; }; extraModules = [ ./profiles/populate.nix |