2024-02-29 09:53:34 -05:00
|
|
|
{ lib, ... }:
|
|
|
|
let
|
2024-02-29 17:50:18 -05:00
|
|
|
# Fetch secrets
|
|
|
|
# IMPORTANT: Make sure this repo exists on the filesystem first!
|
2024-02-29 09:53:34 -05:00
|
|
|
nix-secrets = builtins.fetchGit {
|
2024-02-29 17:50:18 -05:00
|
|
|
url = "/home/aires/Development/nix-configuration/nix-secrets";
|
2024-02-29 09:53:34 -05:00
|
|
|
ref = "main";
|
2024-03-02 12:58:30 -05:00
|
|
|
rev = "55fc814d477d956ab885e157f24c2d43f433dc7a";
|
2024-02-29 09:53:34 -05:00
|
|
|
};
|
|
|
|
in{
|
|
|
|
imports = [
|
|
|
|
../../modules
|
|
|
|
"${nix-secrets}/default.nix"
|
|
|
|
];
|
2024-02-29 09:59:48 -05:00
|
|
|
}
|