refactor: seperate personal data

This commit is contained in:
dusk 2021-05-03 09:27:11 +03:00
parent ca587527aa
commit b9b734c425
Signed by: dusk
GPG Key ID: 1D8F8FAF2294D6EA
2 changed files with 10 additions and 2 deletions

7
personal.nix Normal file
View File

@ -0,0 +1,7 @@
{
name = "Yusuf Bera Ertan";
emails = {
primary = "y.bera003.06@protonmail.com";
short = "y.bera003.06@pm.me";
};
}

View File

@ -86,8 +86,9 @@ in
home-manager.users.patriot =
{ config, pkgs, suites, ... }:
let
name = "Yusuf Bera Ertan";
email = "y.bera003.06@protonmail.com";
personal = import ../../personal.nix;
name = personal.name;
email = personal.emails.primary;
font = "Iosevka Term";
fontSize = 10;