This repository was archived by the owner on Feb 2, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathflake.nix
134 lines (117 loc) · 2.89 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
{
description = "faye's nixos configuration";
inputs = {
hooks.url = "github:cachix/pre-commit-hooks.nix";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
hardware.url = "github:NixOS/nixos-hardware";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
vim = {
url = "github:nix-community/nixvim";
inputs.nixpkgs.follows = "nixpkgs";
};
spicetify = {
url = "github:/Gerg-L/spicetify-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
faye = {
url = "github:drainpixie/pkgs";
inputs.hooks.follows = "hooks";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = {
home-manager,
spicetify,
hardware,
nixpkgs,
hooks,
self,
faye,
vim,
...
} @ inputs: let
lib = nixpkgs.lib // home-manager.lib;
systems = [
"aarch64-linux"
"i686-linux"
"x86_64-linux"
"aarch64-darwin"
"x86_64-darwin"
];
forAllSystems = lib.genAttrs systems;
mkSystem = host: system:
lib.nixosSystem {
inherit system;
specialArgs = {
inherit inputs;
};
modules = [./hosts/${host}];
};
mkHome = user: system:
lib.homeManagerConfiguration {
pkgs = import nixpkgs {
inherit system;
};
extraSpecialArgs = {
inherit inputs;
};
modules = [
./users/${user}
{
nixpkgs.overlays = [
(self: super: {
faye = faye.packages.${super.system};
})
];
}
];
};
in {
# `nixos-rebuild switch --flake .#hostname`
nixosConfigurations = {
timeline =
mkSystem "timeline" "x86_64-linux"
// {
modules = [hardware.nixosModules.dell-latitude-5520];
};
incubator =
mkSystem "incubator" "x86_64-linux"
// {
modules = [
hardware.nixosModules.common-cpu-intel-sandy-bridge
hardware.nixosModules.common-pc-hdd
];
};
};
# `home-manager switch --flake .#username@hostname`
homeConfigurations = {
"akemi@timeline" = mkHome "akemi" "x86_64-linux";
"kyubey@incubator" = mkHome "kyubey" "x86_64-linux";
};
checks = forAllSystems (system: let
lib = hooks.lib.${system};
in {
pre-commit-check = lib.run {
src = ./.;
hooks = {
alejandra.enable = true;
statix = {
enable = true;
settings.ignore = ["/.direnv"];
};
};
};
});
devShells = forAllSystems (system: let
check = self.checks.${system}.pre-commit-check;
in {
default = nixpkgs.legacyPackages.${system}.mkShell {
inherit (check) shellHook;
buildInputs = check.enabledPackages;
};
});
};
}