refactor(darwin): import via ./hosts

rename modules/ -> hosts/
This commit is contained in:
Poby 2026-03-16 22:01:29 +09:00
parent cf1d776efa
commit fb3f35e153
No known key found for this signature in database
6 changed files with 9 additions and 6 deletions

View file

@ -1,18 +0,0 @@
{
username,
hostname,
...
}: {
networking = {
hostName = hostname;
computerName = hostname;
localHostName = hostname;
};
users.users."${username}" = {
home = "/Users/${username}";
description = username;
};
nix.settings.trusted-users = [username];
}