This commit is contained in:
zackartz 2024-05-06 00:29:50 -04:00
parent 07877938f1
commit b2b0448e2a
No known key found for this signature in database
GPG key ID: 5B53E53A9A514DBA
2 changed files with 12 additions and 0 deletions

View file

@ -24,6 +24,7 @@
inputs.nixpkgs.follows = "nixpkgs_stable"; inputs.nixpkgs.follows = "nixpkgs_stable";
}; };
resume.url = "git+https://git.zackmyers.io/zack/resume";
anyrun.url = "github:Kirottu/anyrun"; anyrun.url = "github:Kirottu/anyrun";
anyrun.inputs.nixpkgs.follows = "nixpkgs"; anyrun.inputs.nixpkgs.follows = "nixpkgs";
ags.url = "github:Aylur/ags"; ags.url = "github:Aylur/ags";

View file

@ -0,0 +1,11 @@
{
inputs,
pkgs,
...
}: {
services.nginx.virtualHosts."cv.zackmyers.io" = {
forceSSL = true;
enableACME = true;
locations."/".root = "${inputs.resume.packages.${pkgs.system}.default}";
};
}