new formatting, nixvim is working

This commit is contained in:
Charlie Root 2024-05-22 14:29:45 +02:00
commit 0e22544a8a
88 changed files with 1994 additions and 1845 deletions

View file

@ -1,5 +1,10 @@
{ config, lib, pkgs, ... }:
let username = config.modules.other.system.username;
{
config,
lib,
pkgs,
...
}: let
username = config.modules.other.system.username;
in {
hardware.bluetooth = {
enable = true;
@ -11,8 +16,8 @@ in {
# Bluetooth headset media control buttons
systemd.user.services.mpris-proxy = {
description = "Mpris proxy";
after = [ "network.target" "sound.target" ];
wantedBy = [ "default.target" ];
after = ["network.target" "sound.target"];
wantedBy = ["default.target"];
serviceConfig.ExecStart = "${pkgs.bluez}/bin/mpris-proxy";
};
}