nix: format with alejandra

This commit is contained in:
Primrose 2025-02-08 12:05:12 +01:00
parent d5cad148da
commit 95eb4b71e0
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
118 changed files with 1291 additions and 1703 deletions

View file

@ -1,5 +1,4 @@
{ lib, ... }:
{
{lib, ...}: {
# git plugins
programs.git = {
lfs.enable = true;
@ -54,22 +53,20 @@
};
};
programs.git.includes =
let
universityIdentity = url: {
condition = "hasconfig:remote.*.url:git@${url}:*/**";
contents = {
init.defaultBranch = "main";
user = {
name = "Léana CHIANG";
email = "leana.chiang@etudiant.univ-rennes1.fr";
signingKey = "0x32035DB97E777EEB";
};
programs.git.includes = let
universityIdentity = url: {
condition = "hasconfig:remote.*.url:git@${url}:*/**";
contents = {
init.defaultBranch = "main";
user = {
name = "Léana CHIANG";
email = "leana.chiang@etudiant.univ-rennes1.fr";
signingKey = "0x32035DB97E777EEB";
};
};
in
[
(universityIdentity "gitlab.istic.univ-rennes1.fr")
(universityIdentity "gitlab2.istic.univ-rennes1.fr")
];
};
in [
(universityIdentity "gitlab.istic.univ-rennes1.fr")
(universityIdentity "gitlab2.istic.univ-rennes1.fr")
];
}