12 lines
179 B
Nix
12 lines
179 B
Nix
{inputs, ...}: {
|
|
config = {
|
|
allowUnfree = true;
|
|
};
|
|
|
|
overlays = [
|
|
inputs.nur.overlays.default
|
|
|
|
# Custom packages.
|
|
(import ../../overlays/marleyos.nix)
|
|
];
|
|
}
|