feat: create syncthing and pipewire services

This commit is contained in:
Zhongheng Liu 2024-08-08 18:21:49 +08:00
commit 899c1b4a26
5 changed files with 46 additions and 6 deletions

View file

@ -18,7 +18,7 @@
settings = {
"$mod" = "SUPER";
bind = [
"$mod, D, exec, dmenu"
"$mod, D, exec, ${pkgs.fuzzel}/bin/fuzzel"
# firefox quickstart
"$mod, F, exec, ${pkgs.firefox}/bin/firefox"
# foot terminal

View file

@ -13,7 +13,7 @@
#./greetd-sway.nix
./nvidia.nix
./fonts.nix
./services/nginx.service.nix
./services/laptop.preset.nix
./hardware-configuration.nix
];
boot.loader = {

View file

@ -0,0 +1,8 @@
{...}:
{
imports = [
./nginx.service.nix
./pipewire.service.nix
./syncthing.service.nix
];
}

View file

@ -0,0 +1,21 @@
{pkgs, ...}: {
services.pipewire = {
enable = true;
alsa = {
enable = true;
support32Bit = true;
};
pulse.enable = true;
jack.enable = true;
wireplumber.configPackages = [
(pkgs.writeTextDir "share/wireplumber/bluetooth.lua.d/51-bluez-config.lua" ''
bluez_monitor.properties = {
["bluez5.enable-sbc-xq"] = true,
["bluez5.enable-msbc"] = true,
["bluez5.enable-hw-volume"] = true,
["bluez5.headset-roles"] = "[ hsp_hs hsp_ag hfp_hf hfp_ag ]"
}
'')
];
};
}

View file

@ -1,6 +1,17 @@
{pkgs, lib, ...}:
{
enable = true;
user = "${config.myUserName}";
pkgs,
config,
lib,
...
}: {
services = {
syncthing = {
enable = true;
user = "${config.myUserName}";
dataDir = "/home/${config.myUserName}/Documents";
configDir = "/home/${config.myUserName}/Documents/.config/syncthing";
};
};
networking.firewall.allowedTCPPorts = [8384 22000];
networking.firewall.allowedUDPPorts = [22000 21027];
}