Files
Olympus/homes/nathan/home-manager/programs/aurora/default.nix
2026-04-10 13:12:29 -05:00

32 lines
761 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";
colorsDir = "${config.home.homeDirectory}/.cache/wal/colors.json";
};
};
};
};
}