me like nix
1{
2 description = "My NixOS Flake Configuration";
3
4 nixConfig = {
5 extra-substituters = [
6 "https://niri.cachix.org"
7 "https://noctalia.cachix.org"
8 ];
9 extra-trusted-public-keys = [
10 "niri.cachix.org-1:Wv0OmO7PsuocRKzfDoJ3mulSl7Z6oezYhGhR+3W2964="
11 "noctalia.cachix.org-1:pCOR47nnMEo5thcxNDtzWpOxNFQsBRglJzxWPp3dkU4="
12 ];
13 };
14
15 inputs = {
16 nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
17 flake-parts.url = "github:hercules-ci/flake-parts";
18 import-tree.url = "github:vic/import-tree";
19 macro = {
20 url = "github:macro-inc/macro";
21 inputs.nixpkgs.follows = "nixpkgs";
22 };
23
24 home-manager = {
25 url = "github:nix-community/home-manager/master";
26 inputs.nixpkgs.follows = "nixpkgs";
27 };
28 niri.url = "github:sodiboo/niri-flake";
29 noctalia.url = "github:noctalia-dev/noctalia";
30 noctalia-template-zellij = {
31 url = "git+https://tangled.org/seanaye.bsky.social/noctalia-template-zellij";
32 flake = false;
33 };
34 nixarr.url = "github:rasmus-kirk/nixarr";
35 zen-browser = {
36 url = "github:0xc000022070/zen-browser-flake";
37 inputs.nixpkgs.follows = "nixpkgs";
38 };
39 copyparty.url = "github:9001/copyparty";
40 nixos-hardware.url = "github:NixOS/nixos-hardware/master";
41 agenix = {
42 url = "github:ryantm/agenix";
43 inputs.nixpkgs.follows = "nixpkgs";
44 };
45 fsel = {
46 url = "github:Mjoyufull/fsel";
47 inputs.nixpkgs.follows = "nixpkgs";
48 };
49 trmnl-rs = {
50 url = "github:seanaye/trmnl-rs";
51 inputs.nixpkgs.follows = "nixpkgs";
52 };
53 berkeley-mono = {
54 url = "path:./berkeley-mono-stub";
55 inputs.nixpkgs.follows = "nixpkgs";
56 };
57 opencodex = {
58 url = "git+https://codeberg.org/seanaye/opencodex";
59 inputs.nixpkgs.follows = "nixpkgs";
60 };
61 nixos-raspberrypi.url = "github:nvmd/nixos-raspberrypi/main";
62 };
63
64 outputs =
65 inputs:
66 inputs.flake-parts.lib.mkFlake { inherit inputs; } (inputs.import-tree ./modules);
67}