configuration/packages/off.nix

23 lines
372 B
Nix
Raw Normal View History

2022-08-02 18:34:45 +00:00
{ resholve
2022-06-08 20:53:00 +00:00
2022-08-02 18:34:45 +00:00
# Dependencies
, bash
}:
2022-06-08 20:53:00 +00:00
2023-11-28 17:46:03 +00:00
let
inherit (builtins) readFile;
in
2022-08-02 18:34:45 +00:00
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"
2022-08-02 18:34:45 +00:00
];
2023-11-28 17:46:03 +00:00
} (readFile ./resources/off)