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 = home-manager.users.patriot =
{ config, pkgs, suites, ... }: { config, pkgs, suites, ... }:
let let
name = "Yusuf Bera Ertan"; personal = import ../../personal.nix;
email = "y.bera003.06@protonmail.com"; name = personal.name;
email = personal.emails.primary;
font = "Iosevka Term"; font = "Iosevka Term";
fontSize = 10; fontSize = 10;