small adaptations, add zen

This commit is contained in:
2024-09-02 01:08:20 +02:00
parent 7adff396c4
commit b1f63fc1b2
5 changed files with 508 additions and 3 deletions

View File

@@ -36,8 +36,8 @@
inputs.nix-flatpak.homeManagerModules.nix-flatpak
];
}
];
};
];
};
# nixosConfigurations.raspberry-pi = nixpkgs.lib.nixosSystem {
# system = "aarch64-linux";
@@ -51,5 +51,15 @@
## Useful nix build tools
# iso builder TODO
nixosConfigurations.bcachefs-iso = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
"${nixpkgs}/nixos/modules/installer/cd-dvd/installation-cd-minimal-new-kernel-no-zfs.nix"
({ lib, pkgs, ... }: {
boot.supportedFilesystems = [ "bcachefs" ];
boot.kernelPackages = lib.mkOverride 0 pkgs.linuxPackages_latest;
})
];
};
};
}