add resume repo as input to flake and use it as nginx root
This commit is contained in:
parent
cb5d682b7d
commit
8d0f110ea7
3 changed files with 38 additions and 3 deletions
17
flake.nix
17
flake.nix
|
|
@ -16,9 +16,22 @@
|
|||
url = "git+https://git.yisroelbaum.com/yisroelbaum/TIDE";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
resume = {
|
||||
url = "git+https://git.yisroelbaum.com/yisroelbaum/MyResume";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, home-manager, sops-nix, tide, ... }:
|
||||
outputs =
|
||||
{
|
||||
self,
|
||||
nixpkgs,
|
||||
home-manager,
|
||||
sops-nix,
|
||||
tide,
|
||||
resume,
|
||||
...
|
||||
}:
|
||||
let
|
||||
system = "x86_64-linux";
|
||||
domainName = "yisroelbaum.com";
|
||||
|
|
@ -36,7 +49,7 @@
|
|||
home-manager.users.yisroel = ./home-manager/home.nix;
|
||||
}
|
||||
];
|
||||
specialArgs = { inherit domainName; };
|
||||
specialArgs = { inherit domainName resume; };
|
||||
};
|
||||
devShells."${system}".default = let
|
||||
pkgs = import nixpkgs { inherit system; };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue