mirror of
https://github.com/harivansh-afk/nix.git
synced 2026-04-15 11:02:19 +00:00
21 lines
443 B
Nix
21 lines
443 B
Nix
{ username }:
|
|
{
|
|
darwin = {
|
|
name = "darwin";
|
|
kind = "darwin";
|
|
system = "aarch64-darwin";
|
|
hostname = "hari-macbook-pro";
|
|
homeModule = ../home;
|
|
homeDirectory = "/Users/${username}";
|
|
};
|
|
|
|
netty = {
|
|
name = "netty";
|
|
kind = "nixos";
|
|
system = "x86_64-linux";
|
|
hostname = "netty";
|
|
homeModule = ../home/netty.nix;
|
|
standaloneHomeModule = ../hosts/netty;
|
|
homeDirectory = "/home/${username}";
|
|
};
|
|
}
|