Modify like, basically everything idk, probably a lot of secrets and url names and colmena and whatnot
This commit is contained in:
parent
0ab856b18e
commit
b3ba7481d8
107 changed files with 437 additions and 696 deletions
|
@ -2,10 +2,6 @@
|
|||
{
|
||||
boot = {
|
||||
kernelPackages = pkgs.linuxPackages_hardened;
|
||||
kernelParams = [
|
||||
"amdgpu.si_support=1"
|
||||
"radeon.si_support=0"
|
||||
];
|
||||
loader.systemd-boot.enable = true;
|
||||
loader.limine.enable = true;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -12,9 +12,11 @@
|
|||
stateVersion = "25.05";
|
||||
};
|
||||
|
||||
deployment.targetHost = "5dd:9cd7:f286:e2c7:4c3b:c2e1:7832:97a3";
|
||||
deployment.targetHost = "53a:2092:12ff:889c:2e1f:1d79:f05a:cadd";
|
||||
|
||||
networking.hostId = "0917a5c1";
|
||||
|
||||
services.nfs.server.enable = true;
|
||||
|
||||
virtualisation.libvirtd.enable = true;
|
||||
}
|
||||
|
|
|
@ -1,16 +1,15 @@
|
|||
{ config, disko, ... }:
|
||||
{ config, name, ... }:
|
||||
{
|
||||
imports = [ disko.nixosModules.disko ];
|
||||
|
||||
disko.devices = {
|
||||
disk = {
|
||||
"${config.networking.hostName}" = {
|
||||
"${name}" = {
|
||||
type = "disk";
|
||||
device = "/dev/sda";
|
||||
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 = {
|
||||
|
|
|
@ -10,7 +10,5 @@
|
|||
"subvol=storage"
|
||||
];
|
||||
};
|
||||
|
||||
"detritus".enable = false;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue