Files
brianmcgee 32ab26cfcc
buildbot/nix-eval Build done.
buildbot/nix-build Build done.
chore: nix flake update
2026-01-14 09:13:44 +00:00

13 lines
321 B
Nix

{ inputs, ... }:
{
imports = [
./devShells
./nixosModules
./packages
]
# Make treefmt-nix optional
# This only works if you set inputs.treefmt-nix.follows
# to a non-empty input that doesn't export a flakeModule
++ inputs.nixpkgs.lib.optional (inputs.treefmt-nix ? flakeModule) ./formatter.nix;
}