dotfiles/nix/systems/recovery-usb.nix

27 lines
543 B
Nix
Raw Normal View History

2021-03-08 08:57:08 +01:00
inputs: {
system = "x86_64-linux";
modules = [
../nixos-modules/default.nix
(_: {
magic_rb = {
pins = {
inherit (inputs)
nixpkgs
nixpkgs-unstable
nixpkgs-master
home-manager
nixng;
};
config = {
allowUnfree = true;
};
overlays = inputs.self.overlays;
hardware.recoveryUsb = true;
};
2021-03-08 08:57:08 +01:00
})
(import "${inputs.nixpkgs}/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix")
2021-03-08 08:57:08 +01:00
];
}