diff options
author | sefidel <contact@sefidel.net> | 2023-03-08 16:41:34 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2023-03-08 16:41:34 +0900 |
commit | 0d719865b22367f4e597452346226876072eaa26 (patch) | |
tree | 5f185d73af16f97ca3ed2bb92e6533f1f56ca336 | |
parent | 279504b7484848a0a15dec8e2fc5324162519f0d (diff) | |
download | nixrc-0d719865b22367f4e597452346226876072eaa26.tar.gz nixrc-0d719865b22367f4e597452346226876072eaa26.zip |
fix(home): remove leftover neovim-fix overlay
-rw-r--r-- | flake.lock | 1 | ||||
-rw-r--r-- | home/default.nix | 14 |
2 files changed, 4 insertions, 11 deletions
diff --git a/flake.lock b/flake.lock index 76fee28..b26d23b 100644 --- a/flake.lock +++ b/flake.lock @@ -203,7 +203,6 @@ "impermanence": "impermanence", "neovim": "neovim", "nixpkgs-2211": "nixpkgs-2211", - "nixpkgs-neovim-fix": "nixpkgs-neovim-fix", "rust": "rust", "sops-nix": "sops-nix", "unstable": "unstable", diff --git a/home/default.nix b/home/default.nix index 0a45fe5..9c9e324 100644 --- a/home/default.nix +++ b/home/default.nix @@ -1,13 +1,7 @@ -{ self, unstable, nixpkgs-neovim-fix, ... } @ inputs: - -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; - # }; -in +{ 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"; |