Configure iso
All checks were successful
Nix build / nix-build (nixosConfigurations.apollo.config.system.build.toplevel) (push) Successful in 58s
Nix build / nix-build (nixosConfigurations.athene.config.system.build.toplevel) (push) Successful in 33s
Nix build / nix-build (nixosConfigurations.hephaistos.config.system.build.toplevel) (push) Successful in 48s
Nix build / nix-build (nixosConfigurations.hera.config.system.build.toplevel) (push) Successful in 28s
Nix build / nix-build (nixosConfigurations.zeus.config.system.build.toplevel) (push) Successful in 1m1s
Nix build / nix-flake-check (push) Successful in 2m56s

This commit is contained in:
maralorn 2024-02-13 02:11:03 +01:00
parent 1a9b91e6ec
commit 45dc91d7dd

16
iso.nix
View file

@ -1,10 +1,13 @@
{ pkgs, ... }:
{
## In 23.05 zfs conflicts with bcachefs to prevent this we do this override.
#nixpkgs.overlays = [
# (_: super: { zfs = super.zfs.overrideAttrs (_: { meta.platforms = [ ]; }); })
#];
nixpkgs.overlays = [
(_: super: {
zfs = super.zfs.overrideAttrs (_: {
meta.platforms = [ ];
});
})
];
environment.systemPackages = [
pkgs.helix
@ -20,6 +23,11 @@
"repl-flake"
];
boot = {
supportedFilesystems = [ "bcachefs" ];
kernelPackages = pkgs.linuxPackages_latest;
};
#boot.supportedFilesystems = [ "bcachefs" ];
console = {
earlySetup = true;