move out some common host settings to hosts/common.nix

This commit is contained in:
2025-01-08 22:14:14 -08:00
parent f30ff9962c
commit 79a0495760
8 changed files with 51 additions and 123 deletions

View File

@@ -1,6 +1,6 @@
{...}: {
{ ... }: {
imports = [
./common
./mods
./workarounds
];
}

View File

@@ -1,4 +1,4 @@
{...}: {
{ ... }: {
imports = [
./kb-input.nix
];

View File

@@ -4,10 +4,10 @@
lib,
...
}: let
cfg = config.common.kb-input;
cfg = config.mods.kb-input;
in {
options = {
common.kb-input = {
mods.kb-input = {
enable = lib.mkEnableOption "input method and custom keyboard layout";
};
};