We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3ac243 commit 0b5b24fCopy full SHA for 0b5b24f
config/default.nix
@@ -14,6 +14,7 @@
14
./telescope.nix
15
./toggle-term.nix
16
];
17
+
18
config = {
19
extraPlugins = [
20
pkgs.vimPlugins.nightfox-nvim
flake.nix
@@ -10,6 +10,7 @@
10
outputs = {
11
nixvim,
12
flake-parts,
13
+ nixpkgs,
...
} @ inputs:
flake-parts.lib.mkFlake {inherit inputs;} {
@@ -37,6 +38,11 @@
37
38
};
39
nvim = nixvim'.makeNixvimWithModule nixvimModule;
40
in {
41
42
+ _module.args.pkgs = import nixpkgs {
43
+ inherit system;
44
+ config.allowUnfree = true;
45
+ };
46
checks = {
47
# Run `nix flake check .` to verify that your config is not broken
48
default = nixvimLib.check.mkTestDerivationFromNixvimModule nixvimModule;
0 commit comments