Add unified nix configuration

This commit is contained in:
Martin Pander
2026-02-07 13:54:58 +01:00
parent 0f2baf4651
commit a81bae3a85
54 changed files with 260 additions and 3401 deletions

View File

@@ -0,0 +1,28 @@
{ config, pkgs, ... }:
{
imports = [
../../../modules/home/common.nix
../../../modules/home/llm.nix
];
home.username = "pan";
home.homeDirectory = "/home/pan";
home.stateVersion = "23.11";
programs.git.settings.user = {
name = "Martin Pander";
email = "martin.pander@knowtion.de";
};
programs.jujutsu.settings.user = {
name = "Martin Pander";
email = "martin.pander@knowtion.de";
};
programs.zsh.profileExtra = ''
source $HOME/.profile
'';
}