nixos-config/modules/profiles.nix
2021-08-25 00:27:20 -04:00

7 lines
118 B
Nix

{ lib, ... }:
with lib;
{
options.sconfig.profile = mkOption {
type = types.enum [ "server" "desktop" ];
};
}