fix mini config

This commit is contained in:
Christoph Cullmann 2025-05-04 18:46:25 +02:00
parent 6790828a28
commit ead992a1ef
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-CT4000P3PSSD8_2325E6E63746-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-CT4000P3PSSD8_2325E6E63746-part2:/dev/disk/by-id/ata-CT2000MX500SSD1_2138E5D5061F-part2";
fsType = "bcachefs";
neededForBoot = true;
};
}