This commit is contained in:
Lukas Wurzinger 2025-05-18 22:07:00 +02:00
commit 07f5c86075
No known key found for this signature in database
4 changed files with 812 additions and 0 deletions

18
flake.nix Normal file
View file

@ -0,0 +1,18 @@
{
description = "FileBrowser";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
};
outputs =
{
self,
flake-parts,
...
}@inputs:
flake-parts.lib.mkFlake { inherit inputs; } {
flake.nixosModules.default = import ./module.nix;
};
}