Install treesit-auto
This commit is contained in:
parent
bd2d8ae24f
commit
0049390e89
3 changed files with 43 additions and 15 deletions
18
.config/nix/modules/host-users-work.nix
Normal file
18
.config/nix/modules/host-users-work.nix
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
{ pkgs, ... }:
|
||||
let
|
||||
hostname = "TobWorkJambit";
|
||||
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 ];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue