add bcachefs support to the installer

This commit is contained in:
Charlotte 🦝 Delenk 2023-02-17 15:07:36 +01:00
parent 5fdfedabb9
commit 715647978c
Signed by: darkkirb
GPG key ID: AB2BD8DAF2E37122

View file

@ -10,14 +10,15 @@
networking.wireguard.interfaces."wg0".ips = [
"fd0d:a262:1fa6:e621:6ec2:1e4e:ce7f:d2af/64"
];
boot.supportedFilesystems = ["zfs"];
boot.supportedFilesystems = ["zfs" "bcachefs"];
system.packages = with pkgs; ["bcachefs-tools"];
networking.hostId = "8425e349";
# Oldest system I have is skylake-based
/*
nixpkgs.localSystem = {
gcc.arch = "skylake";
gcc.tune = "skylake";
system = "x86_64-linux";
};
*/
nixpkgs.localSystem = {
gcc.arch = "skylake";
gcc.tune = "skylake";
system = "x86_64-linux";
};
*/
}