add cv
This commit is contained in:
parent
07877938f1
commit
b2b0448e2a
2 changed files with 12 additions and 0 deletions
|
|
@ -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";
|
||||||
|
|
|
||||||
11
hosts/pluto/services/cv.nix
Normal file
11
hosts/pluto/services/cv.nix
Normal 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}";
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue