dawin/linux

This commit is contained in:
Harivansh Rathi 2026-03-22 14:47:28 -04:00
parent 5cdf8fd873
commit 1e4caa255f
6 changed files with 20 additions and 19 deletions

26
hosts/darwin/default.nix Normal file
View file

@ -0,0 +1,26 @@
{
pkgs,
self,
username,
hostname,
...
}: {
imports = [
../../modules/base.nix
../../modules/macos.nix
../../modules/packages.nix
../../modules/homebrew.nix
];
networking.hostName = hostname;
users.users.${username} = {
name = username;
home = "/Users/${username}";
shell = pkgs.zsh;
};
system.primaryUser = username;
system.configurationRevision = self.rev or self.dirtyRev or null;
system.stateVersion = 6;
}