18 lines
369 B
Nix
18 lines
369 B
Nix
{ ... }: {
|
|
|
|
flake.homeModules.nathan = { config, lib, ... }: {
|
|
|
|
options.homeconfig.aurora.enable = with lib; mkOption {
|
|
type = with types; bool;
|
|
default = false;
|
|
};
|
|
|
|
config = lib.mkIf config.homeconfig.aurora.enable {
|
|
|
|
programs.aurora = {
|
|
enable = true;
|
|
};
|
|
};
|
|
};
|
|
}
|