-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
67 lines (63 loc) · 2.54 KB
/
flake.nix
File metadata and controls
67 lines (63 loc) · 2.54 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
description = "Nix is love. Nix is life. But Nix is also… snow.";
nixConfig = {
abort-on-warn = true;
allow-import-from-derivation = true; # for nix-doom-emacs-unstraightened
extra-experimental-features = [ "pipe-operators" ];
commit-lockfile-summary = "chore(flake): bump";
extra-substituters = [ "https://nix-community.cachix.org" ];
extra-trusted-public-keys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
};
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
systems.url = "github:nix-systems/default-linux";
flake-parts.url = "flake-parts";
flake-parts.inputs.nixpkgs-lib.follows = "nixpkgs";
nixos-hardware.url = "nixos-hardware";
disko.url = "disko";
disko.inputs.nixpkgs.follows = "nixpkgs";
home-manager.url = "home-manager";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
stylix.url = "github:nix-community/stylix";
stylix.inputs.nixpkgs.follows = "nixpkgs";
stylix.inputs.systems.follows = "systems";
stylix.inputs.flake-parts.follows = "flake-parts";
autofirma-nix.url = "github:nix-community/autofirma-nix";
autofirma-nix.inputs.nixpkgs.follows = "nixpkgs";
autofirma-nix.inputs.flake-parts.follows = "flake-parts";
autofirma-nix.inputs.home-manager.follows = "home-manager";
emacs-overlay.url = "emacs-overlay";
emacs-overlay.inputs.nixpkgs.follows = "nixpkgs";
emacs-overlay.inputs.nixpkgs-stable.follows = "nixpkgs";
doomemacs.url = "github:doomemacs/doomemacs";
doomemacs.flake = false;
doom-config.url = "github:panchoh/doom";
doom-config.flake = false;
nix-doom-emacs-unstraightened.url = "github:marienz/nix-doom-emacs-unstraightened";
nix-doom-emacs-unstraightened.inputs.nixpkgs.follows = "";
nix-doom-emacs-unstraightened.inputs.systems.follows = "systems";
nix-doom-emacs-unstraightened.inputs.emacs-overlay.follows = "emacs-overlay";
nix-doom-emacs-unstraightened.inputs.doomemacs.follows = "doomemacs";
nvf.url = "github:NotAShelf/nvf";
nvf.inputs.nixpkgs.follows = "nixpkgs";
nvf.inputs.systems.follows = "systems";
nvf.inputs.flake-parts.follows = "flake-parts";
vmtools.url = "github:4km3/vmtools";
vmtools.flake = false;
kubelab.url = "github:4km3/kubelab";
kubelab.flake = false;
};
outputs =
inputs@{
flake-parts,
nixpkgs,
systems,
...
}:
flake-parts.lib.mkFlake { inherit inputs; } {
imports = (import ./lib/import-tree.nix nixpkgs.lib ./modules);
systems = import systems;
};
}