nixos-config/config/profiles.nix
2021-02-23 12:58:29 -08:00

8 lines
176 B
Nix

{ config, lib, pkgs, ... }:
let
host = config.instance.hostname;
host-profile = config.fudo.hosts.${host}.profile;
in { imports = [ "./profiles/${host-profile}.nix" ]; }