mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 17:17:22 +01:00
13 lines
301 B
Nix
13 lines
301 B
Nix
{ lib, config, ... }:
|
|
{
|
|
options.swarselsystems.profiles.framework = lib.mkEnableOption "is this a framework brand host";
|
|
config = lib.mkIf config.swarselsystems.profiles.framework {
|
|
swarselsystems.modules = {
|
|
optional = {
|
|
framework = lib.mkDefault true;
|
|
};
|
|
};
|
|
|
|
};
|
|
|
|
}
|