-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
50 lines (44 loc) · 1.28 KB
/
flake.nix
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
{
description = "minusfive's system(s) config";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
# Hhome-manager
home-manager.url = "github:nix-community/home-manager";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
# macOS
nix-darwin.url = "github:LnL7/nix-darwin";
nix-darwin.inputs.nixpkgs.follows = "nixpkgs";
# Homebrew
nix-homebrew.url = "github:zhaofengli-wip/nix-homebrew";
nix-homebrew.inputs.nixpkgs.follows = "nixpkgs";
nix-homebrew.inputs.nix-darwin.follows = "nix-darwin";
homebrew-core = {
url = "github:homebrew/homebrew-core";
flake = false;
};
homebrew-cask = {
url = "github:homebrew/homebrew-cask";
flake = false;
};
homebrew-bundle = {
url = "github:homebrew/homebrew-bundle";
flake = false;
};
};
outputs =
inputs:
let
mkSystem = import ./nix/lib/mkSystem.nix { inherit inputs; };
in
{
darwinConfigurations = {
# Build with: `$ darwin-rebuild build --flake .#personal`
personal = mkSystem {
user = "minusfive";
system = "aarch64-darwin";
};
# Build with: `$ darwin-rebuild build --flake .#work`
# work = mkSystem { user = ""; system = ""; };
};
};
}