-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
53 lines (51 loc) · 1.74 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
{
description = "My NixOS configuration";
# Inputs
inputs = {
flake-parts.url = "github:hercules-ci/flake-parts";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
nixpkgs-24_05.url = "github:NixOS/nixpkgs/nixos-24.05";
nixpkgs-24_11.url = "github:NixOS/nixpkgs/nixos-24.11";
master.url = "github:NixOS/nixpkgs";
catppuccin.url = "github:catppuccin/nix";
# TODO implement impermanence
# impermanence.url = "github:nix-community/impermanence";
disko.url = "github:nix-community/disko";
disko.inputs.nixpkgs.follows = "nixpkgs";
agenix = {
url = "github:ryantm/agenix";
inputs.darwin.follows = "";
};
fmway-nix = {
url = "github:fmway/fmway.nix";
inputs.nixpkgs.follows = "nixpkgs";
};
fmpkgs.url = "github:fmway/fmpkgs/master";
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
nixvim.url = "github:nix-community/nixvim";
nixvim.inputs.nixpkgs.follows = "nixpkgs";
nvchad = {
url = "github:fmway/NvChad.nix";
inputs.nixpkgs.follows = "nixpkgs";
inputs.nixvim.follows = "nixvim";
};
encore.url = "github:encoredev/encore-flake";
encore.inputs.nixpkgs.follows = "nixpkgs";
# TODO
# nix-colors.url = "github:misterio77/nix-colors";
home-manager.url = "github:nix-community/home-manager/master";
nixgl.url = "github:nix-community/NixGL";
nur.url = "github:nix-community/nur";
chaotic.url = "github:chaotic-cx/nyx/nyxpkgs-unstable";
};
outputs = { flake-parts, fmway-nix, ... } @ inputs:
flake-parts.lib.mkFlake {
inherit inputs;
specialArgs = { inherit (fmway-nix) lib; };
} {
systems = [ "x86_64-linux" "aarch64-linux" ];
imports = [
./top-level
];
};
}