Add emilia to hosts

This commit is contained in:
emily 2024-06-12 16:22:17 +02:00
parent 4ffe117269
commit ab50d3e1c0
Signed by: emily
GPG key ID: F6F4C66207FCF995
3 changed files with 125 additions and 0 deletions

View file

@ -0,0 +1,36 @@
{ ... }:{
imports = [
../../common
../../profiles/headless.nix
../../profiles/physical.nix
../../services/forgejo.nix
../../services/nginx.nix
../../services/uptime-kuma.nix
../../services/vaultwarden.nix
./disko.nix
./hardware-configuration.nix
];
boot.initrd.kernelModules = [ "i915" ];
boot.initrd.supportedFilesystems = [ "btrfs" ];
kyouma.machine-type.physical = true;
kyouma.nginx.defaultForbidden = "uptime.kyouma.net";
networking.hostName = "emilia";
systemd.network.networks."98-eth-default" = {
matchConfig.Type = "ether";
matchConfig.Name = "enp0s31f6";
networkConfig = {
IPv6AcceptRA = false;
};
addresses = [
{ addressConfig.Address = "95.217.83.107/26"; }
{ addressConfig.Address = "2a01:4f9:4a:1f5f::1/64"; }
];
routes = [
{ routeConfig.Gateway = "95.217.83.65"; }
{ routeConfig.Gateway = "fe80::1"; }
];
};
}

View file

@ -0,0 +1,80 @@
{ inputs, ... }: {
imports = [
inputs.disko.nixosModules.disko
];
disko.devices = {
disk.bb-nvme0n1 = {
device = "/dev/disk/by-id/nvme-eui.343337304e4032870025384100000001";
type = "disk";
content = {
type = "gpt";
partitions = {
BOOT = {
type = "EF00";
size = "512M";
content = {
type = "mdraid";
name = "boot";
};
};
root = {
size = "100%";
content = {
type = "btrfs";
extraArgs = [ "/dev/disk/by-partlabel/disk-aa-nvme1n1-root" "-f" "-d raid1" "-m raid1" ];
subvolumes = {
"nixos" = {
mountpoint = "/";
mountOptions = [ "compress=zstd" "noatime" ];
};
"var" = {
mountpoint = "/var";
mountOptions = [ "compress=zstd" "noatime" ];
};
"home" = {
mountpoint = "/home";
mountOptions = [ "compress=zstd" "noatime" ];
};
"nix" = {
mountpoint = "/nix";
mountOptions = [ "compress=zstd" "noatime" ];
};
};
};
};
};
};
};
disk.aa-nvme1n1 = {
device = "/dev/disk/by-id/nvme-eui.343337304d8021880025384500000001";
type = "disk";
content = {
type = "gpt";
partitions = {
BOOT = {
type = "EF00";
size = "512M";
content = {
type = "mdraid";
name = "boot";
};
};
root = {
size = "100%";
};
};
};
};
mdadm.boot = {
type = "mdadm";
level = 1;
metadata = "1.0";
content = {
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
mountOptions = [ "umask=0077" "defaults" ];
};
};
};
}

View file

@ -0,0 +1,9 @@
{ modulesPath, ... }: {
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" ];
boot.kernelModules = [ "kvm-intel" ];
}