finish nomad, add consul, sops

This commit is contained in:
2023-11-19 21:35:38 +00:00
parent 8ed57cc47b
commit f2f449921f

View File

@@ -8,25 +8,26 @@
imports = [
./mnt-public.nix
./nomad.nix
./consul.nix
./odroid-m1-setleds.nix
./odroid-m1.nix
# inputs.sops-nix.nixosModules.sops
inputs.sops-nix.nixosModules.sops
];
# ##secretstore path variable
# options._secretstore = lib.mkOption {
# type = lib.types.str;
# default = "${inputs.self}/secrets";
# description = "Path to the Secrets storage";
# };
##secretstore path variable
options._secretstore = lib.mkOption {
type = lib.types.str;
default = "${inputs.self}/secrets";
description = "Path to the Secrets storage";
};
config = {
system.stateVersion = "23.11"; # Did you read the comment?
# sops = {
# defaultSopsFile = "${config._secretstore}/host-secrets.yaml";
# age.sshKeyPaths = ["/etc/ssh/ssh_host_ed25519_key"];
# };
sops = {
defaultSopsFile = "${config._secretstore}/host-secrets.yaml";
age.sshKeyPaths = ["/etc/ssh/ssh_host_ed25519_key"];
};
# Enable nix flakes
nix.package = pkgs.nixFlakes;