-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
124 lines (118 loc) · 3.48 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
{
description = "I've nixed any chance I've ever had at human interaction by building this config.";
inputs = {
# nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; # till https://github.com/LnL7/nix-darwin/issues/1176 is resolved
nixpkgs.url = "github:NixOS/nixpkgs/8809585e6937d0b07fc066792c8c9abf9c3fe5c4";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
agenix = {
url = "github:ryantm/agenix";
inputs = {
nixpkgs.follows = "nixpkgs";
darwin.follows = "darwin";
home-manager.follows = "home-manager";
};
};
pre-commit-hooks = {
url = "github:cachix/git-hooks.nix";
inputs.nixpkgs.follows = "nixpkgs";
inputs.nixpkgs-stable.follows = "nixpkgs"; # who tf cares about stability?
};
grub2-themes = {
url = "github:vinceliuice/grub2-themes";
inputs.nixpkgs.follows = "nixpkgs";
};
flake-parts = {
url = "github:hercules-ci/flake-parts";
inputs.nixpkgs-lib.follows = "nixpkgs";
};
nixos-generators = {
url = "github:nix-community/nixos-generators";
inputs.nixpkgs.follows = "nixpkgs";
};
darwin = {
url = "github:LnL7/nix-darwin/master";
inputs.nixpkgs.follows = "nixpkgs";
};
nix-monitored = {
url = "github:ners/nix-monitored";
inputs.nixpkgs.follows = "nixpkgs";
};
wakatime-lsp = {
url = "github:mrnossiom/wakatime-lsp";
inputs = {
nixpkgs.follows = "nixpkgs";
gitignore.follows = "pre-commit-hooks/gitignore";
};
};
};
outputs =
inputs:
inputs.flake-parts.lib.mkFlake { inherit inputs; } {
systems = [
"x86_64-linux"
"aarch64-darwin"
];
imports = [
./packages/flake-module.nix
./dev/flake-module.nix
inputs.pre-commit-hooks.flakeModule
];
perSystem =
{
config,
pkgs,
system,
inputs',
...
}:
{
_module.args.pkgs = import inputs.nixpkgs {
inherit system;
config.allowUnfree = true;
};
pre-commit.settings.hooks = {
nixfmt-rfc-style.enable = true;
nil.enable = true;
deadnix.enable = true;
statix.enable = true;
};
devShells.default = pkgs.mkShellNoCC {
packages = [ inputs'.agenix.packages.agenix ];
shellHook = ''
${config.pre-commit.installationScript}
'';
};
packages.iso = inputs.nixos-generators.nixosGenerate {
system = "x86_64-linux";
modules = [ ./hosts/iso/default.nix ];
format = "iso";
};
};
flake = {
nixosModules.dogu = import ./modules/hosts/nixos.nix;
darwinModules.dogu = import ./modules/hosts/darwin.nix;
homeManagerModules.dogu = import ./modules/home-manager;
nixosConfigurations = {
nebula = inputs.nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {
inherit inputs;
};
modules = [ ./hosts/nebula ];
};
};
darwinConfigurations = {
dou-mek = inputs.darwin.lib.darwinSystem {
system = "aarch64-darwin";
specialArgs = {
inherit inputs;
};
modules = [ ./hosts/m1 ];
};
};
};
};
}