sneeuwvlok/modules/system/shell/default.nix

12 lines
211 B
Nix

{ config, options, lib, pkgs, ... }:
let
inherit (lib.options) mkEnableOption;
inherit (lib.modules) mkIf;
cfg = config.modules.shell;
in
{
options.modules.shell = {};
config = mkIf cfg.enable {};
}