this repo has no description
at master 751 B view raw
1{inputs, ...}: { 2 type = "darwin"; 3 4 hostname = "Supadupa"; 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 ../modules/nvim.nix 21 { 22 system.stateVersion = 4; 23 documentation.enable = true; 24 } 25 inputs.lix-module.nixosModules.default 26 inputs.home-manager.darwinModules.home-manager 27 ]; 28 29 inherit inputs; 30 }; 31}