Format with alejandra

This commit is contained in:
blahai 2024-12-20 15:11:42 +02:00
parent 4771948682
commit e08f66d286
No known key found for this signature in database
31 changed files with 398 additions and 278 deletions

View file

@ -1,7 +1,11 @@
{ pkgs, config, ... }: {
{
pkgs,
config,
...
}: {
hardware.bluetooth = {
enable = true;
settings = { General = { Experimental = true; }; };
settings = {General = {Experimental = true;};};
};
services.blueman.enable = true;
}

View file

@ -1,5 +1,4 @@
{ ... }:
{
{...}: {
imports = [
./pipewire.nix
./tailscale.nix

View file

@ -1,4 +1,4 @@
{ pkgs, ... }: {
{pkgs, ...}: {
services.jellyfin = {
enable = true;
openFirewall = true;

View file

@ -1,4 +1,9 @@
{ config, lib, pkgs, ... }: {
{
config,
lib,
pkgs,
...
}: {
services = {
pipewire = {
enable = true;
@ -17,10 +22,12 @@
};
};
pipewire-pulse."92-low-latency" = {
"context.properties" = [{
name = "libpipewire-module-protocol-pulse";
args = { };
}];
"context.properties" = [
{
name = "libpipewire-module-protocol-pulse";
args = {};
}
];
"pulse.properties" = {
"pulse.min.req" = "32/48000";
"pulse.default.req" = "32/48000";

View file

@ -1,4 +1,4 @@
{ pkgs, ... }: {
{pkgs, ...}: {
services.tailscale = {
enable = true;
useRoutingFeatures = "client";