-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathflake.nix
More file actions
57 lines (51 loc) 路 1.36 KB
/
Copy pathflake.nix
File metadata and controls
57 lines (51 loc) 路 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
description = "Matan's macOS Nix configuration";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
nix-darwin = {
url = "github:nix-darwin/nix-darwin";
inputs.nixpkgs.follows = "nixpkgs";
};
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
nix-homebrew.url = "github:zhaofengli/nix-homebrew";
homebrew-bundle = {
url = "github:homebrew/homebrew-bundle";
flake = false;
};
homebrew-core = {
url = "github:homebrew/homebrew-core";
flake = false;
};
homebrew-cask = {
url = "github:homebrew/homebrew-cask";
flake = false;
};
homebrew-datadog-pack = {
url = "github:datadog-labs/homebrew-pack";
flake = false;
};
homebrew-jnsahaj-lumen = {
url = "github:jnsahaj/homebrew-lumen";
flake = false;
};
homebrew-nkzw-tech = {
url = "github:nkzw-tech/homebrew-tap";
flake = false;
};
};
outputs =
inputs@{ nixpkgs, ... }:
let
mkDarwinSystem = import ./lib/mkDarwinSystem.nix inputs;
in
{
darwinConfigurations = {
"Matans-MacBook-Air-M2" = mkDarwinSystem "m2";
"Matans-MacBook-Air-M4" = mkDarwinSystem "m4";
};
formatter.aarch64-darwin = nixpkgs.legacyPackages.aarch64-darwin.nixfmt-rfc-style;
};
}