Compare commits

..

25 commits

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