titan doesn't need a home

This commit is contained in:
cy 2024-12-30 18:06:16 -05:00
parent 0a2eebfabc
commit 69dd25c579
7 changed files with 24 additions and 75 deletions

11
hosts/yt.nix Normal file
View file

@ -0,0 +1,11 @@
{ pkgs, ... }:
{
users.users.yt = {
isNormalUser = true;
shell = pkgs.zsh;
};
programs.zsh.enable = true;
# needed for zsh.enableCompletion to work
environment.pathsToLink = [ "/share/zsh" ];
}