2025-12-08 23:21:59 -05:00

26 lines
375 B
Nix

{
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
];
};
}