created default for nixos modules

This commit is contained in:
John Lancaster
2025-07-04 10:52:49 -05:00
parent 7fef2c9db2
commit c94094a83d
3 changed files with 9 additions and 4 deletions

8
nixosModules/default.nix Normal file
View File

@@ -0,0 +1,8 @@
{ inputs, config, pkgs, lib, ... }:
{
imports = [
./options.nix
./scripts.nix
./steam.nix
];
}