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

16 lines
359 B
Nix
Raw Normal View History

2024-02-29 09:53:34 -05:00
{ lib, ... }:
let
# Fetch secrets
# IMPORTANT: Make sure this repo exists on the filesystem first!
2024-02-29 09:53:34 -05:00
nix-secrets = builtins.fetchGit {
url = "/home/aires/Development/nix-configuration/nix-secrets";
2024-02-29 09:53:34 -05:00
ref = "main";
2024-03-01 15:08:14 -05:00
rev = "7e6dd41b5a89a1ff2ead22bf69e5b82b585c0fa2";
2024-02-29 09:53:34 -05:00
};
in{
imports = [
../../modules
"${nix-secrets}/default.nix"
];
2024-02-29 09:59:48 -05:00
}