Run nixpkgs-fmt

This commit is contained in:
Bad 2021-08-31 23:21:03 +02:00
parent cd50ad37b1
commit 64fa4ec76c
10 changed files with 72 additions and 72 deletions

View file

@ -1,9 +1,9 @@
{...}: { ... }:
{ {
# rtkit is optional but recommended # rtkit is optional but recommended
security.rtkit.enable = true; security.rtkit.enable = true;
services.pipewire = { services.pipewire = {
enable = true; enable = true;
alsa.enable = true; alsa.enable = true;
alsa.support32Bit = true; alsa.support32Bit = true;
@ -19,7 +19,7 @@ services.pipewire = {
media-session.config.bluez-monitor.rules = [ media-session.config.bluez-monitor.rules = [
{ {
# Matches all cards # Matches all cards
matches = [ { "device.name" = "~bluez_card.*"; } ]; matches = [{ "device.name" = "~bluez_card.*"; }];
actions = { actions = {
"update-props" = { "update-props" = {
"bluez5.reconnect-profiles" = [ "hfp_hf" "hsp_hs" "a2dp_sink" ]; "bluez5.reconnect-profiles" = [ "hfp_hf" "hsp_hs" "a2dp_sink" ];
@ -42,5 +42,5 @@ services.pipewire = {
}; };
} }
]; ];
}; };
} }

View file

@ -1,5 +1,5 @@
{pkgs, ...}: { pkgs, ... }:
{ {
sound.enable = true; sound.enable = true;
hardware.pulseaudio = { hardware.pulseaudio = {
enable = true; enable = true;

View file

@ -4,7 +4,7 @@
home.sessionVariables = { home.sessionVariables = {
XDG_DATA_DIRS = "$XDG_DATA_DIRS:/var/lib/flatpak/exports/share:$HOME/.local/share/flatpak/exports/share"; XDG_DATA_DIRS = "$XDG_DATA_DIRS:/var/lib/flatpak/exports/share:$HOME/.local/share/flatpak/exports/share";
# NIX_BUILD_SHELL = "zsh"; # NIX_BUILD_SHELL = "zsh";
}; };
gtk.theme.name = "arc-dark"; gtk.theme.name = "arc-dark";
gtk.theme.package = pkgs.arc-theme; gtk.theme.package = pkgs.arc-theme;

View file

@ -1,6 +1,6 @@
{ pkgs, lib, ... }: { pkgs, lib, ... }:
let let
rofi = pkgs.rofi.override { plugins = [ pkgs.rofi-emoji ]; }; rofi = pkgs.rofi.override { plugins = [ pkgs.rofi-emoji ]; };
in in
{ {
wayland.windowManager.sway = rec { wayland.windowManager.sway = rec {