restructure
This commit is contained in:
33
modules/users/nathan/home-manager/features/aurora.nix
Normal file
33
modules/users/nathan/home-manager/features/aurora.nix
Normal file
@@ -0,0 +1,33 @@
|
||||
{ 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";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user