This commit is contained in:
2025-08-11 12:54:27 +00:00
parent 50afb5d0e3
commit 5276b5d30f
2 changed files with 5 additions and 2 deletions

View File

@@ -1,6 +1,4 @@
{ {
config,
pkgs,
user, user,
... ...
}: { }: {

View File

@@ -1,6 +1,7 @@
{ {
pkgs, pkgs,
hostname, hostname,
user,
... ...
}: { }: {
imports = [ imports = [
@@ -41,4 +42,8 @@
hostName = hostname; hostName = hostname;
useDHCP = true; useDHCP = true;
}; };
home-manager.users.${user} = {
programs.git.userEmail = "christoph@schmatzler.com";
};
} }