nixos-config/hosts/lithium/default.nix
Jay Looney aa4a8347ec Refining modules/nixos/base.nix to make sense for more machines
There is a few additional changes due to typos introduced while working
on other stuff.
2025-12-02 16:39:50 -06:00

16 lines
339 B
Nix

{ inputs, ... }:
{
imports = [
./boot.nix
../../modules/nixos/base.nix
inputs.sops-nix.nixosModules.sops
./hardware.nix
./configuration.nix
./services/caddy.nix
./services/tailscale.nix
./services/kanidm.nix
./services/jellyfin.nix
./services/uptime-kuma.nix
./services/file-shares.nix
];
}