Files
hearth/darwin/system/yukkop/default.nix
T
yukkop 80cf1588bb
runner nix smoke / nix label smoke (push) Has been cancelled
feat: +darwin config for yukkop
2026-07-19 20:03:18 +04:00

22 lines
436 B
Nix

{
flake,
self,
inputs,
system ? "aarch64-darwin",
...
}: let
name = builtins.baseNameOf ./.;
in inputs.nix-darwin.lib.darwinSystem {
inherit system;
specialArgs = { inherit flake self inputs; };
modules = [
inputs.home-manager.darwinModules.home-manager
{
networking.hostName = name;
nixpkgs.hostPlatform = system;
nixpkgs.overlays = [ self.overlays.default ];
}
./${name}.nix
];
}