Add Luna to Kitty

This commit is contained in:
Bun 2025-04-04 04:04:39 -04:00
parent f5749eebf3
commit b4c1494eb3
3 changed files with 17 additions and 3 deletions

View file

@ -1,6 +1,6 @@
{ pkgs, ... }:
{
users.users."corn" = {
users.users."freecorn" = {
isNormalUser = true;
createHome = true;
openssh.authorizedKeys.keys = [
@ -11,5 +11,5 @@
shell = pkgs.zsh;
};
environment.persistence."/persist".directories = [ "/home/corn" ];
environment.persistence."/persist".directories = [ "/home/freecorn" ];
}