-
Notifications
You must be signed in to change notification settings - Fork 1
/
flake.nix
183 lines (156 loc) · 4.86 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
{
description = "NixOS & Home-Manager Configuration";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11";
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
nur.url = "github:nix-community/NUR";
systems.url = "github:nix-systems/default";
flake-utils = {
url = "github:numtide/flake-utils";
inputs.systems.follows = "systems";
};
home-manager = {
url = "github:nix-community/home-manager/release-24.11";
inputs.nixpkgs.follows = "nixpkgs";
};
darwin = {
url = "github:lnl7/nix-darwin";
inputs.nixpkgs.follows = "nixpkgs-unstable";
};
nix-on-droid = {
url = "github:nix-community/nix-on-droid/release-24.05";
inputs.home-manager.follows = "home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
pre-commit-hooks = {
url = "github:cachix/pre-commit-hooks.nix";
inputs = {
nixpkgs.follows = "nixpkgs-unstable";
nixpkgs-stable.follows = "nixpkgs";
};
};
# Modules
flake-commons = {
url = "github:rake5k/flake-commons";
inputs = {
nixpkgs.follows = "nixpkgs-unstable";
pre-commit-hooks.follows = "pre-commit-hooks";
};
};
agenix = {
url = "github:ryantm/agenix";
inputs = {
nixpkgs.follows = "nixpkgs-unstable";
systems.follows = "systems";
};
};
agenix-cli = {
url = "github:cole-h/agenix-cli";
inputs = {
flake-utils.follows = "flake-utils";
nixpkgs.follows = "nixpkgs-unstable";
};
};
homeage = {
url = "github:dbingham/homeage/checkConditionFix";
inputs.nixpkgs.follows = "nixpkgs";
};
nixgl = {
url = "github:nix-community/nixGL";
inputs = {
nixpkgs.follows = "nixpkgs-unstable";
flake-utils.follows = "flake-utils";
};
};
nix-index-database = {
url = "github:nix-community/nix-index-database";
inputs.nixpkgs.follows = "nixpkgs-unstable";
};
# Misc
wallpapers = {
type = "gitlab";
owner = "rake5k";
repo = "wallpapers";
flake = false;
};
};
outputs =
{ self, nixpkgs, ... }@inputs:
let
nixcfgLib = import ./lib { inherit inputs; };
inherit (inputs.flake-utils.lib.system) aarch64-darwin aarch64-linux x86_64-linux;
inherit (nixpkgs.lib) listToAttrs recursiveUpdate;
in
with nixcfgLib;
{
name = "nixcfg";
lib = { inputs }: import ./lib { inputs = inputs // self.inputs; };
darwinConfigurations = listToAttrs [ (mkNixDarwin aarch64-darwin "macos") ];
homeConfigurations = listToAttrs [
(mkHome x86_64-linux "christian@non-nixos")
(mkHome x86_64-linux "demo@non-nixos")
];
nixosConfigurations = listToAttrs [ (mkNixos x86_64-linux "nixos") ];
nixOnDroidConfigurations = listToAttrs [ (mkNixOnDroid aarch64-linux "nix-on-droid") ];
formatter = forEachSystem (system: nixpkgs.legacyPackages."${system}".nixfmt-rfc-style);
apps = mkForEachSystem [
(mkApp "setup" {
file = "setup.sh";
envs = {
_doNotClearPath = true;
flakePath = "/home/\$(logname)/.nix-config";
};
path =
pkgs: with pkgs; [
git
hostname
jq
];
})
(mkApp "nixos-install" {
file = "nixos-install.sh";
envs = {
_doNotClearPath = true;
};
path =
pkgs: with pkgs; [
git
hostname
util-linux
parted
cryptsetup
lvm2
];
})
];
checks =
recursiveUpdate
(forEachSystem (
system:
let
commonsLib = inputs.flake-commons.lib {
pkgs = pkgsFor."${system}";
flake = self;
};
in
commonsLib.checks
))
(
(mkForSystem aarch64-darwin [ (mkBuild "build-macos" self.darwinConfigurations.macos.system) ])
// (mkForSystem x86_64-linux [
(mkBuild "build-christian@non-nixos"
self.homeConfigurations."christian@non-nixos".activationPackage
)
(mkBuild "build-demo@non-nixos" self.homeConfigurations."demo@non-nixos".activationPackage)
(mkBuild "build-nixos" self.nixosConfigurations.nixos.config.system.build.toplevel)
])
);
devShells = mkForEachSystem [ (mkDevShell "default" { flake = self; }) ];
# Necessary for nix-tree
# Run it using `nix-tree . --impure --derivation`
packages = {
x86_64-linux.default = self.nixosConfigurations.nixos.config.system.build.toplevel;
aarch64-darwin.default = self.darwinConfigurations.macos.system;
};
};
}