blob: 80f8dc2f60e66d183b71a1ecb4b4778bbd7c5f25 (
plain)
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
|
{
description = "Cynerd's personal flake";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable-small";
personal-secret.url = "git+ssh://git@cynerd.cz/nixos-personal-secret";
agenix.url = "github:ryantm/agenix";
nixd.url = "github:nix-community/nixd";
shvspy.url = "git+https://github.com/silicon-heaven/shvspy.git?submodules=1";
nixturris = {
url = "github:cynerd/nixturris";
inputs.nixpkgs.follows = "nixpkgs";
};
nixbigclown.url = "github:cynerd/nixbigclown";
vpsadminos.url = "github:vpsfreecz/vpsadminos";
shellrc.url = "git+https://git.cynerd.cz/shellrc";
sterm.url = "github:wentasah/sterm";
usbkey.url = "git+https://git.cynerd.cz/usbkey?ref=modules";
};
outputs = {
self,
nixpkgs,
nix,
nixos-hardware,
flake-utils,
shellrc,
...
}:
with flake-utils.lib;
{
lib = import ./lib nixpkgs.lib;
overlays.default = final: import ./pkgs;
nixosModules = import ./nixos self;
nixosConfigurations = import ./nixos/configurations.nix self;
}
// eachDefaultSystem (system: let
pkgs = nixpkgs.legacyPackages."${system}".appendOverlays [
shellrc.overlays.default
];
in {
packages = filterPackages system (flattenTree (import ./pkgs pkgs));
legacyPackages = pkgs.extend self.overlays.default;
devShells = filterPackages system (import ./devShells pkgs);
formatter = pkgs.alejandra;
});
}
|