configuration/packages/off.nix
Andrew Kvalheim b7eabca46a Use resholve
2022-08-02 11:37:41 -07:00

18 lines
329 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
];
} (builtins.readFile ./resources/off)