12 lines
138 B
Nix
12 lines
138 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
hardware = {
|
|
bluetooth = {
|
|
enable = true;
|
|
};
|
|
graphics = {
|
|
enable = true;
|
|
};
|
|
};
|
|
}
|