initial zeta config

This commit is contained in:
Christoph Cullmann 2025-07-04 17:44:35 +02:00
parent fa12f695a8
commit 1003e1cce2
No known key found for this signature in database
7 changed files with 60 additions and 14 deletions

View file

@ -0,0 +1,16 @@
{ config, lib, pkgs, modulesPath, ... }:
{
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
# basic drivers
boot.initrd.availableKernelModules = [ "uas" ];
# /boot efi partition to boot in UEFI mode
fileSystems."/boot" = {
device = "/dev/disk/by-id/nvme-APPLE_SSD_AP1024Z_0ba01e0141400628-part4";
fsType = "vfat";
neededForBoot = true;
options = [ "fmask=0022" "dmask=0022" ];
};
}