options to settings

This commit is contained in:
2025-07-19 12:25:07 +02:00
parent b92c4dc53f
commit 323dfcbc82
21 changed files with 147 additions and 147 deletions

View File

@@ -15,8 +15,8 @@ in {
home.packages = [pkgs.gh];
programs.git = {
enable = true;
userName = osConfig.accounts.username;
userEmail = osConfig.accounts.mail;
userName = osConfig.settings.accounts.username;
userEmail = osConfig.settings.accounts.mail;
delta = {
enable = true;
options.dark = true;
@@ -54,7 +54,7 @@ in {
];
};
xdg.configFile."git/allowed_signers".text = ''
${osConfig.accounts.mail} namespaces="git" ${osConfig.accounts.sshKey}
${osConfig.settings.accounts.mail} namespaces="git" ${osConfig.settings.accounts.sshKey}
'';
};
}

View File

@@ -31,7 +31,7 @@ in {
background = [
{
monitor = "";
path = osConfig.theme.background.lockscreen;
path = osConfig.settings.theme.background.lockscreen;
}
];
input-field = [

View File

@@ -43,12 +43,12 @@ in {
wallpaper = [
# kima
"DP-3,${osConfig.theme.background.desktop}"
"HDMI-A-1,${osConfig.theme.background.lockscreen}"
"DP-3,${osConfig.settings.theme.background.desktop}"
"HDMI-A-1,${osConfig.settings.theme.background.lockscreen}"
# bunk
"eDP-1,${osConfig.theme.background.desktop}"
"eDP-1,${osConfig.settings.theme.background.desktop}"
# toothpc
"DVI-D-1,${osConfig.theme.background.desktop}"
"DVI-D-1,${osConfig.settings.theme.background.desktop}"
];
};
};