32 lines
761 B
Nix
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";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|