10 lines
134 B
Nix
10 lines
134 B
Nix
|
{ depot, lib, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
depot.inputs.nixpkgs.nixosModules.readOnlyPkgs
|
||
|
];
|
||
|
|
||
|
nixpkgs.overlays = lib.mkForce [];
|
||
|
}
|