flake: Decomission lasting-integrity and urithiru
Some checks failed
Some checks failed
This commit is contained in:
parent
8a82db6a76
commit
1cd6ebd88c
10 changed files with 1 additions and 282 deletions
|
@ -1,44 +0,0 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [ ./hardware.nix ];
|
||||
|
||||
time.timeZone = "Europe/Berlin";
|
||||
|
||||
networking.hostId = "b352adfe";
|
||||
|
||||
# Machine-specific module settings
|
||||
chvp = {
|
||||
stateVersion = "20.09";
|
||||
base = {
|
||||
network = {
|
||||
ovh = {
|
||||
enable = true;
|
||||
publicIPV4 = {
|
||||
ip = "54.38.222.69";
|
||||
gateway = "54.38.222.254";
|
||||
};
|
||||
publicIPV6 = {
|
||||
ip = "2001:41d0:0700:1445::";
|
||||
gateway = "2001:41d0:0700:14ff:ff:ff:ff:ff";
|
||||
};
|
||||
internalIPV4 = "192.168.0.2";
|
||||
};
|
||||
};
|
||||
nix.enableDirenv = false;
|
||||
zfs = {
|
||||
enable = true;
|
||||
backups = [
|
||||
{
|
||||
path = "zroot/safe/data";
|
||||
remotePath = "zdata/recv/lasting-integrity/safe/data";
|
||||
fast = true;
|
||||
location = "192.168.0.1";
|
||||
}
|
||||
];
|
||||
rootDataset = "zroot/local/root";
|
||||
rootPool = "zroot";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
|
@ -1,77 +0,0 @@
|
|||
{ lib, modulesPath, ... }:
|
||||
|
||||
{
|
||||
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
||||
|
||||
boot = {
|
||||
loader = {
|
||||
grub = {
|
||||
enable = true;
|
||||
efiSupport = true;
|
||||
mirroredBoots = [
|
||||
{ devices = [ "nodev" ]; path = "/boot/ESP0"; }
|
||||
{ devices = [ "nodev" ]; path = "/boot/ESP1"; }
|
||||
];
|
||||
};
|
||||
efi.canTouchEfiVariables = true;
|
||||
};
|
||||
initrd = {
|
||||
availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" "sr_mod" ];
|
||||
};
|
||||
kernelModules = [ "kvm-intel" ];
|
||||
};
|
||||
|
||||
fileSystems = {
|
||||
"/" = {
|
||||
device = "zroot/local/root";
|
||||
fsType = "zfs";
|
||||
neededForBoot = true;
|
||||
};
|
||||
"/nix" = {
|
||||
device = "zroot/local/nix";
|
||||
fsType = "zfs";
|
||||
neededForBoot = true;
|
||||
};
|
||||
"/nix/store" = {
|
||||
device = "zroot/local/nix-store";
|
||||
fsType = "zfs";
|
||||
neededForBoot = true;
|
||||
};
|
||||
"/data" = {
|
||||
device = "zroot/safe/data";
|
||||
fsType = "zfs";
|
||||
neededForBoot = true;
|
||||
};
|
||||
"/cache" = {
|
||||
device = "zroot/safe/cache";
|
||||
fsType = "zfs";
|
||||
neededForBoot = true;
|
||||
};
|
||||
"/srv/data" = {
|
||||
device = "zdata/data";
|
||||
fsType = "zfs";
|
||||
};
|
||||
"/boot/ESP0" = {
|
||||
device = "/dev/disk/by-uuid/BC0C-3065";
|
||||
fsType = "vfat";
|
||||
};
|
||||
"/boot/ESP1" = {
|
||||
device = "/dev/disk/by-uuid/BC67-2D0D";
|
||||
fsType = "vfat";
|
||||
};
|
||||
};
|
||||
|
||||
swapDevices = [
|
||||
{ device = "/dev/disk/by-uuid/7b9d63e0-5525-4022-9d1a-6c62d52dfb78"; }
|
||||
{ device = "/dev/disk/by-uuid/2602f9a5-c42a-4514-bc4a-30fbb2c08ee9"; }
|
||||
{ device = "/dev/disk/by-uuid/0f98f67f-227f-4a03-892d-d2dfd37e39ad"; }
|
||||
{ device = "/dev/disk/by-uuid/c7bd8b09-45cb-42cd-b355-1a1f2ebde6d4"; }
|
||||
];
|
||||
|
||||
powerManagement.cpuFreqGovernor = lib.mkDefault "performance";
|
||||
hardware = {
|
||||
cpu.intel.updateMicrocode = true;
|
||||
enableRedistributableFirmware = true;
|
||||
};
|
||||
services.fstrim.enable = true;
|
||||
}
|
|
@ -1,37 +0,0 @@
|
|||
{ lib, pkgs, nixosConfigurations, ... }:
|
||||
|
||||
{
|
||||
imports = [ ./hardware.nix ];
|
||||
|
||||
time.timeZone = "Europe/Berlin";
|
||||
|
||||
networking.hostId = "079e60ba";
|
||||
|
||||
chvp = {
|
||||
stateVersion = "20.09";
|
||||
base = {
|
||||
nix = {
|
||||
enableDirenv = false;
|
||||
slowGc = true;
|
||||
};
|
||||
network.ovh = {
|
||||
enable = true;
|
||||
publicIPV4 = {
|
||||
ip = "193.70.44.178";
|
||||
gateway = "193.70.44.254";
|
||||
};
|
||||
publicIPV6 = {
|
||||
ip = "2001:41d0:0303:0ab2::";
|
||||
gateway = "2001:41d0:0303:0aff:ff:ff:ff:ff";
|
||||
};
|
||||
internalIPV4 = "192.168.0.1";
|
||||
};
|
||||
zfs = {
|
||||
enable = true;
|
||||
backups = [ ];
|
||||
rootDataset = "zroot/local/root";
|
||||
rootPool = "zroot";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
|
@ -1,82 +0,0 @@
|
|||
{ lib, modulesPath, ... }:
|
||||
|
||||
{
|
||||
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
||||
|
||||
boot = {
|
||||
loader = {
|
||||
grub = {
|
||||
enable = true;
|
||||
efiSupport = true;
|
||||
mirroredBoots = [
|
||||
{ devices = [ "nodev" ]; path = "/boot/ESP0"; }
|
||||
{ devices = [ "nodev" ]; path = "/boot/ESP1"; }
|
||||
];
|
||||
};
|
||||
efi.canTouchEfiVariables = true;
|
||||
};
|
||||
initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" "sr_mod" ];
|
||||
kernelModules = [ "kvm-intel" ];
|
||||
};
|
||||
|
||||
fileSystems = {
|
||||
"/" = {
|
||||
device = "zroot/local/root";
|
||||
fsType = "zfs";
|
||||
neededForBoot = true;
|
||||
};
|
||||
"/nix" = {
|
||||
device = "zroot/local/nix";
|
||||
fsType = "zfs";
|
||||
neededForBoot = true;
|
||||
};
|
||||
"/nix/store" = {
|
||||
device = "zroot/local/nix-store";
|
||||
fsType = "zfs";
|
||||
neededForBoot = true;
|
||||
};
|
||||
"/data" = {
|
||||
device = "zroot/safe/data";
|
||||
fsType = "zfs";
|
||||
neededForBoot = true;
|
||||
};
|
||||
"/cache" = {
|
||||
device = "zroot/safe/cache";
|
||||
fsType = "zfs";
|
||||
neededForBoot = true;
|
||||
};
|
||||
"/srv/data" = {
|
||||
device = "zdata/data";
|
||||
fsType = "zfs";
|
||||
};
|
||||
"/var/lib/accentor" = {
|
||||
device = "zdata/big-apps/accentor";
|
||||
fsType = "zfs";
|
||||
};
|
||||
"/boot/ESP0" = {
|
||||
device = "/dev/disk/by-uuid/6ED1-0638";
|
||||
fsType = "vfat";
|
||||
options = [ "fmask=0022" "dmask=0022" ];
|
||||
};
|
||||
"/boot/ESP1" = {
|
||||
device = "/dev/disk/by-uuid/6F25-C8B8";
|
||||
fsType = "vfat";
|
||||
options = [ "fmask=0022" "dmask=0022" ];
|
||||
};
|
||||
};
|
||||
|
||||
swapDevices = [
|
||||
{ device = "/dev/disk/by-uuid/2b90207f-2d08-49aa-8a05-2c98c59224c1"; }
|
||||
{ device = "/dev/disk/by-uuid/e1a09bfa-9253-44f4-8c02-cf11cbde5320"; }
|
||||
{ device = "/dev/disk/by-uuid/860a9a86-7882-479c-8be8-f51a5edbf7f7"; }
|
||||
{ device = "/dev/disk/by-uuid/088f30de-c76d-4843-ac62-8442852b372d"; }
|
||||
];
|
||||
|
||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||
powerManagement.cpuFreqGovernor = lib.mkDefault "performance";
|
||||
hardware = {
|
||||
cpu.intel.updateMicrocode = true;
|
||||
enableRedistributableFirmware = true;
|
||||
};
|
||||
services.fstrim.enable = true;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue