14 lines
230 B
Nix
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
|
|
};
|
|
}
|