Create NixOS module

This commit is contained in:
2025-04-01 17:28:33 +02:00
parent aab323d746
commit 8359e159f4
2 changed files with 56 additions and 1 deletions

View File

@@ -20,6 +20,9 @@
};
})
// {
nixosModules = rec {};
nixosModules = rec {
actual-importer = import ./module.nix self;
default = actual-importer;
};
};
}