clone and decrypt configuration on boot
This commit is contained in:
parent
f6f97a6079
commit
3757fb20b9
2 changed files with 14 additions and 0 deletions
BIN
decryption.key
Normal file
BIN
decryption.key
Normal file
Binary file not shown.
14
kiosk.nix
14
kiosk.nix
|
@ -40,6 +40,20 @@ in
|
|||
|
||||
systemd.services.cage-tty1.requires = [ "network-online.target" ];
|
||||
|
||||
systemd.services.clone-config = {
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
requires = [ "network-online.target" ];
|
||||
path = with pkgs; [ git git-crypt ];
|
||||
script = ''
|
||||
git clone ssh://git@inx.moe:245/Infinidoge/kiosk.git /etc/nixos
|
||||
cd /etc/nixos
|
||||
git-crypt unlock /etc/decryption.key
|
||||
'';
|
||||
serviceConfig.Type = "oneshot";
|
||||
};
|
||||
|
||||
environment.etc."decryption.key".source = ./decryption.key;
|
||||
|
||||
services.tailscale = {
|
||||
enable = true;
|
||||
extraUpFlags = [ "--advertise-tags" "tag:kiosk" ];
|
||||
|
|
Loading…
Reference in a new issue