Household planning and management software meant to organise and streamline neurodivergent households.
1{
2 description = "Sweetnhome Development Environment";
3
4 inputs = {
5 nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
6 utils.url = "github:numtide/flake-utils";
7 };
8
9 outputs =
10 {
11 self,
12 nixpkgs,
13 utils,
14 }:
15 utils.lib.eachDefaultSystem (
16 system:
17 let
18 pkgs = import nixpkgs { inherit system; };
19 in
20 {
21 devShells.default = pkgs.mkShell {
22 buildInputs = with pkgs; [
23 gleam
24 erlang_28
25 rebar3
26 bun
27 podman
28 tailwindcss_4
29 just
30 ];
31
32 shellHook = ''
33 echo "🏠 Sweetnhome environment loaded!"
34 just --list
35 echo "Use just to run them."
36 '';
37 };
38 }
39 );
40}