Files
Olympus/homes/nathan/home-manager/programs/aurora/default.nix
2026-04-10 16:19:17 -05:00

34 lines
816 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;
};
settings = {
wallpaperDir = "${config.home.homeDirectory}/Pictures/Wallpaper";
colorsPath = "${config.home.homeDirectory}/.cache/wal/colors.json";
changeColorsCmd = "colorPrefix";
};
};
};
};
}