Initial scaffold: NixOS + SvelteKit dashboard + Python renderer

This commit is contained in:
Ruben Hensen
2026-06-07 18:15:06 +02:00
commit 50256fa384
25 changed files with 4491 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
{
description = "E-paper dayplanner NixOS config for Pi 4 driving Waveshare 12.48\" e-paper";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
comin = {
url = "github:nlewo/comin";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, comin, ... }: {
nixosConfigurations.dayplanner = nixpkgs.lib.nixosSystem {
system = "aarch64-linux";
specialArgs = { inherit self; };
modules = [
comin.nixosModules.comin
./hosts/dayplanner
];
};
};
}