mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
8 lines
162 B
Nix
8 lines
162 B
Nix
{ lib, ... }:
|
|
with lib;
|
|
{
|
|
options.sconfig.profile = mkOption {
|
|
type = types.enum [ "server" "desktop" ];
|
|
};
|
|
imports = [ ./server.nix ./desktop.nix ];
|
|
}
|