sneeuwvlok/_modules/system/shell/default.nix
2025-07-28 14:34:09 +02:00

11 lines
156 B
Nix

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