diff options
author | Linnnus <[email protected]> | 2023-09-07 10:42:27 +0200 |
---|---|---|
committer | Linnnus <[email protected]> | 2023-09-07 12:04:23 +0200 |
commit | f11070f91bee4745ece948729d820ce0e2163bfd (patch) | |
tree | cd527837787edfc5a80700a49fd9afcb125c1866 /services/default.nix | |
parent | 9a68ff4989b6857cf4c1e6a8e2c9097c570415ee (diff) |
Add comma to CLI basics
Diffstat (limited to 'services/default.nix')
-rw-r--r-- | services/default.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/services/default.nix b/services/default.nix new file mode 100644 index 0000000..458fe4e --- /dev/null +++ b/services/default.nix @@ -0,0 +1,12 @@ +# This file indexes all services. Services are different from use-cases in that +# they are reusable components that (most probably one). These are NixOS +# modules, NOT home-manager modules. + +{ ... }: + +{ + imports = + [ + ./on-demand-minecraft + ]; +} |