1
0
Fork 0
nix-configuration/hosts/common/default.nix

16 lines
422 B
Nix
Raw Normal View History

2024-02-29 09:53:34 -05:00
{ lib, ... }:
let
# Fetch secrets.
# NOTE: This requires access to a private repo. Make sure you generate the build as `aires`, then switch to it as root.
nix-secrets = builtins.fetchGit {
url = "ssh://git@code.8bitbuddhism.com:22222/andre/nix-secrets.git";
ref = "main";
2024-02-29 09:59:48 -05:00
rev = "75076eba4de5d8539cc1a2a85bf3924c9ae4b7b9";
2024-02-29 09:53:34 -05:00
};
in{
imports = [
../../modules
"${nix-secrets}/default.nix"
];
2024-02-29 09:59:48 -05:00
}