This repository has been archived by the owner on Jun 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
172 lines (154 loc) · 5.97 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
{
description = "Jonny's Nix env";
inputs = {
# Package sets
nixpkgs-master.url = "github:NixOS/nixpkgs/master";
nixpkgs-stable.url = "github:NixOS/nixpkgs/nixpkgs-23.11-darwin";
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
nixos-stable.url = "github:NixOS/nixpkgs/nixos-23.11";
# Environment/system management
darwin.url = "github:LnL7/nix-darwin";
darwin.inputs.nixpkgs.follows = "nixpkgs-stable";
home-manager.url = "github:nix-community/home-manager/release-23.11";
home-manager.inputs.nixpkgs.follows = "nixpkgs-stable";
# Other sources
flake-compat = { url = "github:edolstra/flake-compat"; flake = false; };
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, darwin, home-manager, flake-utils, ... }@inputs:
let
inherit (darwin.lib) darwinSystem;
inherit (inputs.nixpkgs-unstable.lib) attrValues makeOverridable optionalAttrs;
# Configuration for `nixpkgs`
nixpkgsConfig = {
config = { allowUnfree = true; };
overlays = attrValues self.overlays;
};
homeManagerStateVersion = "23.11";
primaryUserInfo = {
username = "jonny";
fullName = "Jonny Powell";
email = "jonnyowenpowell@gmail.com";
nixConfigDirectory = "/Users/jonny/.config/nix";
};
# Modules shared by most `nix-darwin` personal configurations.
nixDarwinCommonModules = attrValues self.darwinModules ++ [
# `home-manager` module
home-manager.darwinModules.home-manager
(
{ config, lib, pkgs, ... }:
let
inherit (config.users) primaryUser;
in
{
nixpkgs = nixpkgsConfig;
# Hack to support legacy worklows that use `<nixpkgs>` etc.
nix.nixPath = { nixpkgs = "${primaryUser.nixConfigDirectory}/nixpkgs.nix"; };
# `home-manager` config
users.users.${primaryUser.username}.home = "/Users/${primaryUser.username}";
home-manager.useGlobalPkgs = true;
home-manager.users.${primaryUser.username} = {
imports = attrValues self.homeManagerModules;
home.stateVersion = homeManagerStateVersion;
home.user-info = config.users.primaryUser;
};
# Add a registry entry for this flake
nix.registry.my.flake = self;
}
)
];
in
{
# My `nix-darwin` configs
darwinConfigurations = rec {
# Mininal configurations to bootstrap systems
bootstrap-x86 = makeOverridable darwinSystem {
system = "x86_64-darwin";
modules = [ ./darwin/bootstrap.nix { nixpkgs = nixpkgsConfig; } ];
};
bootstrap-arm = bootstrap-x86.override { system = "aarch64-darwin"; };
# My Apple Silicon macOS laptop config
JonnyPowellMacBook = darwinSystem {
system = "aarch64-darwin";
modules = nixDarwinCommonModules ++ [
{
users.primaryUser = primaryUserInfo;
networking.computerName = "Jonny Powell MacBook";
networking.hostName = "JonnyPowellMacBook";
networking.knownNetworkServices = [
"Wi-Fi"
"USB 10/100/1000 LAN"
];
}
];
};
};
overlays = {
# Overlays to add different versions `nixpkgs` into package set
pkgs-master = final: prev: {
pkgs-master = import inputs.nixpkgs-master {
inherit (prev.stdenv) system;
inherit (nixpkgsConfig) config;
};
};
pkgs-stable = final: prev: {
pkgs-stable = import inputs.nixpkgs-stable {
inherit (prev.stdenv) system;
inherit (nixpkgsConfig) config;
};
};
pkgs-unstable = final: prev: {
pkgs-unstable = import inputs.nixpkgs-unstable {
inherit (prev.stdenv) system;
inherit (nixpkgsConfig) config;
};
};
prefmanager = final: prev: {
prefmanager = inputs.prefmanager.defaultPackage.${prev.stdenv.system};
};
# Overlay useful on Macs with Apple Silicon
apple-silicon = final: prev: optionalAttrs (prev.stdenv.system == "aarch64-darwin") {
# Add access to x86 packages system is running Apple Silicon
pkgs-x86 = import inputs.nixpkgs-unstable {
system = "x86_64-darwin";
inherit (nixpkgsConfig) config;
};
};
};
darwinModules = {
jonny-bootstrap = import ./darwin/bootstrap.nix;
jonny-general = import ./darwin/general.nix;
jonny-homebrew = import ./darwin/homebrew.nix;
users-primaryUser = import ./modules/darwin/users.nix;
};
homeManagerModules = {
jonny-fish = import ./home/fish.nix;
jonny-git = import ./home/git.nix;
jonny-git-aliases = import ./home/git-aliases.nix;
jonny-gnupg-agent = import ./home/gnupg-agent.nix;
jonny-helix = import ./home/helix.nix;
jonny-kitty = import ./home/kitty.nix;
jonny-packages = import ./home/packages.nix;
jonny-ssh = import ./home/ssh.nix;
jonny-starship = import ./home/starship.nix;
jonny-starship-symbols = import ./home/starship-symbols.nix;
jonny-zellij = import ./home/zellij.nix;
home-user-info = { lib, ... }: {
options.home.user-info =
(self.darwinModules.users-primaryUser { inherit lib; }).options.users.primaryUser;
};
};
# Add re-export `nixpkgs` packages with overlays.
# This is handy in combination with `nix registry add my /Users/jonny/.config/nixpkgs`
} // flake-utils.lib.eachDefaultSystem (system: {
legacyPackages = import inputs.nixpkgs-unstable {
inherit system;
inherit (nixpkgsConfig) config;
overlays = with self.overlays; [
pkgs-master
pkgs-stable
apple-silicon
];
};
});
}