Files
Olympus/modules/users/nathan/home-manager/features/aurora.nix
2026-04-22 13:27:21 -05:00

29 lines
640 B
Nix

{ inputs, ... }: {
flake.homeModules.nathan-aurora = { config, lib, ... }: {
imports = [
inputs.aurora.homeModules.default
];
config = {
programs.aurora = {
enable = true;
systemd = {
enable = true;
};
settings = {
wallpaperDir = "${config.home.homeDirectory}/Pictures/Wallpaper";
colorsPath = "${config.home.homeDirectory}/.cache/wal/colors.json";
changeColorsCmd = "colorPrefix";
};
};
};
};
}