Dump nixos config after scrubing

This commit is contained in:
jmug
2025-05-03 23:42:03 -07:00
commit 5fa4c76c24
854 changed files with 30072 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
{ ... }:
{
imports = [
./sops.nix
../../../modules/nixos
];
}
+27
View File
@@ -0,0 +1,27 @@
{ inputs, config, ... }:
{
imports = [
inputs.sops-nix.nixosModules.sops
];
sops = {
defaultSopsFile = ../../../secrets.yaml;
validateSopsFiles = false;
age = {
sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
keyFile = "/var/lib/sops-nix/key.txt";
generateKey = true;
};
};
sops.secrets = {
"wireless.env" = {};
"yubico/u2f_keys/jmug" = {
owner = config.users.users.jmug.name;
inherit (config.users.users.jmug) group;
path = "/home/jmug/.config/Yubico/u2f_keys";
};
};
}
+1
View File
@@ -0,0 +1 @@
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFg9H/WWc1/jStVmgz6Gm4orTJ6yexHFWjBSYqDJyLvY jmug@nixlap
+1
View File
@@ -0,0 +1 @@
ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCLJj/fefApUkXp79YPPk1O2L6CW6kqISXSWWmR8+MX0wk3lQv1NUp1p87sE57i6aUcYMuba0U9y+ppQq603uOc= code@secretive.Marianos-MacBook-Pro-(2).local
+1
View File
@@ -0,0 +1 @@
sk-ssh-ed25519@openssh.com AAAAGnNrLXNzaC1lZDI1NTE5QG9wZW5zc2guY29tAAAAIO4E2wFY8IJQYn16Xf1AN5UGXnhm/Ie22jZOX96aOcUuAAAABHNzaDo= jmug@nixlap
+8
View File
@@ -0,0 +1,8 @@
{ ... }: {
yubikey = {
enable = true;
identifiers = {
matcha = 13164607;
};
};
}