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

26 lines
578 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, ... }:
2022-01-30 20:19:35 +01:00
(self: super: {
unstable = import nixpkgs-unstable {
inherit system;
config.allowUnfree = true;
config.allowBroken = true;
};
2022-01-30 20:19:35 +01:00
easy-purescript-nix = self.callPackage easy-purescript-nix { };
easy-dhall-nix = self.callPackage easy-dhall-nix { };
2022-01-30 20:19:35 +01:00
z = {
src = z;
name = "z";
};
2022-01-30 20:19:35 +01:00
agnoster = {
src = agnoster;
name = "agnoster";
};
2022-01-30 20:19:35 +01:00
githubNvimTheme = githubNvimTheme;
})