Files
Olympus/homes/nathan/home-manager/programs/aurora/default.nix
2026-03-07 10:59:59 -06:00

26 lines
538 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;
systemd = {
enable = true;
};
};
};
};
}