chore: Formatting

This commit is contained in:
Donovan Glover
2023-06-22 11:13:46 -04:00
parent 8ffb196c0b
commit 7316153e37
12 changed files with 38 additions and 17 deletions

View File

@ -1,4 +1,6 @@
{ pkgs, ... }: {
{ pkgs, ... }:
{
services.interception-tools = {
enable = true;
plugins = with pkgs.interception-tools-plugins; [ dual-function-keys ];

View File

@ -1,4 +1,6 @@
{ pkgs, ... }: {
{ pkgs, ... }:
{
fonts = {
enableDefaultFonts = false;

View File

@ -1,4 +1,6 @@
{ pkgs, ... }: {
{ pkgs, ... }:
{
services.ratbagd.enable = true;
environment.systemPackages = [ pkgs.piper ];

View File

@ -4,8 +4,9 @@ let
quantum = 64;
rate = 48000;
qr = "${toString quantum}/${toString rate}";
json = pkgs.formats.json {};
in {
json = pkgs.formats.json { };
in
{
services.pipewire = {
enable = true;
@ -38,7 +39,7 @@ in {
rt.time.soft = 200000;
rt.time.hard = 200000;
};
flags = ["ifexists" "nofail"];
flags = [ "ifexists" "nofail" ];
}
{
name = "libpipewire-module-protocol-pulse";
@ -46,7 +47,7 @@ in {
pulse.min.req = qr;
pulse.min.quantum = qr;
pulse.min.frag = qr;
server.address = ["unix:native"];
server.address = [ "unix:native" ];
};
}
];

View File

@ -1,4 +1,6 @@
{ pkgs, ... }: {
{ pkgs, ... }:
{
stylix.image = ../assets/wallpaper.png;
stylix.polarity = "dark";
stylix.base16Scheme = "${pkgs.base16-schemes}/share/themes/monokai.yaml";