Agenix secrets overhaul

This commit is contained in:
Jimbo 2024-10-28 23:24:12 -04:00
parent 83796f7cb2
commit 55dcb2fca7
56 changed files with 530 additions and 137 deletions

View file

@ -1,4 +1,4 @@
{ config, ... }:
{ config, agenix, ... }:
{
imports = [
./hardware
@ -21,6 +21,13 @@
# Misc
../../../overlays
../../../variables
# Secrets
../../../variables/secrets/common
../../../variables/secrets/server
# Imports
agenix.nixosModules.default
];
networking.hostName = "bomberman";

View file

@ -1,4 +1,4 @@
{ ... }:
{ agenix, ... }:
{
imports = [
./hardware
@ -19,6 +19,13 @@
# Misc
../../../overlays
../../../variables
# Secrets
../../../variables/secrets/common
../../../variables/secrets/server
# Imports
agenix.nixosModules.default
];
networking.hostName = "cyberspark";

View file

@ -1,4 +1,4 @@
{ ... }:
{ agenix, ... }:
{
imports = [
./hardware
@ -20,6 +20,13 @@
# Extras
../../../overlays
../../../variables
# Secrets
../../../variables/secrets/common
../../../variables/secrets/pc
# Imports
agenix.nixosModules.default
];
networking.hostName = "detritus";

View file

@ -1,4 +1,4 @@
{ chaotic, pkgs, ... }:
{ pkgs, agenix, chaotic, ... }:
{
imports = [
./hardware
@ -24,7 +24,12 @@
../../../overlays
../../../variables
# Secrets
../../../variables/secrets/common
../../../variables/secrets/pc
# Imports
agenix.nixosModules.default
chaotic.homeManagerModules.default
];

View file

@ -1,4 +1,4 @@
{ config, lib, ... }:
{ config, lib, agenix, ... }:
{
imports = [
./hardware
@ -21,6 +21,13 @@
# Extras
../../../overlays
../../../variables
# Secrets
../../../variables/secrets/common
../../../variables/secrets/pc
# Imports
agenix.nixosModules.default
];
services.keyd.keyboards.default.settings.main = {

View file

@ -1,4 +1,4 @@
{ config, ... }:
{ config, agenix, ... }:
{
imports = [
./hardware
@ -21,6 +21,13 @@
# Extras
../../../overlays
../../../variables
# Secrets
../../../variables/secrets/common
../../../variables/secrets/pc
# Imports
agenix.nixosModules.default
];
networking.hostName = "redmond";

View file

@ -1,4 +1,4 @@
{ config, lib, hardware, ... }:
{ config, lib, agenix, hardware, ... }:
{
imports = [
./hardware
@ -22,7 +22,13 @@
../../../overlays
../../../variables
# Secrets
../../../variables/secrets/common
../../../variables/secrets/pc
# Imports
agenix.nixosModules.default
hardware.nixosModules.pine64-pinebook-pro
];

View file

@ -1,4 +1,4 @@
{ config, lib, hardware, ... }:
{ config, lib, agenix, hardware, ... }:
{
imports = [
./hardware
@ -22,7 +22,12 @@
../../../overlays
../../../variables
# Secrets
../../../variables/secrets/common
../../../variables/secrets/pc
# Imports
agenix.nixosModules.default
hardware.nixosModules.apple-macbook-pro-14-1
];