restructure system configuration

This commit is contained in:
ooks-io 2024-01-15 22:12:53 +13:00
parent 8f58a79fe2
commit e65c6bc159
27 changed files with 143 additions and 44 deletions

View file

@ -0,0 +1,18 @@
{ config, lib, ... }:
let
cfg = config.system.profile.laptop;
in
{
imports = [
../modules
];
config = cfg.enable {
system = {
hardware = {
bluetooth.enable = true;
powerSettings.enable = true
backlight.enable = true;
};
};
};
}