Split up Librewolf CSS to make it more readable

This commit is contained in:
Jimbo 2024-11-13 03:43:51 -05:00
parent ffb1b6d541
commit e0d8fd1473
17 changed files with 303 additions and 359 deletions

View file

@ -25,7 +25,7 @@
organizationName = "Jimbo's Files";
};
# A list of accounts, passwords generated with nix-shell -p mkpasswd --run 'mkpasswd -sm bcrypt'
# Passwords generated with 'mkpasswd -sm bcrypt'
loginAccounts = {
"noreply@${config.domains.jim1}" = {
hashedPasswordFile = pkgs.writeText "noreply" config.secrets.noreplyMailHash;
@ -34,11 +34,11 @@
"jimbo@${config.domains.jim2}" = {
hashedPasswordFile = pkgs.writeText "jimbo" config.secrets.jimboMailHash;
aliases = [
"jimbo@${config.domains.jim1}"
"james@${config.domains.jim1}"
"james@${config.domains.jim2}"
"contact@${config.domains.jim1}"
"contact@${config.domains.jim2}"
"jimbo@${config.domains.jim1}"
"james@${config.domains.jim1}"
"james@${config.domains.jim2}"
"contact@${config.domains.jim1}"
"contact@${config.domains.jim2}"
];
};
"luna@${config.domains.luna}" = {
@ -53,6 +53,6 @@
};
};
# Assign the correct port
# Rspamd port from earlier to avoid overlap
services.redis.servers.rspamd.port = 1515;
}