This commit is contained in:
mjallen18
2025-07-24 10:19:32 -05:00
parent 5dc1a96f6d
commit 3c1a956c81
23 changed files with 185 additions and 242 deletions

View File

@@ -87,7 +87,7 @@ in
"${user}" = {
isNormalUser = true;
# hashedPasswordFile = password;
password = "BogieDudie1";
password = lib.mkForce "BogieDudie1";
extraGroups = [
"wheel"
"docker"

View File

@@ -1,10 +1,10 @@
{ config, ... }:
{ config, lib, ... }:
let
user = "matt";
in
{
sops = {
defaultSopsFile = ../../../secrets/pi4-secrets.yaml;
defaultSopsFile = lib.mkForce ../../../secrets/pi4-secrets.yaml;
# age = {
# generateKey = true;
# sshKeyPaths = [ "/etc/ssd/ssh_host_ed25519_key" ];

View File

@@ -91,7 +91,7 @@ in
users."${user}" = {
isNormalUser = true;
# hashedPasswordFile = password;
password = "BogieDudie1";
password = lib.mkForce "BogieDudie1";
extraGroups = [
"wheel"
"docker"

View File

@@ -1,10 +1,10 @@
{ config, ... }:
{ config, lib, ... }:
let
user = "matt";
in
{
sops = {
defaultSopsFile = ../../../secrets/pi5-secrets.yaml;
defaultSopsFile = lib.mkForce ../../../secrets/pi5-secrets.yaml;
# age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
age.keyFile = "/home/matt/.config/sops/age/keys.txt";