master #1

Merged
etwas merged 3 commits from master into main 2024-10-23 23:17:30 +02:00
4 changed files with 14 additions and 0 deletions
Showing only changes of commit 78f4013061 - Show all commits

View file

@ -16,6 +16,12 @@
owner = "rhea"; owner = "rhea";
symlink = false; symlink = false;
}; };
age.secrets.gcd_etwas = {
file = ../secrets/1bvps.age;
path = "/home/rhea/.ssh/id_gcd_etwas";
owner = "rhea";
symlink = false;
};
nix.extraOptions = '' nix.extraOptions = ''
!include ${config.age.secrets.access-tokens-github.path} !include ${config.age.secrets.access-tokens-github.path}

View file

@ -9,6 +9,13 @@
hostname = "178.254.43.196"; hostname = "178.254.43.196";
identityFile = [ "/home/rhea/.ssh/id_1bvps" ]; identityFile = [ "/home/rhea/.ssh/id_1bvps" ];
}; };
"gcd-etwas" = {
host = "gcd-etwas";
hostname = "git.catgirl.dog";
identityFile = [ "/home/rhea/.ssh/id_gcd_etwas" ];
user = "git";
port = 222;
};
}; };
}; };
} }

BIN
secrets/gcd_etwas.age Normal file

Binary file not shown.

View file

@ -5,4 +5,5 @@ in
{ {
"gh.age".publicKeys = [ rhea-laptop ]; "gh.age".publicKeys = [ rhea-laptop ];
"1bvps.age".publicKeys = [ rhea-laptop ]; "1bvps.age".publicKeys = [ rhea-laptop ];
"gcd_etwas.age".publicKeys = [ rhea-laptop ];
} }