1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00

chore: nixfmt

This commit is contained in:
Kierán Meinhardt
2020-06-10 17:37:25 +02:00
parent 2c3957735b
commit d8a4d4eedf
90 changed files with 1461 additions and 985 deletions

View File

@@ -1,13 +1,11 @@
{ pkgs, lib, ... }:
{
{ pkgs, lib, ... }: {
hardware.bluetooth = {
enable = true;
config.General.Enable = lib.concatStringsSep "," ["Source" "Sink" "Media" "Socket"];
config.General.Enable =
lib.concatStringsSep "," [ "Source" "Sink" "Media" "Socket" ];
};
environment.systemPackages = [ pkgs.blueman ];
home-manager.users.me = {
services.blueman-applet.enable = false;
};
home-manager.users.me = { services.blueman-applet.enable = false; };
}