system: add config for networking and hardware

This commit is contained in:
Charlie Root 2024-08-16 13:32:13 +02:00
commit 049fd348b2
8 changed files with 118 additions and 17 deletions

View file

@ -0,0 +1,20 @@
{
config,
lib,
pkgs,
}: let
cfg = config.modules.system.hardware.bluetooth;
inherit (config.modules.other.system) username;
inherit (lib) mkIf;
in {
confg = mkIf cfg.enable {
hardware.bluetooth = {
enable = true;
powerOnBoot = mkIf cfg.powerOnBoot true;
};
home-manager.users.${username}.home.Packages = with pkgs; [
bluetuith
];
};
}