mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-07 21:56:34 +01:00
124 lines
2.5 KiB
Nix
124 lines
2.5 KiB
Nix
|
{ config, pkgs, lib, ... }:
|
||
|
|
||
|
{
|
||
|
jopejoe1 = {
|
||
|
local.enable = true;
|
||
|
nix.enable = true;
|
||
|
user = {
|
||
|
jopejoe1.enable = true;
|
||
|
root.enable = true;
|
||
|
};
|
||
|
ssh.enable = true;
|
||
|
};
|
||
|
|
||
|
boot.initrd.availableKernelModules = [ "ahci" "nvme" ];
|
||
|
boot.initrd.kernelModules = [ ];
|
||
|
boot.kernelModules = [ "kvm-amd" ];
|
||
|
boot.extraModulePackages = [ ];
|
||
|
boot.loader = {
|
||
|
grub = {
|
||
|
enable = true;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
|
||
|
networking = {
|
||
|
wireless.enable = lib.mkForce false;
|
||
|
};
|
||
|
|
||
|
time.timeZone = "Europe/Berlin";
|
||
|
|
||
|
services.openssh.settings.PermitRootLogin = lib.mkForce "yes";
|
||
|
|
||
|
console = {
|
||
|
enable = true;
|
||
|
};
|
||
|
disko.devices = {
|
||
|
disk = {
|
||
|
one = {
|
||
|
type = "disk";
|
||
|
device = "/dev/nvme0n1";
|
||
|
content = {
|
||
|
type = "gpt";
|
||
|
partitions = {
|
||
|
BOOT = {
|
||
|
size = "1M";
|
||
|
type = "EF02"; # for grub MBR
|
||
|
};
|
||
|
ESP = {
|
||
|
size = "500M";
|
||
|
type = "EF00";
|
||
|
content = {
|
||
|
type = "mdraid";
|
||
|
name = "boot";
|
||
|
};
|
||
|
};
|
||
|
mdadm = {
|
||
|
size = "100%";
|
||
|
content = {
|
||
|
type = "mdraid";
|
||
|
name = "raid1";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
two = {
|
||
|
type = "disk";
|
||
|
device = "/dev/nvme1n1";
|
||
|
content = {
|
||
|
type = "gpt";
|
||
|
partitions = {
|
||
|
boot = {
|
||
|
size = "1M";
|
||
|
type = "EF02"; # for grub MBR
|
||
|
};
|
||
|
ESP = {
|
||
|
size = "500M";
|
||
|
type = "EF00";
|
||
|
content = {
|
||
|
type = "mdraid";
|
||
|
name = "boot";
|
||
|
};
|
||
|
};
|
||
|
mdadm = {
|
||
|
size = "100%";
|
||
|
content = {
|
||
|
type = "mdraid";
|
||
|
name = "raid1";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
mdadm = {
|
||
|
boot = {
|
||
|
type = "mdadm";
|
||
|
level = 1;
|
||
|
metadata = "1.0";
|
||
|
content = {
|
||
|
type = "filesystem";
|
||
|
format = "vfat";
|
||
|
mountpoint = "/boot";
|
||
|
};
|
||
|
};
|
||
|
raid1 = {
|
||
|
type = "mdadm";
|
||
|
level = 1;
|
||
|
content = {
|
||
|
type = "gpt";
|
||
|
partitions.primary = {
|
||
|
size = "100%";
|
||
|
content = {
|
||
|
type = "filesystem";
|
||
|
format = "ext4";
|
||
|
mountpoint = "/";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|