mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 10:06:13 +01:00
ae75845f41
Signed-off-by: Magic_RB <magic_rb@redalder.org>
27 lines
543 B
Nix
27 lines
543 B
Nix
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;
|
|
};
|
|
})
|
|
(import "${inputs.nixpkgs}/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix")
|
|
];
|
|
}
|