machines: aramis: enable bluetooth profile

This commit is contained in:
Bruno BELANYI 2021-05-09 11:39:51 +02:00
parent 4fbb3d53e9
commit 28cc5b64b4
4 changed files with 8 additions and 8 deletions

View file

@ -1,5 +0,0 @@
{ ... }:
{
# Bluetooth integration
my.modules.bluetooth.enable = true;
}

View file

@ -6,11 +6,11 @@
{
imports = [
./bluetooth.nix
./boot.nix
./hardware.nix
./home.nix
./networking.nix
./profiles.nix
./services.nix
./sound.nix
];

View file

@ -1,8 +1,6 @@
{ pkgs, ... }:
{
my.home = {
# Bluetooth GUI & media keys
bluetooth.enable = true;
# Image viewver
feh.enable = true;
# Firefo profile and extensions

View file

@ -0,0 +1,7 @@
{ ... }:
{
my.profiles = {
# Bluetooth configuration and GUI
bluetooth.enable = true;
};
}