17 lines
228 B
Nix
17 lines
228 B
Nix
{ lib, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
imports = [
|
|
./base16.nix
|
|
./colors.nix
|
|
./fonts.nix
|
|
./home-manager.nix
|
|
];
|
|
|
|
options.stylix.image = mkOption {
|
|
type = types.package;
|
|
description = "Wallpaper image.";
|
|
};
|
|
}
|