Compare commits
2 commits
d703b19f3a
...
3757fb20b9
Author | SHA1 | Date | |
---|---|---|---|
3757fb20b9 | |||
f6f97a6079 |
2 changed files with 16 additions and 0 deletions
BIN
decryption.key
Normal file
BIN
decryption.key
Normal file
Binary file not shown.
16
kiosk.nix
16
kiosk.nix
|
@ -38,6 +38,22 @@ in
|
||||||
pulse.enable = true;
|
pulse.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
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 = {
|
services.tailscale = {
|
||||||
enable = true;
|
enable = true;
|
||||||
extraUpFlags = [ "--advertise-tags" "tag:kiosk" ];
|
extraUpFlags = [ "--advertise-tags" "tag:kiosk" ];
|
||||||
|
|
Loading…
Reference in a new issue