26 lines
375 B
Nix
Raw Normal View History

2025-12-08 23:20:33 -05:00
{
config,
lib,
pkgs,
...
}:
{
imports = [ ];
options.me = {
nixdev.enable = lib.mkOption {
type = lib.types.bool;
default = false;
example = true;
description = "Whether we want to install nixdev.";
};
};
config = lib.mkIf config.me.nixdev.enable {
environment.systemPackages = with pkgs; [
yaml2nix
];
};
}