29 lines
640 B
Nix
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";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|