modules/packages: init

This commit is contained in:
Charlie Root 2024-09-23 18:54:14 +02:00
commit ea50dc7261
3 changed files with 45 additions and 0 deletions

View file

@ -0,0 +1,13 @@
{
config,
lib,
pkgs,
...
}: let
in {
environment.systemPackages = with pkgs; lib.mkMerge [
(mkIf cfg.bluetooth.enable [
])
];
}