feat: create syncthing and pipewire services
This commit is contained in:
parent
065b1bac9d
commit
899c1b4a26
5 changed files with 46 additions and 6 deletions
|
@ -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
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
#./greetd-sway.nix
|
||||
./nvidia.nix
|
||||
./fonts.nix
|
||||
./services/nginx.service.nix
|
||||
./services/laptop.preset.nix
|
||||
./hardware-configuration.nix
|
||||
];
|
||||
boot.loader = {
|
||||
|
|
8
nixos/services/laptop.preset.nix
Normal file
8
nixos/services/laptop.preset.nix
Normal file
|
@ -0,0 +1,8 @@
|
|||
{...}:
|
||||
{
|
||||
imports = [
|
||||
./nginx.service.nix
|
||||
./pipewire.service.nix
|
||||
./syncthing.service.nix
|
||||
];
|
||||
}
|
21
nixos/services/pipewire.service.nix
Normal file
21
nixos/services/pipewire.service.nix
Normal 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 ]"
|
||||
}
|
||||
'')
|
||||
];
|
||||
};
|
||||
}
|
|
@ -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];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue