1
0
Fork 0
nixos-config/overlays/10-previews.nix

14 lines
423 B
Nix
Raw Normal View History

2020-05-21 23:13:42 +00:00
self: super:
let
2020-06-02 02:54:02 +00:00
unstable = import self.sources.unstable { };
2020-07-17 11:17:17 +00:00
nixpkgs-master = import self.sources.nixpkgs-master { };
2020-06-02 02:54:02 +00:00
in {
systemd-next = unstable.systemd;
2020-05-21 23:13:42 +00:00
gnome3 = super.gnome3 // {
inherit (unstable.gnome3) gnome-keyring seahorse gdm;
};
2020-06-02 00:06:20 +00:00
inherit (unstable)
2020-09-15 21:07:15 +00:00
aqbanking neovim vimPlugins syncthing nerdfonts ormolu ghcid go-neb fzf nixpkgs-fmt;
2020-07-17 11:17:17 +00:00
inherit (nixpkgs-master) element-web element-desktop;
2020-06-02 00:06:20 +00:00
}