-
Notifications
You must be signed in to change notification settings - Fork 2
/
flake.nix
97 lines (83 loc) · 2.46 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
{
description = "soxin: opiniated configs for everyone";
inputs = {
deploy-rs.url = "github:serokell/deploy-rs";
flake-utils-plus.url = "github:gytis-ivaskevicius/flake-utils-plus/1.5.0";
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
nixpkgs.url = "github:NixOS/nixpkgs";
nur.url = "github:nix-community/NUR";
darwin = {
url = "github:lnl7/nix-darwin/master";
inputs.nixpkgs.follows = "nixpkgs";
};
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
pre-commit-hooks = {
inputs.nixpkgs.follows = "nixpkgs";
url = "github:cachix/pre-commit-hooks.nix";
};
sops-nix = {
url = "github:Mic92/sops-nix";
inputs = {
nixpkgs.follows = "nixpkgs-unstable";
nixpkgs-stable.follows = "nixpkgs";
};
};
};
outputs =
{
flake-utils-plus,
pre-commit-hooks,
nixpkgs,
self,
...
}@inputs:
let
inherit (nixpkgs) lib;
inherit (lib) recurseIntoAttrs recursiveUpdate;
inherit (flake-utils-plus.lib) eachDefaultSystem flattenTree;
anySystemOutputs = {
defaultTemplate = {
path = ./template;
description = "Template for a personal soxincfg repository.";
};
lib = import ./lib inputs;
nixosModules = (import ./modules) // {
soxin = import ./modules/soxin.nix;
};
nixosModule = self.nixosModules.soxin;
overlays.default = final: prev: { soxin = import ./pkgs prev; };
};
specificSystemOutputs = eachDefaultSystem (
system:
let
pkgs = nixpkgs.legacyPackages.${system};
pre-commit-check = pre-commit-hooks.lib.${pkgs.hostPlatform.system}.run {
src = ./.;
hooks = {
# TODO: Fix all errors and enable statix
# statix.enable = true;
nixfmt-rfc-style.enable = true;
};
};
in
{
checks = {
inherit pre-commit-check;
};
devShell = pkgs.mkShell {
inherit (pre-commit-check) shellHook;
buildInputs = with pkgs; [
git
nixfmt-rfc-style
];
};
packages = flattenTree (import ./pkgs pkgs);
formatter = pkgs.nixfmt-rfc-style;
}
);
in
recursiveUpdate anySystemOutputs specificSystemOutputs;
}