dadada.li/flake.nix
2021-08-19 20:50:04 +02:00

15 lines
423 B
Nix

{
description = "dadada's homepage";
inputs = {
hugo-theme-anubis = {
url = github:mitrichius/hugo-theme-anubis;
flake = false;
};
};
outputs = { self, hugo-theme-anubis, nixpkgs }: {
packages.x86_64-linux.homePage = nixpkgs.legacyPackages.x86_64-linux.callPackage ./default.nix { inherit hugo-theme-anubis; };
defaultPackage.x86_64-linux = self.packages.x86_64-linux.homePage;
};
}