Install treesit-auto

This commit is contained in:
Tobias Ostner 2024-04-06 10:36:35 +02:00
parent bd2d8ae24f
commit 0049390e89
3 changed files with 43 additions and 15 deletions

View file

@ -0,0 +1,18 @@
{ pkgs, ... }:
let
hostname = "TobAir";
username = "tobi";
in
{
networking.hostName = hostname;
networking.computerName = hostname;
system.defaults.smb.NetBIOSName = hostname;
users.users."${username}" = {
home = "/Users/${username}";
description = "Tobias Ostner";
shell = pkgs.zshInteractive;
};
nix.settings.trusted-users = [ username ];
}