Add initial pyproject.toml for dj-beets project with dependencies and metadata

This commit is contained in:
2025-12-08 10:40:52 +01:00
commit dbc64845f4
23 changed files with 3137 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
{
description = "Home infra for lindenfelser.de (fileserver + gateway)";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05";
};
outputs = { self, nixpkgs, ... }:
let
system = "x86_64-linux";
lib = nixpkgs.lib;
in {
nixosConfigurations = {
fileserver = lib.nixosSystem {
inherit system;
modules = [
./hosts/fileserver/configuration.nix
];
};
gateway = lib.nixosSystem {
inherit system;
modules = [
./hosts/gateway/configuration.nix
];
};
};
};
}