17 lines
301 B
Nix
17 lines
301 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.xyno.common;
|
|
in
|
|
{
|
|
options.xyno.common.enable = lib.mkEnableOption "enables common settings";
|
|
config = lib.mkIf cfg.enable {
|
|
boot.initrd.systemd.enable = true;
|
|
hardware.keyboard.zsa.enable = true;
|
|
programs.nh.enable = true;
|
|
};
|
|
}
|