1
0
Fork 0
mirror of https://git.oat.zone/dark-firepit/dotfiles synced 2024-05-06 14:36:06 +02:00
git.oat.zone--dark-firepit-.../modules/desktop/apps/nwg-launchers.nix
2022-01-29 11:47:38 +00:00

18 lines
328 B
Nix

{ pkgs, lib, options, config, ... }:
with lib;
let
cfg = config.modules.desktop.apps.nwg-launchers;
in {
options.modules.desktop.apps.nwg-launchers = {
enable = mkOption {
type = types.bool;
default = false;
};
};
config = mkIf cfg.enable {
user.packages = with pkgs; [ nwg-launchers ];
};
}