patos/modules/config/minimal-system.nix
Daniel Lundin cca2a0ed75
All checks were successful
ci/woodpecker/pr/ci Pipeline was successful
WIP: next step on image build
2024-11-14 00:50:38 +01:00

17 lines
395 B
Nix

{ config, lib, pkgs, ... }: {
nixpkgs.overlays = [(self: super: {
systemdUkify = self.callPackage ../../pkgs/systemd-ukify.nix { inherit super; };
qemu_tiny = self.callPackage ../../pkgs/qemu.nix { inherit super; };
composefs = self.callPackage ../../pkgs/composefs.nix { inherit super; };
# dbus = super.dbus.override {
# enableSystemd = false;
# };
})];
}