Modify like, basically everything idk, probably a lot of secrets and url names and colmena and whatnot

This commit is contained in:
Bun 2025-06-20 20:20:48 -04:00
parent 0ab856b18e
commit b3ba7481d8
107 changed files with 437 additions and 696 deletions

View file

@ -1,16 +1,15 @@
{ config, disko, ... }:
{ config, name, ... }:
{
imports = [ disko.nixosModules.disko ];
disko.devices = {
disk = {
"${config.networking.hostName}" = {
"${name}" = {
type = "disk";
device = "/dev/sda";
device = "/dev/disk/by-id/ata-KINGSTON_SA400S37120G_50026B7783DBB232";
content = {
type = "gpt";
partitions = {
boot = {
priority = 1;
size = "1M";
type = "EF02";
};
@ -28,7 +27,7 @@
size = "100%";
content = {
type = "lvm_pv";
vg = "${config.networking.hostName}";
vg = "${name}";
};
};
};
@ -37,7 +36,7 @@
};
lvm_vg = {
"${config.networking.hostName}" = {
"${name}" = {
type = "lvm_vg";
lvs = {
root = {