-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflake.nix
More file actions
54 lines (42 loc) · 1.71 KB
/
flake.nix
File metadata and controls
54 lines (42 loc) · 1.71 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
{
description = "MATOO's dendritic NixOS config";
inputs = {
# packages
# nixpkgs.url = "github:nixos/nixpkgs/25.11";
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixpkgs-unstable";
# home manager
# home-manager.url = "github:nix-community/home-manager/release-25.11";
home-manager.url = "github:nix-community/home-manager";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
# impermanence
# preservation.url = "github:nix-community/preservation";
impermanence.url = "github:nix-community/impermanence";
# config architecture
flake-parts.url = "github:hercules-ci/flake-parts";
import-tree.url = "github:vic/import-tree/latest";
# hardware
disko.url = "github:nix-community/disko";
disko.inputs.nixpkgs.follows = "nixpkgs-unstable";
# lanzaboote.url = "github:nix-community/lanzaboote"; # secure boot
# # nvim
nvf.url = "github:notashelf/nvf";
nvf.inputs.nixpkgs.follows = "nixpkgs-unstable";
# # theming
# stylix.url = "github:nix-community/stylix/release-25.11";
stylix.url = "github:nix-community/stylix";
stylix.inputs.nixpkgs.follows = "nixpkgs";
# # search nixpkgs files
nix-index-database.url = "github:nix-community/nix-index-database";
nix-index-database.inputs.nixpkgs.follows = "nixpkgs";
# # run arbitrary binaries
nix-alien.url = "github:thiagokokada/nix-alien";
nix-alien.inputs.nixpkgs.follows = "nixpkgs";
# discord plugins
nixcord.url = "github:FlameFlag/nixcord";
nixcord.inputs.nixpkgs.follows = "nixpkgs";
# # module wrappers
wrapper-modules.url = "github:BirdeeHub/nix-wrapper-modules";
};
outputs = inputs: inputs.flake-parts.lib.mkFlake {inherit inputs;} (inputs.import-tree ./modules);
}