-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
179 lines (167 loc) · 4.82 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
{
description = "My NixOS config";
inputs = {
# Where we get most of our software. Giant mono repo with recipes
# called derivations that say how to build software.
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
# Manages configs links things into your home directory
home-manager.url = "github:nix-community/home-manager/master";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
# Controls system level software and settings including fonts
darwin.url = "github:lnl7/nix-darwin";
darwin.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = {
self,
nixpkgs,
home-manager,
darwin,
...
} @ inputs: let
eachSupportedSystem = nixpkgs.lib.genAttrs [
"x86_64-linux"
"aarch64-darwin"
"aarch64-linux"
];
legacyPackages = eachSupportedSystem (
system:
import nixpkgs {
inherit system;
config = {
allowUnfree = true;
};
overlays = with inputs; [
#nur.overlay
#emacs.overlay
];
}
);
mkDarwinHost = darwin.lib.darwinSystem;
in
#mkHome = home-manager.lib.homeManagerConfiguration;
{
#homeManagerModules = import ./modules/home-manager;
#darwinModules = import ./modules/host;
devShells = eachSupportedSystem (system: {
default = import ./shell.nix {pkgs = legacyPackages.${system};};
});
formatter = eachSupportedSystem (system: legacyPackages.${system}.alejandra);
darwinConfigurations."thekorn-macbook" = mkDarwinHost {
pkgs = import nixpkgs {
system = "aarch64-darwin";
config.allowUnfree = true;
};
modules = [
./hosts/darwin/thekornMacbook.nix
home-manager.darwinModules.home-manager
(
{
config,
lib,
pkgs,
...
}: let
primaryUser = "thekorn";
in {
home-manager.extraSpecialArgs = {
inherit self inputs;
};
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.${primaryUser}.imports = [./home/thekornMacbook.nix];
}
)
];
specialArgs = {
inherit self inputs;
};
};
darwinConfigurations."thekorn-studio" = mkDarwinHost {
pkgs = import nixpkgs {
system = "aarch64-darwin";
config.allowUnfree = true;
};
modules = [
./hosts/darwin/thekornStudio.nix
home-manager.darwinModules.home-manager
(
{
config,
lib,
pkgs,
...
}: let
primaryUser = "thekorn";
in {
home-manager.extraSpecialArgs = {
inherit self inputs;
};
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.${primaryUser}.imports = [./home/thekornStudio.nix];
}
)
];
specialArgs = {
inherit self inputs;
};
};
darwinConfigurations."BFG-024849" = mkDarwinHost {
pkgs = import nixpkgs {
system = "aarch64-darwin";
config.allowUnfree = true;
};
modules = [
./hosts/darwin/thekornWork.nix
home-manager.darwinModules.home-manager
(
{
config,
lib,
pkgs,
...
}: let
primaryUser = "d438477";
in {
home-manager.extraSpecialArgs = {
inherit self inputs;
};
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.${primaryUser}.imports = [./home/thekornWork.nix];
}
)
];
specialArgs = {
inherit self inputs;
};
};
nixosConfigurations.thekorn-server = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./hosts/linux/thekorn-server.nix
home-manager.nixosModules.home-manager
(
{
config,
lib,
pkgs,
...
}: let
primaryUser = "thekorn";
in {
home-manager.extraSpecialArgs = {
inherit self inputs;
};
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.${primaryUser}.imports = [./home/thekornServer.nix];
}
)
];
specialArgs = {
inherit self inputs;
};
};
};
}