Stabilize system module

This commit is contained in:
Florian RICHER 2024-05-26 00:00:14 +02:00
parent 6163188786
commit 36ae7b2141
3 changed files with 9 additions and 5 deletions

View file

@ -50,7 +50,7 @@
system = {
bluetooth.enable = true;
gamingKernel.enable = true;
# keymaps.layout = "fr";
keymaps.layout = "us";
nvidia.enable = true;
pipewire.enable = true;
plymouth.enable = true;

View file

@ -4,7 +4,7 @@
imports = [
./bluetooth
./gamingKernel
# ./keymaps
./keymaps
./nvidia
./pipewire
./plymouth

View file

@ -12,8 +12,12 @@ in
description = ''
Set key layout (fr, us)
'';
type = types.string;
type = types.str;
};
};
config = (import ./${cfg.layout}.nix {});
}
config = mkMerge [
(mkIf (cfg.layout == "fr") (import ./fr.nix {}))
(mkIf (cfg.layout == "us") (import ./us.nix {}))
];
}