-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
117 lines (110 loc) · 2.58 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
{
description = "ellie's nix flake";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
nix-darwin = {
# TODO: when https://github.com/LnL7/nix-darwin/pull/1168 is merged, revert back
url = "github:talhaHavadar/nix-darwin/0a3df54053439f76c1d6ef1cf44b0df767b13c3e";
inputs.nixpkgs.follows = "nixpkgs";
};
rust-overlay = {
url = "github:oxalica/rust-overlay";
inputs.nixpkgs.follows = "nixpkgs";
};
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
vscode-server = {
url = "github:nix-community/nixos-vscode-server";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
inputs@{
self,
nix-darwin,
nixpkgs,
rust-overlay,
home-manager,
vscode-server,
flake-utils,
...
}:
let
users = [
"ellie"
"devzero"
];
hosts = [
{
name = "wallsocket";
system = "aarch64-darwin";
stateVersion = "24.05";
remote = false;
}
{
name = "icedancer";
system = "aarch64-darwin";
stateVersion = "24.05";
remote = false;
}
];
systems = [
"aarch64-darwin"
"aarch64-linux"
"x86_64-linux"
];
common = user: {
# inherit (nixpkgs) lib;
inherit
inputs
nixpkgs
home-manager
nix-darwin
hosts
user
;
};
mkUser =
{ user, system, ... }:
home-manager.lib.homeManagerConfiguration {
pkgs = import nixpkgs {
inherit system;
config = {
allowUnfree = true;
};
overlays = [
inputs.rust-overlay.overlays.default
inputs.jujutsu.overlays.default
];
};
extraSpecialArgs = (common user) // {
stateVersion = "24.05";
inherit system;
};
modules = [
./nix/home.nix
];
};
in
(
{
darwinConfigurations = import ./nix (
common "ellie"
// {
isDarwin = true;
}
);
}
// flake-utils.lib.eachSystem systems (system: {
packages.homeConfigurations = builtins.listToAttrs (
map (user: {
name = user;
value = mkUser { inherit user system; };
}) users
);
})
);
}