1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-09-13 17:47:57 +00:00

Add pala host

This commit is contained in:
RGBCube 2025-01-08 13:16:27 +03:00
parent ed17966d6f
commit a8275cc97a
Signed by: RGBCube
SSH key fingerprint: SHA256:CzqbPcfwt+GxFYNnFVCqoN5Itn4YFrshg1TrnACpA5M
19 changed files with 183 additions and 657 deletions

33
hosts/pala/hardware.nix Normal file
View file

@ -0,0 +1,33 @@
{ config, lib, ... }: with lib;
systemConfiguration {
boot.loader = {
systemd-boot = enabled {
editor = false;
};
efi.canTouchEfiVariables = true;
};
boot.initrd.availableKernelModules = [
"xhci_pci"
"nvme"
"sr_mod"
];
fileSystems."/" = {
device = "/dev/disk/by-label/root";
fsType = "btrfs";
options = [ "relatime" ];
};
fileSystems.${config.boot.loader.efi.efiSysMountPoint} = {
device = "/dev/disk/by-label/boot";
fsType = "vfat";
options = [ "relatime" "fmask=0077" "dmask=0077" ];
};
swapDevices = [{
device = "/dev/disk/by-label/swap";
}];
}