13 lines
226 B
Nix
13 lines
226 B
Nix
|
{ config, lib, ... }:
|
||
|
{
|
||
|
imports = [ ./upgrade-diff.nix ];
|
||
|
|
||
|
options.components.nixos.enable = lib.mkOption {
|
||
|
type = lib.types.bool;
|
||
|
default = true;
|
||
|
};
|
||
|
|
||
|
config = lib.mkIf (config.components.nixos.enable) { };
|
||
|
|
||
|
}
|