ephemeral is now a nixosModule

This commit is contained in:
William 2025-10-15 19:59:31 -03:00
parent 79ecda817e
commit 5edad8b957
6 changed files with 121 additions and 74 deletions

7
nixosModules.nix Normal file
View file

@ -0,0 +1,7 @@
{ ... }:
{
flake.nixosModules = {
ephemeral = import ./modules/ephemeral.nix;
};
}