Skip to content

Instantly share code, notes, and snippets.

@Akii
Created April 9, 2019 16:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Akii/c244e14ddc7da77e5dc1cd6922d9c651 to your computer and use it in GitHub Desktop.
Save Akii/c244e14ddc7da77e5dc1cd6922d9c651 to your computer and use it in GitHub Desktop.
self: super:
{
haas-backend = import (builtins.fetchGit {
url = https://gitlab.com/hilfeleistung-aas/backend.git;
// would like it to always fetch master if possible (yes I know it's bad)
});
}
{ config, pkgs, ... }:
{
nixpkgs.overlays = [
(import ./overlays/haas-backend.nix)
];
environment.systemPackages = with pkgs; [
git
haas-backend
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment