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