diff options
-rw-r--r-- | flake.nix | 1 | ||||
-rw-r--r-- | home/default.nix | 5 | ||||
-rw-r--r-- | overlays/neovim.nix | 6 |
3 files changed, 2 insertions, 10 deletions
diff --git a/flake.nix b/flake.nix index be553f6..3d5c638 100644 --- a/flake.nix +++ b/flake.nix @@ -5,7 +5,6 @@ unstable.url = "github:nixos/nixpkgs/nixos-unstable"; unstable-small.url = "github:nixos/nixpkgs/nixos-unstable-small"; nixpkgs-2211.url = "github:nixos/nixpkgs/nixos-22.11"; - # TODO See: https://github.com/NixOS/nixpkgs/pull/214231 darwin.url = "github:LnL7/nix-darwin"; darwin.inputs.nixpkgs.follows = "unstable"; diff --git a/home/default.nix b/home/default.nix index b338929..0591d7a 100644 --- a/home/default.nix +++ b/home/default.nix @@ -1,12 +1,11 @@ { self, unstable, ... } @ inputs: # TODO See: https://github.com/neovim/neovim/pull/21711 -# TODO See: https://github.com/NixOS/nixpkgs/pull/214231 { "sefidel@alpha" = self.lib.mkHome { username = "sefidel"; hostname = "alpha"; - pkgs = import unstable { system = "x86_64-linux"; overlays = with inputs; [ rust.overlays.default (import ../overlays/neovim.nix) neovim.overlay ]; }; + pkgs = import unstable { system = "x86_64-linux"; overlays = with inputs; [ rust.overlays.default neovim.overlay ]; }; extraModules = [ ./profiles/populate.nix @@ -27,7 +26,7 @@ "sefidel@kompakt" = self.lib.mkHome { username = "sefidel"; hostname = "kompakt"; - pkgs = import unstable { system = "aarch64-linux"; overlays = with inputs; [ rust.overlays.default (import ../overlays/neovim.nix) neovim.overlay ]; }; + pkgs = import unstable { system = "aarch64-linux"; overlays = with inputs; [ rust.overlays.default neovim.overlay ]; }; extraModules = [ ./profiles/populate.nix diff --git a/overlays/neovim.nix b/overlays/neovim.nix deleted file mode 100644 index 6c4b225..0000000 --- a/overlays/neovim.nix +++ /dev/null @@ -1,6 +0,0 @@ -self: super: { - # TODO See: https://github.com/NixOS/nixpkgs/pull/214231 - neovim-unwrapped = super.neovim-unwrapped.overrideAttrs (old: { - patches = [ ]; - }); -} |