8 lines
176 B
Nix
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" ]; }
|