-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
47 lines (41 loc) · 1.74 KB
/
flake.nix
File metadata and controls
47 lines (41 loc) · 1.74 KB
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
{
nixConfig = {
extra-substituters = [
"https://cache.garnix.io"
"https://nix-community.cachix.org"
"https://deploy-rs.cachix.org"
"https://noctalia.cachix.org"
"https://vicinae.cachix.org"
];
extra-trusted-public-keys = [
"cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g="
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
"deploy-rs.cachix.org-1:xfNobmiwF/vzvK1gpfediPwpdIP0rpDV2rYqx40zdSI="
"noctalia.cachix.org-1:pCOR47nnMEo5thcxNDtzWpOxNFQsBRglJzxWPp3dkU4="
"vicinae.cachix.org-1:1kDrfienkGHPYbkpNj1mWTr7Fm1+zcenzgTizIcI3oc="
];
builders-use-substitutes = true;
connect-timeout = 5;
warn-dirty = false;
download-buffer-size = 524288000;
};
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
nixpkgs-legacy.url = "github:NixOS/nixpkgs/24.05"; # for work ansible
flake-parts.url = "github:hercules-ci/flake-parts";
import-tree.url = "github:vic/import-tree";
wrapper-modules.url = "github:BirdeeHub/nix-wrapper-modules";
deploy-rs.url = "github:serokell/deploy-rs";
disko.url = "github:nix-community/disko";
git-hooks.url = "github:cachix/git-hooks.nix";
home-manager.url = "github:nix-community/home-manager";
krewfile.url = "github:brumhard/krewfile";
noctalia.url = "github:noctalia-dev/noctalia-shell";
nix-index-database.url = "github:nix-community/nix-index-database";
nixos-anywhere.url = "github:nix-community/nixos-anywhere";
sops-nix.url = "github:Mic92/sops-nix";
stylix.url = "github:danth/stylix";
vicinae.url = "github:vicinaehq/vicinae";
};
outputs = inputs: inputs.flake-parts.lib.mkFlake { inherit inputs; } (inputs.import-tree ./modules);
}