-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
69 lines (51 loc) · 1.88 KB
/
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
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
68
69
{
description = "AxiOS";
inputs = {
# Make nixpkgs follow nixos-cosmic to avoid compiling cosmic
nixpkgs.follows = "nixos-cosmic/nixpkgs";
# Uncomment the desired nixpkgs source
# nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
# nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
# nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable-small";
# nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.1";
# FlakeHub/Determinate
# determinate.url = "https://flakehub.com/f/DeterminateSystems/determinate/0.1";
fh.url = "https://flakehub.com/f/DeterminateSystems/fh/*.tar.gz";
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
flake-parts = {
inputs.nixpkgs-lib.follows = "nixpkgs";
url = "github:hercules-ci/flake-parts";
};
flake-utils.inputs.systems.follows = "systems";
systems.url = "github:nix-systems/x86_64-linux";
home-manager = {
inputs.nixpkgs.follows = "nixpkgs";
url = "github:nix-community/home-manager";
};
devshell = {
inputs.nixpkgs.follows = "nixpkgs";
url = "github:numtide/devshell";
};
flake-utils.url = "github:numtide/flake-utils";
nixos-cosmic.url = "github:lilyinstarlight/nixos-cosmic";
nix-gaming.url = "github:fufexan/nix-gaming";
lanzaboote = {
url = "github:nix-community/lanzaboote";
inputs.nixpkgs.follows = "nixpkgs";
};
# Quickemu is constantly breaking in nixpkgs, use the flake from flakehub
quickemu.url = "https://flakehub.com/f/quickemu-project/quickemu/4.9.7.tar.gz";
vscode-server.url = "github:nix-community/nixos-vscode-server";
};
outputs =
inputs@{ nixpkgs, flake-parts, systems, ... }:
flake-parts.lib.mkFlake { inherit inputs; } {
systems = import systems;
imports = [
./pkgs
./hosts
./modules
./home
];
};
}