forked from malob/nixpkgs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
266 lines (237 loc) · 9.61 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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
{
description = "Malo’s Nix system configs, and some other useful stuff.";
inputs = {
# Package sets
nixpkgs-master.url = github:NixOS/nixpkgs/master;
nixpkgs-stable.url = github:NixOS/nixpkgs/nixpkgs-21.11-darwin;
nixpkgs-unstable.url = github:NixOS/nixpkgs/nixpkgs-unstable;
nixos-stable.url = github:NixOS/nixpkgs/nixos-21.11;
# Environment/system management
darwin.url = github:LnL7/nix-darwin;
darwin.inputs.nixpkgs.follows = "nixpkgs-unstable";
home-manager.url = github:nix-community/home-manager;
home-manager.inputs.nixpkgs.follows = "nixpkgs-unstable";
# Other sources
flake-compat = { url = github:edolstra/flake-compat; flake = false; };
flake-utils.url = github:numtide/flake-utils;
moses-lua = { url = github:Yonaba/Moses; flake = false; };
prefmanager.url = github:malob/prefmanager;
prefmanager.inputs.nixpkgs.follows = "nixpkgs-unstable";
};
outputs = { self, darwin, home-manager, flake-utils, ... }@inputs:
let
# Some building blocks ------------------------------------------------------------------- {{{
inherit (darwin.lib) darwinSystem;
inherit (inputs.nixpkgs-unstable.lib) attrValues makeOverridable optionalAttrs singleton;
# Configuration for `nixpkgs`
nixpkgsConfig = {
config = { allowUnfree = true; };
overlays = attrValues self.overlays ++ singleton (
# Sub in x86 version of packages that don't build on Apple Silicon yet
final: prev: (optionalAttrs (prev.stdenv.system == "aarch64-darwin") {
inherit (final.pkgs-x86)
idris2;
})
);
};
homeManagerStateVersion = "22.05";
primaryUserInfo = {
username = "lucamaraschi";
fullName = "Luca Maraschi";
email = "luca.maraschi@gmail.com";
nixConfigDirectory = "/Users/lucamaraschi/.config/nixpkgs";
};
# 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
{
# System outputs ------------------------------------------------------------------------- {{{
# 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
LucaPersonal = darwinSystem {
system = "aarch64-darwin";
modules = nixDarwinCommonModules ++ [
{
users.primaryUser = primaryUserInfo;
networking.computerName = "Luca 💻";
networking.hostName = "gotham";
networking.knownNetworkServices = [
"Wi-Fi"
"USB 10/100/1000 LAN"
];
homebrew = [
homebrew.casks = [
"microsoft-office"
"microsoft-teams"
]
]
}
];
};
# Config with small modifications needed/desired for CI with GitHub workflow
githubCI = darwinSystem {
system = "x86_64-darwin";
modules = nixDarwinCommonModules ++ [
({ lib, ... }: {
users.primaryUser = primaryUserInfo // {
username = "runner";
nixConfigDirectory = "/Users/runner/work/nixpkgs/nixpkgs";
};
homebrew.enable = lib.mkForce false;
})
];
};
};
# Config I use with Linux cloud VMs
# Build and activate with `nix build .#cloudVM.activationPackage; ./result/activate`
cloudVM = home-manager.lib.homeManagerConfiguration {
system = "x86_64-linux";
stateVersion = homeManagerStateVersion;
homeDirectory = "/home/lucamaraschi";
username = "lucamaraschi";
configuration = {
imports = attrValues self.homeManagerModules ++ singleton {
home.user-info = primaryUserInfo;
};
nixpkgs = nixpkgsConfig;
};
};
# }}}
# Non-system outputs --------------------------------------------------------------------- {{{
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 that adds various additional utility functions to `vimUtils`
vimUtils = import ./overlays/vimUtils.nix;
# Overlay that adds some additional Neovim plugins
vimPlugins = final: prev:
let
inherit (self.overlays.vimUtils final prev) vimUtils;
in
{
vimPlugins = prev.vimPlugins.extend (super: self:
(vimUtils.buildVimPluginsFromFlakeInputs inputs [
# Add plugins here
]) // {
moses-nvim = vimUtils.buildNeovimLuaPackagePluginFromFlakeInput inputs "moses-lua";
}
);
};
# 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;
};
};
# Overlay to include node packages listed in `./pkgs/node-packages/package.json`
# Run `nix run my#nodePackages.node2nix -- -14` to update packages.
nodePackages = final: prev: {
nodePackages = prev.nodePackages // import ./pkgs/node-packages { pkgs = prev; };
};
# Overlay to add some additional python packages
pythonPackages = import ./overlays/python.nix;
# Overlay that adds `lib.colors` to reference colors elsewhere in system configs
colors = import ./overlays/colors.nix;
};
darwinModules = {
# My configurations
malo-bootstrap = import ./darwin/bootstrap.nix;
malo-defaults = import ./darwin/defaults.nix;
malo-general = import ./darwin/general.nix;
malo-homebrew = import ./darwin/homebrew.nix;
# Modules I've created
programs-nix-index = import ./modules/darwin/programs/nix-index.nix;
security-pam = import ./modules/darwin/security/pam.nix;
users-primaryUser = import ./modules/darwin/users.nix;
};
homeManagerModules = {
# My configurations
malo-config-files = import ./home/config-files.nix;
malo-fish = import ./home/fish.nix;
malo-git = import ./home/git.nix;
malo-git-aliases = import ./home/git-aliases.nix;
malo-gh-aliases = import ./home/gh-aliases.nix;
malo-kitty = import ./home/kitty.nix;
malo-neovim = import ./home/neovim.nix;
malo-packages = import ./home/packages.nix;
malo-starship = import ./home/starship.nix;
malo-starship-symbols = import ./home/starship-symbols.nix;
# Modules I've created
programs-neovim-extras = import ./modules/home/programs/neovim/extras.nix;
programs-kitty-extras = import ./modules/home/programs/kitty/extras.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/malo/.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
nodePackages
];
};
});
}
# vim: foldmethod=marker