init
This commit is contained in:
2025-08-04 15:37:38 +02:00
parent 3ae535f1b1
commit 703e3f8adf
57 changed files with 674 additions and 3283 deletions

View File

@@ -0,0 +1,23 @@
{
config,
pkgs,
user,
...
}:
{
imports = [
../shared.nix
];
networking.hostName = "jason";
networking.computerName = "Jason";
home-manager.users.${user} = {
programs.git.userEmail = "christoph@schmatzler.com";
};
environment.systemPackages = with pkgs; [
slack
];
}