-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathflake.nix
34 lines (32 loc) · 874 Bytes
/
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
{
description = "SnowflakeOS Modules";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
nix-software-center = {
url = "github:snowfallorg/nix-software-center";
inputs.nixpkgs.follows = "nixpkgs";
};
nixos-conf-editor = {
url = "github:snowfallorg/nixos-conf-editor";
inputs.nixpkgs.follows = "nixpkgs";
};
snow = {
url = "github:snowfallorg/snow";
inputs.nixpkgs.follows = "nixpkgs";
};
snowflakeos-module-manager = {
url = "github:snowfallorg/snowflakeos-module-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
snowfall-lib = {
url = "github:snowfallorg/lib";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = inputs:
inputs.snowfall-lib.mkFlake {
inherit inputs;
channels-config.allowUnfree = true;
src = ./.;
};
}