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
20 home-manager = {
21 url = "github:nix-community/home-manager/master";
22 inputs.nixpkgs.follows = "nixpkgs";
23 };
24 niri.url = "github:sodiboo/niri-flake";
25 noctalia.url = "github:noctalia-dev/noctalia";
26 noctalia-template-zellij = {
27 url = "git+https://tangled.org/seanaye.bsky.social/noctalia-template-zellij";
28 flake = false;
29 };
30 nixarr.url = "github:rasmus-kirk/nixarr";
31 zen-browser = {
32 url = "github:0xc000022070/zen-browser-flake";
33 inputs.nixpkgs.follows = "nixpkgs";
34 };
35 copyparty.url = "github:9001/copyparty";
36 nixos-hardware.url = "github:NixOS/nixos-hardware/master";
37 agenix = {
38 url = "github:ryantm/agenix";
39 inputs.nixpkgs.follows = "nixpkgs";
40 };
41 fsel = {
42 url = "github:Mjoyufull/fsel";
43 inputs.nixpkgs.follows = "nixpkgs";
44 };
45 trmnl-rs = {
46 url = "github:seanaye/trmnl-rs";
47 inputs.nixpkgs.follows = "nixpkgs";
48 };
49 berkeley-mono = {
50 url = "path:./berkeley-mono-stub";
51 inputs.nixpkgs.follows = "nixpkgs";
52 };
53 mako-tui = {
54 url = "git+https://codeberg.org/seanaye/mako-tui";
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}