modules/nixvim: add nixvim to config

This commit is contained in:
xinyangli 2024-08-20 21:04:46 +08:00
parent db2e696389
commit 47ee5ef21f
Signed by: xin
SSH key fingerprint: SHA256:qZ/tzd8lYRtUFSrfBDBMcUqV4GHKxqeqRA3huItgvbk
6 changed files with 407 additions and 94 deletions

View file

@ -1,10 +1,3 @@
{ config, pkgs, lib, ... }:
{
nixpkgs.overlays = [
(self: super: {
oidc-agent = pkgs.callPackage ./pkgs/oidc-agent { };
python3 = super.python312;
})
];
}
(final: prev: {
oidc-agent = prev.callPackage ./pkgs/oidc-agent { };
})

View file

@ -1,6 +1 @@
{ config, pkgs, ... }:
{
imports = [
./add-pkgs.nix
];
}
final: prev: (import ./add-pkgs.nix)