Initial commit

This commit is contained in:
2026-02-28 14:18:57 +01:00
commit 8110e8f10b
45 changed files with 6381 additions and 0 deletions

21
modules/dev.nix Normal file
View File

@@ -0,0 +1,21 @@
{
lux.dev = {
homeManager = {
programs.git = {
enable = true;
settings = {
# TODO: Don't hardcode name and mail
user.name = "kiri";
user.email = "mail@jelles.net";
init.defaultBranch = "main";
};
};
programs.direnv = {
enable = true;
enableZshIntegration = true;
nix-direnv.enable = true;
};
};
};
}