mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 10:58:02 +00:00
12 lines
329 B
Nix
12 lines
329 B
Nix
|
# 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
|
||
|
];
|
||
|
}
|