mirror of
https://github.com/tuxdotrs/tawm.git
synced 2025-07-06 21:16:35 +05:30
refactor: move email to global variable
This commit is contained in:
@ -1,9 +1,13 @@
|
||||
{pkgs, ...}: {
|
||||
{
|
||||
pkgs,
|
||||
email,
|
||||
...
|
||||
}: {
|
||||
programs.rbw = {
|
||||
enable = true;
|
||||
settings = {
|
||||
base_url = "https://bw.tux.rs";
|
||||
email = "0xtux@pm.me";
|
||||
email = "${email}";
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -1,8 +1,8 @@
|
||||
{...}: {
|
||||
{email, ...}: {
|
||||
programs.git = {
|
||||
enable = true;
|
||||
userName = "tuxdotrs";
|
||||
userEmail = "t@tux.rs";
|
||||
userEmail = "${email}";
|
||||
signing = {
|
||||
key = "~/.ssh/id_ed25519.pub";
|
||||
signByDefault = true;
|
||||
|
Reference in New Issue
Block a user