update nix

This commit is contained in:
2025-09-01 15:10:31 -04:00
parent cc045f225b
commit 93b7c6ee25
22 changed files with 303 additions and 20 deletions

View File

@@ -0,0 +1,20 @@
{ namespace, lib, ... }:
let
inherit (lib.${namespace}) enabled;
in
{
system.stateVersion = 6;
# System Config
reichard = {
nix = enabled;
security = {
sops = {
enable = true;
sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
defaultSopsFile = lib.snowfall.fs.get-file "secrets/mac-va-mbp-personal/default.yaml";
};
};
};
}

View File

@@ -7,7 +7,7 @@ in
./hardware-configuration.nix
];
system.stateVersion = "24.11";
system.stateVersion = "25.05";
time.timeZone = "America/New_York";
# System Config

View File

@@ -4,7 +4,7 @@ let
in
{
time.timeZone = "America/New_York";
system.stateVersion = "24.11";
system.stateVersion = "25.05";
reichard = {
system = {
@@ -33,6 +33,8 @@ in
authorizedKeys = [
# evanreichard@lin-va-mbp-personal
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILJJoyXQOv9cAjGUHrUcvsW7vY9W0PmuPMQSI9AMZvNY"
# evanreichard@mac-va-mbp-personal
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMWj6rd6uDtHj/gGozgIEgxho/vBKebgN5Kce/N6vQWV"
# evanreichard@lin-va-thinkpad
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAq5JQr/6WJMIHhR434nK95FrDmf2ApW2Ahd2+cBKwDz"
# NixOS Builder
@@ -47,6 +49,8 @@ in
authorizedKeys.keys = [
# evanreichard@lin-va-mbp-personal
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILJJoyXQOv9cAjGUHrUcvsW7vY9W0PmuPMQSI9AMZvNY"
# evanreichard@mac-va-mbp-personal
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMWj6rd6uDtHj/gGozgIEgxho/vBKebgN5Kce/N6vQWV"
# evanreichard@lin-va-thinkpad
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAq5JQr/6WJMIHhR434nK95FrDmf2ApW2Ahd2+cBKwDz"
# NixOS Builder

View File

@@ -3,7 +3,7 @@ let
inherit (lib.${namespace}) enabled;
in
{
system.stateVersion = "24.11";
system.stateVersion = "25.05";
time.timeZone = "America/New_York";
hardware.enableRedistributableFirmware = true;
hardware.bluetooth.enable = true;

View File

@@ -9,7 +9,7 @@ in
config = {
# Basic System
system.stateVersion = "24.11";
system.stateVersion = "25.05";
time.timeZone = "UTC";
reichard = {