more bcachefs stuff

This commit is contained in:
Christoph Cullmann 2025-05-04 16:55:44 +02:00
parent 539084beb4
commit d7290ec6c1
No known key found for this signature in database
4 changed files with 54 additions and 163 deletions

View file

@ -1,6 +1,3 @@
# Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, modulesPath, ... }:
{
@ -18,9 +15,16 @@
# /boot efi partition to boot in UEFI mode
fileSystems."/boot" = {
device = "/dev/disk/by-id/nvme-Seagate_FireCuda_530_ZP4000GM30013_7VS01VBM-part1";
device = "UUID=CFA5-46EA";
fsType = "vfat";
neededForBoot = true;
options = [ "fmask=0022" "dmask=0022" ];
};
# /nix volume with the system & all persistent data
fileSystems."/nix" = {
device = "UUID=686a90a2-93ac-40a6-a01d-c7b61cc47750";
fsType = "bcachefs";
neededForBoot = true;
};
}