nix-dotfiles/modules/core/default.nix
2026-04-22 23:21:23 -07:00

14 lines
230 B
Nix

{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.modules.core;
in {
options.modules.core = {
laptop = mkEnableOption "Enable laptop specific tweaks";
};
config = {
# TODO: add something here loooool
};
}