this repo has no description
1{ inputs, ... }:
2{
3 type = "darwin";
4
5 hostname = "NiunioBook";
6
7 system = inputs.darwin.lib.darwinSystem {
8 system = "aarch64-darwin";
9 modules = [
10 {
11 # You should generally set this to the total number of logical cores in your system.
12 # $ sysctl -n hw.ncpu
13 nix.settings.max-jobs = 8;
14 nix.settings.cores = 8;
15 }
16 ../modules/common.nix
17 ../modules/darwin.nix
18 ../modules/fonts.nix
19 ./modules/environment.nix
20 ./modules/builders.nix
21 {
22 system.stateVersion = 5;
23 documentation.enable = true;
24 }
25 inputs.home-manager.darwinModules.home-manager
26 {
27 users.users.hauleth.home = "/Users/hauleth";
28 home-manager.useUserPackages = true;
29 home-manager.users.hauleth = import ../users/hauleth.nix;
30 home-manager.extraSpecialArgs = { inherit inputs; };
31 }
32 ];
33
34 inherit inputs;
35 };
36}