nix-dotfiles/nixosModules/default.nix
Julia Lange 525f68172b
Services, refactor, clean up, service to automatic
Move service to automatic since it has a separate purpose.

Refactor the default.nix code to include service.nix files so it is
easier to extend code.
2024-11-29 02:09:23 -08:00

9 lines
94 B
Nix

{ config, pkgs, lib, ... }:
{
imports = [
./apps
./automatic
./services
];
}