work email

This commit is contained in:
Motiejus Jakštys 2023-10-06 14:32:52 +03:00 committed by Motiejus Jakštys
parent e1504e6ba9
commit 131932abdc
2 changed files with 7 additions and 3 deletions

View File

@ -247,12 +247,15 @@
// flake-utils.lib.eachDefaultSystem (system: let // flake-utils.lib.eachDefaultSystem (system: let
pkgs = import nixpkgs {inherit system;}; pkgs = import nixpkgs {inherit system;};
in { in {
homeConfigurations.motiejus = home-manager.lib.homeManagerConfiguration { homeConfigurations.motiejusja = home-manager.lib.homeManagerConfiguration {
inherit pkgs; inherit pkgs;
modules = [ modules = [
shared/home shared/home
]; ];
extraSpecialArgs = {stateVersion = "23.05";}; extraSpecialArgs = {
stateVersion = "23.05";
email = "motiejusja@wix.com";
};
}; };
devShells.default = pkgs.mkShellNoCC { devShells.default = pkgs.mkShellNoCC {

View File

@ -1,6 +1,7 @@
{ {
pkgs, pkgs,
stateVersion, stateVersion,
email,
... ...
}: { }: {
home = { home = {
@ -27,7 +28,7 @@
programs.git = { programs.git = {
enable = true; enable = true;
userEmail = "motiejus@jakstys.lt"; userEmail = email;
userName = "Motiejus Jakštys"; userName = "Motiejus Jakštys";
aliases.yolo = "commit --amend --no-edit -a"; aliases.yolo = "commit --amend --no-edit -a";
extraConfig = { extraConfig = {