nixos-systems/host/sync/configuration.nix
Eli Ribble 63a8f1c81d Simplify the base configuration for sync, rely on other modules
All of this is redundant and defined in other modules, as it should be.
From here we can start building up what makes sync unique rather than
copy-pasting.
2025-08-18 19:39:13 +00:00

5 lines
80 B
Nix

{ config, lib, pkgs, ... }: {
imports = [
./hardware-configuration.nix
];
}