Refactor nix config

This commit is contained in:
Martin Pander
2026-02-06 21:41:49 +01:00
parent 8ca8d55826
commit 744cb9eb0d
17 changed files with 156 additions and 347 deletions

View File

@@ -1,13 +1,22 @@
{ config, pkgs, ... }:
{
imports = [
../../../modules/home/common.nix
];
home.username = "martin";
home.homeDirectory = "/Users/martin";
home.stateVersion = "24.05"; # Please read the comment before changing.
home.stateVersion = "24.05";
programs.git = {
userName = "Martin";
userEmail = "git@pander-on.de";
programs.git.settings.user = {
name = "Martin Pander";
email = "git@pander-on.de";
};
programs.jujutsu.settings.user = {
name = "Martin Pander";
email = "git@pander-on.de";
};
}