this repo has no description
1{inputs, ...}: {
2 type = "darwin";
3
4 hostname = "NiunioBook";
5
6 system = inputs.darwin.lib.darwinSystem {
7 system = "aarch64-darwin";
8 modules = [
9 {
10 # You should generally set this to the total number of logical cores in your system.
11 # $ sysctl -n hw.ncpu
12 nix.settings.max-jobs = 8;
13 nix.settings.cores = 8;
14 }
15 ../modules/common.nix
16 ../modules/darwin.nix
17 ../modules/fonts.nix
18 ./modules/environment.nix
19 ./modules/builders.nix
20 {
21 system.stateVersion = 5;
22 documentation.enable = true;
23 }
24 inputs.lix-module.nixosModules.default
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}