trivios: add web services

This commit is contained in:
Alejandro Soto 2023-09-11 00:45:52 -06:00
parent 5d0bebaefb
commit bdb02a607c
No known key found for this signature in database
GPG key ID: 570448E3382BDEC5
3 changed files with 45 additions and 1 deletions

9
ui/default.nix Normal file
View file

@ -0,0 +1,9 @@
{ buildPythonPackage, django_4 }:
buildPythonPackage {
pname = "homemanager";
version = "0.0.1";
src = ./.;
propagatedBuildInputs = [ django_4 ];
}