dotfiles/modules/hyprpaper.nix

17 lines
244 B
Nix
Raw Normal View History

2022-11-15 06:19:54 +01:00
{ pkgs, options, config, lib, ... }:
with lib;
let
cfg = config.modules.hyprpaper;
in {
options.modules.hyprpaper = {
enable = mkOption {
type = types.bool;
default = false;
};
};
config = mkIf cfg.enable {
};
}