14 lines
232 B
Nix
14 lines
232 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) { };
|
|
|
|
}
|