Compare commits
No commits in common. "2b3abf677a3d969ea38b410a0799ee0483001781" and "711c2e4ccfb093c32c94f09637c8afd2d145e820" have entirely different histories.
2b3abf677a
...
711c2e4ccf
@ -131,7 +131,6 @@
|
|||||||
nixfiles-generate-backup-secrets
|
nixfiles-generate-backup-secrets
|
||||||
nixfiles-update-ssh-host-keys
|
nixfiles-update-ssh-host-keys
|
||||||
print-afra
|
print-afra
|
||||||
run-with-docker-group
|
|
||||||
ssh-gpg
|
ssh-gpg
|
||||||
update-from-hydra
|
update-from-hydra
|
||||||
uptimestatus;
|
uptimestatus;
|
||||||
|
@ -16,7 +16,6 @@ final: prev: {
|
|||||||
nixfiles-generate-backup-secrets = final.callPackage ./nixfiles/nixfiles-generate-backup-secrets.nix {};
|
nixfiles-generate-backup-secrets = final.callPackage ./nixfiles/nixfiles-generate-backup-secrets.nix {};
|
||||||
nixfiles-update-ssh-host-keys = final.callPackage ./nixfiles/nixfiles-update-ssh-host-keys.nix {};
|
nixfiles-update-ssh-host-keys = final.callPackage ./nixfiles/nixfiles-update-ssh-host-keys.nix {};
|
||||||
print-afra = final.callPackage ./print-afra {};
|
print-afra = final.callPackage ./print-afra {};
|
||||||
run-with-docker-group = final.callPackage ./run-with-docker-group {};
|
|
||||||
ssh-gpg = final.callPackage ./ssh-gpg {};
|
ssh-gpg = final.callPackage ./ssh-gpg {};
|
||||||
update-from-hydra = final.callPackage ./update-from-hydra {};
|
update-from-hydra = final.callPackage ./update-from-hydra {};
|
||||||
uptimestatus = final.python3.pkgs.callPackage ./uptimestatus {};
|
uptimestatus = final.python3.pkgs.callPackage ./uptimestatus {};
|
||||||
|
@ -1,6 +0,0 @@
|
|||||||
{ pkgs, ... }:
|
|
||||||
|
|
||||||
pkgs.writeShellApplication {
|
|
||||||
name = "run-with-docker-group";
|
|
||||||
text = builtins.readFile ./run-with-docker-group.sh;
|
|
||||||
}
|
|
@ -1,14 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
set -euo pipefail
|
|
||||||
|
|
||||||
if [[ $# -eq 0 ]]; then
|
|
||||||
set -- "${SHELL}"
|
|
||||||
fi
|
|
||||||
|
|
||||||
exec systemd-run \
|
|
||||||
"--property=User=$(id -un)" \
|
|
||||||
"--property=SupplementaryGroups=docker" \
|
|
||||||
"--pty" "--same-dir" "--wait" "--collect" "--service-type=exec" \
|
|
||||||
"--quiet" \
|
|
||||||
"$@"
|
|
Loading…
Reference in New Issue
Block a user