1
Fork 0
satellite/modules/overlays/flakes.nix

33 lines
809 B
Nix
Raw Normal View History

{ system }:
{ home-manager, nixpkgs, nixpkgs-unstable, nixos-unstable, easy-purescript-nix
2022-01-30 19:10:57 +01:00
, easy-dhall-nix, z, agnoster, githubNvimTheme, vim-extra-plugins, ... }:
({ pkgs, ... }: {
nix.registry.nixpkgs.flake = nixpkgs;
nixpkgs.overlays = [
2022-01-30 19:10:57 +01:00
vim-extra-plugins.overlay
(self: super: {
# inherit nixos-unstable;
unstable = import nixpkgs-unstable {
inherit system;
config.allowUnfree = true;
config.allowBroken = true;
};
easy-purescript-nix = import easy-purescript-nix { inherit pkgs; };
easy-dhall-nix = import easy-dhall-nix { inherit pkgs; };
z = {
src = z;
name = "z";
};
agnoster = {
src = agnoster;
name = "agnoster";
};
2022-01-30 13:57:47 +01:00
githubNvimTheme = githubNvimTheme;
})
];
})