16 lines
362 B
Nix
16 lines
362 B
Nix
{ lib, pkgs, ... }:
|
|
let
|
|
# 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";
|
|
};
|
|
in{
|
|
imports = [
|
|
"${nix-secrets}/default.nix"
|
|
../modules/autoimport.nix
|
|
];
|
|
}
|