configuration/packages/off.nix
2023-05-16 18:20:18 -07:00

19 lines
343 B
Nix

{ resholve
# Dependencies
, bash
}:
resholve.writeScriptBin "off" {
interpreter = "${bash}/bin/bash";
inputs = [ ];
fake.external = [
"btrfs"
"docker"
"home-manager"
"nix-channel"
"podman"
"sudo" # Pending https://github.com/abathur/resholve/issues/29
"vagrant"
];
} (builtins.readFile ./resources/off)