-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
35 lines (28 loc) · 1.04 KB
/
Copy pathflake.nix
File metadata and controls
35 lines (28 loc) · 1.04 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
{
description = "My NixOS system flake";
inputs = {
bun2nix.inputs.flake-parts.follows = "flake-parts";
bun2nix.inputs.nixpkgs.follows = "nixpkgs";
bun2nix.inputs.treefmt-nix.follows = "treefmt-nix";
bun2nix.url = "github:nix-community/bun2nix";
eupkgs.inputs.nixpkgs.follows = "nixpkgs-unstable";
eupkgs.url = "github:euvlok/pkgs";
flake-parts.inputs.nixpkgs-lib.follows = "nixpkgs";
flake-parts.url = "github:hercules-ci/flake-parts";
nixcord.inputs.flake-parts.follows = "flake-parts";
nixcord.inputs.nixpkgs.follows = "nixpkgs-unstable";
nixcord.url = "github:4evy/nixcord";
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable-small";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
treefmt-nix.inputs.nixpkgs.follows = "nixpkgs";
treefmt-nix.url = "github:numtide/treefmt-nix";
};
outputs =
inputs:
inputs.flake-parts.lib.mkFlake { inherit inputs; } {
imports = [
inputs.flake-parts.flakeModules.partitions
./lib/flake.nix
];
};
}