mirror of
https://github.com/phfroidmont/self-hosting.git
synced 2025-12-25 05:36:59 +01:00
Use nixpkgs from flake input as NIX_PATH
This commit is contained in:
parent
a2cca0d02d
commit
3ceff75ee5
2 changed files with 10 additions and 1 deletions
|
|
@ -44,6 +44,7 @@
|
|||
nixosConfigurations = {
|
||||
db1 = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = { inherit nixpkgs; };
|
||||
modules = [
|
||||
sops-nix.nixosModules.sops
|
||||
./profiles/db.nix
|
||||
|
|
@ -61,6 +62,7 @@
|
|||
};
|
||||
backend1 = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = { inherit nixpkgs; };
|
||||
modules = [
|
||||
sops-nix.nixosModules.sops
|
||||
./profiles/backend.nix
|
||||
|
|
@ -78,6 +80,7 @@
|
|||
};
|
||||
storage1 = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = { inherit nixpkgs; };
|
||||
modules = [
|
||||
defaultModuleArgs
|
||||
sops-nix.nixosModules.sops
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue