Files
Olympus/homes/nathan/home-manager/programs/aurora/default.nix
2026-03-06 19:31:03 -06:00

22 lines
455 B
Nix

{ inputs, ... }: {
flake.homeModules.nathan = { config, lib, ... }: {
imports = [
inputs.aurora.homeModules.default
];
options.homeconfig.aurora.enable = with lib; mkOption {
type = with types; bool;
default = false;
};
config = lib.mkIf config.homeconfig.aurora.enable {
programs.aurora = {
enable = true;
};
};
};
}