this repo has no description
1{
2 description = "A system configuration.";
3
4 inputs = {
5 nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable-small";
6 nix-darwin.url = "github:nix-darwin/nix-darwin/nix-darwin-25.11";
7 nix-darwin.inputs.nixpkgs.follows = "nixpkgs";
8 hjem.url = "github:feel-co/hjem";
9 hjem.inputs.nixpkgs.follows = "nixpkgs";
10 hjem.inputs.nix-darwin.follows = "nix-darwin";
11 impermanence.url = "github:nix-community/impermanence";
12 impermanence.inputs.nixpkgs.follows = "nixpkgs";
13 impermanence.inputs.home-manager.follows = "";
14 nixos-hardware.url = "github:nixos/nixos-hardware";
15 disko.url = "github:nix-community/disko";
16 disko.inputs.nixpkgs.follows = "nixpkgs";
17 srvos.url = "github:nix-community/srvos";
18 srvos.inputs.nixpkgs.follows = "nixpkgs";
19 nix-on-droid.url = "github:nix-community/nix-on-droid";
20 nix-on-droid.inputs.nixpkgs.follows = "nixpkgs";
21 nix-on-droid.inputs.home-manager.follows = "";
22
23 flake-parts.url = "github:hercules-ci/flake-parts";
24 import-tree.url = "github:vic/import-tree";
25 agenix.url = "github:ryantm/agenix";
26 agenix.inputs.nixpkgs.follows = "nixpkgs";
27 agenix.inputs.home-manager.follows = "";
28
29 niri.url = "github:sodiboo/niri-flake";
30 niri.inputs.nixpkgs.follows = "nixpkgs";
31 niri.inputs.nixpkgs-stable.follows = "nixpkgs";
32
33 qbpm.url = "github:pvsr/qbpm";
34 qbpm.inputs.nixpkgs.follows = "nixpkgs";
35 podcasts.url = "github:pvsr/podcasts";
36 podcasts.inputs.nixpkgs.follows = "nixpkgs";
37 podcasts.inputs.pre-commit-hooks.follows = "";
38 weather.url = "github:pvsr/weather";
39 weather.inputs.nixpkgs.follows = "nixpkgs";
40 weather.inputs.pre-commit-hooks.follows = "";
41
42 srcery-textmate.url = "github:srcery-colors/srcery-textmate";
43 srcery-textmate.flake = false;
44
45 fzf-fish.url = "github:pvsr/fzf.fish";
46 fzf-fish.flake = false;
47 fish-prompt-pvsr.url = "github:pvsr/fish-prompt-pvsr";
48 fish-prompt-pvsr.flake = false;
49 };
50
51 outputs =
52 inputs@{ flake-parts, import-tree, ... }:
53 flake-parts.lib.mkFlake { inherit inputs; } {
54 imports = map import-tree [ ./modules ];
55 };
56}