nixos-config/modules/flake-parts/default.nix

12 lines
329 B
Nix
Raw Normal View History

2024-01-15 23:21:31 +00:00
# Unlike other custom modules such as from NixOS and home-manager, all
# flake-part modules are considered internal so there's no need for an internal
# flag. We can just import these directly. Nobody should be using this except
# this project (and also my other projects).
{ lib, ... }:
{
imports = [
./images.nix
];
}