Add new machine Sheol.
This commit is contained in:
parent
4da68279f4
commit
0b1b8b6acb
9 changed files with 246 additions and 0 deletions
66
machines/Sheol/hardware-configuration.nix
Normal file
66
machines/Sheol/hardware-configuration.nix
Normal file
|
@ -0,0 +1,66 @@
|
|||
{nixos-hardware, ...}: {
|
||||
imports = [
|
||||
nixos-hardware.nixosModules.raspberry-pi-5
|
||||
];
|
||||
|
||||
boot = {
|
||||
kernelParams = [ "8250.nr_uarts=11" "console=ttyAMA10,9600" "console=tty0" ];
|
||||
supportedFilesystems = ["btrfs"];
|
||||
initrd.systemd.enableTpm2 = false;
|
||||
loader.systemd-boot.enable = true;
|
||||
loader.efi.canTouchEfiVariables = false;
|
||||
};
|
||||
fileSystems = {
|
||||
"/" = {
|
||||
device = "none";
|
||||
fsType = "tmpfs";
|
||||
options = ["defaults" "size=2G" "mode=755" "noexec"];
|
||||
};
|
||||
"/boot" = {
|
||||
device = "/dev/disk/by-uuid/F8BB-8019";
|
||||
fsType = "vfat";
|
||||
};
|
||||
"/nix" = {
|
||||
device = "/dev/disk/by-uuid/7741fa2e-ce5d-4aef-bf3c-8e283e973409";
|
||||
fsType = "btrfs";
|
||||
options = ["subvol=nix" "compress=zstd" "noatime"];
|
||||
neededForBoot = true;
|
||||
};
|
||||
"/persist" = {
|
||||
device = "/dev/disk/by-uuid/7741fa2e-ce5d-4aef-bf3c-8e283e973409";
|
||||
fsType = "btrfs";
|
||||
options = ["subvol=persist" "compress=zstd" "noexec"];
|
||||
neededForBoot = true;
|
||||
};
|
||||
"/snapshots" = {
|
||||
device = "/dev/disk/by-uuid/7741fa2e-ce5d-4aef-bf3c-8e283e973409";
|
||||
fsType = "btrfs";
|
||||
options = ["subvol=snapshots" "compress=zstd" "noexec"];
|
||||
neededForBoot = false;
|
||||
};
|
||||
"/mnt/WD" = {
|
||||
device = "/dev/disk/by-uuid/EA2866C92866947B";
|
||||
fsType = "ntfs";
|
||||
options = ["nofail" "x-systemd.automount"];
|
||||
neededForBoot = false;
|
||||
};
|
||||
};
|
||||
|
||||
hardware = {
|
||||
bluetooth = {
|
||||
enable = true;
|
||||
powerOnBoot = true;
|
||||
};
|
||||
};
|
||||
|
||||
powerManagement = {
|
||||
enable = true;
|
||||
cpuFreqGovernor = "powersave";
|
||||
};
|
||||
|
||||
services = {
|
||||
upower.enable = true;
|
||||
};
|
||||
|
||||
time.timeZone = "Europe/Berlin";
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue