testing
This commit is contained in:
parent
650dc70f39
commit
b0009ef3f1
1 changed files with 7 additions and 12 deletions
13
flake.nix
13
flake.nix
|
@ -6,26 +6,21 @@
|
|||
## for explicitly installed packages and non nixvim config
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||
|
||||
flake-utils.url = "github:numtide/flake-utils";
|
||||
|
||||
nixvim = {
|
||||
url = "github:nix-community/nixvim";
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
outputs = { nixpkgs, flake-utils, ... } @ inputs:
|
||||
flake-utils.lib.eachDefaultSystem (system:
|
||||
let
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
in
|
||||
outputs = { self, nixpkgs, flake-utils, ... } @ inputs:
|
||||
{
|
||||
nixosModules = rec {
|
||||
nixvim-config = import ./default.nix {
|
||||
nixvim-config = { pkgs, ... }:
|
||||
import ./default.nix {
|
||||
inherit inputs;
|
||||
inherit pkgs;
|
||||
};
|
||||
default = nixvim-config;
|
||||
};
|
||||
});
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue