miku bcachefs

This commit is contained in:
Christoph Cullmann 2025-05-05 16:26:11 +02:00
parent ead992a1ef
commit 6689d9b279
No known key found for this signature in database
3 changed files with 37 additions and 75 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, ... }:
{
@ -21,7 +18,14 @@
fileSystems."/boot" = {
device = "/dev/disk/by-id/nvme-KINGSTON_SFYRD4000G_50026B7686EC5F33-part1";
fsType = "vfat";
neededForBoot = true;
options = [ "fmask=0022" "dmask=0022" ];
};
# /nix volume with the system & all persistent data
fileSystems."/nix" = {
device = "/dev/disk/by-id/nvme-KINGSTON_SFYRD4000G_50026B7686EC5F33-part2:/dev/disk/by-id/nvme-KINGSTON_SFYRD4000G_50026B7686EC6164-part2";
fsType = "bcachefs";
neededForBoot = true;
};
}