working nextcloud configuration

This commit is contained in:
Noah Masur
2022-10-02 20:54:26 +00:00
parent f196f546b8
commit 2434376963
6 changed files with 123 additions and 0 deletions

9
apps/loadkey.nix Normal file
View File

@ -0,0 +1,9 @@
{ globals, pkgs, ... }: {
type = "app";
program = builtins.toString (pkgs.writeShellScript "loadkey" ''
${pkgs.melt}/bin/melt restore ~/.ssh/id_ed25519
'');
}