mu: correct git work email

This commit is contained in:
Casper V. Kristensen 2023-10-09 14:48:17 +02:00
parent 4a15a74a2e
commit 24c36f614b
2 changed files with 12 additions and 4 deletions

View file

@ -1,13 +1,14 @@
{ ... }: {
imports = [
./hardware.nix
./fish.nix
./hosts.nix
./packages.nix
./sway.nix
../../overlays
../../modules/base
../../modules/desktop
./fish.nix
./git.nix
./hosts.nix
./packages.nix
./sway.nix
];
networking.hostName = "mu";

7
hosts/mu/git.nix Normal file
View file

@ -0,0 +1,7 @@
{ home-manager, lib, ... }: {
home-manager.users.caspervk = {
programs.git = {
userEmail = lib.mkForce "vk@magenta.dk";
};
};
}