mirror of
https://git.oat.zone/dark-firepit/dotfiles
synced 2024-11-23 02:12:26 +01:00
17 lines
244 B
Nix
17 lines
244 B
Nix
{ 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 {
|
|
};
|
|
}
|