Add initial pyproject.toml for dj-beets project with dependencies and metadata
This commit is contained in:
@@ -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
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user