Compare commits

..

25 commits

Author SHA1 Message Date
4344704394 monolith: add forgejo runner 2024-04-06 20:53:27 -03:00
0cb501b43d sshd: disable until xz is secure 2024-04-06 20:53:27 -03:00
7ca6c3b681 sway: add more env vars to dbus activation 2024-04-06 20:53:27 -03:00
9bfd276bdc flake: update lockfile 2024-04-06 20:53:27 -03:00
28eca0de78 syncthing: way for tray 2024-04-06 20:53:27 -03:00
f4ac904d47 kdenlive: fix theme 2024-04-06 20:53:27 -03:00
b38bd123f4 theme: improve qt theming 2024-04-06 20:53:27 -03:00
a033fb50f9 syncthing: enable tray icon 2024-04-06 20:53:27 -03:00
81a20bfafe mangohud: install patch to fix keybind crash 2024-04-06 20:53:27 -03:00
3fc56ee4d9 gpg: simplify config 2024-04-06 20:53:27 -03:00
8fecbbd78d update 2024-04-06 20:53:27 -03:00
9b258af023 lsp: replace rnix-lsp with nil 2024-04-06 20:53:27 -03:00
bf19e2c79d update 2024-04-06 20:53:27 -03:00
251d52c56e btop: enable gpu monitoring 2024-04-06 20:53:27 -03:00
2d42832d13 update 2024-04-06 20:53:27 -03:00
d362dd864c kak-lsp: update config to new format 2024-04-06 20:53:27 -03:00
8f3d2cacb5 alacritty: update config 2024-04-06 20:53:27 -03:00
8da08f5bee update renamed xkb config 2024-04-06 20:53:27 -03:00
ac8038d53b update 2024-04-06 20:53:27 -03:00
a2d92f034b update 2024-04-06 20:53:27 -03:00
16342e203e update 2024-04-06 20:53:27 -03:00
51e3c38d59 sway: disable adaptive sync 2024-04-06 20:53:27 -03:00
0ab0c2c5d4 update 2024-04-06 20:53:27 -03:00
d4bf6aa8ff update 2024-04-06 20:53:27 -03:00
c520de0236 switch to nixpkgs unstable 2024-04-06 20:53:27 -03:00
2 changed files with 9 additions and 1 deletions

View file

@ -15,6 +15,14 @@ in
};
};
services.openssh = {
authorizedKeysFiles = [
"${config.services.forgejo.stateDir}/.ssh/authorized_keys"
];
# Recommended by forgejo: https://forgejo.org/docs/latest/admin/recommendations/#git-over-ssh
settings.AcceptEnv = "GIT_PROTOCOL";
};
services.forgejo = {
enable = true;
database.type = "postgres";

View file

@ -11,7 +11,7 @@
git-sync = {
enable = true;
repositories.password-store = {
uri = "forgejo@lelgenio.xyz:lelgenio/password-store";
uri = "git@git.disroot.org:lelgenio/password-store";
path = toString config.programs.password-store.settings.PASSWORD_STORE_DIR;
};
};