first working build of rewrite
This commit is contained in:
commit
44a3f420c6
29 changed files with 1261 additions and 0 deletions
9
modules/system/services/default.nix
Normal file
9
modules/system/services/default.nix
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{pkgs,config,...}:{
|
||||
imports = [
|
||||
./tailscale.nix
|
||||
./pipewire.nix
|
||||
];
|
||||
|
||||
speccon18.tailscale.enable = true;
|
||||
speccon18.sound.pipewire.enable = true;
|
||||
}
|
||||
23
modules/system/services/pipewire.nix
Normal file
23
modules/system/services/pipewire.nix
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
# https://nixos.wiki/wiki/PipeWire
|
||||
{pkgs,config,lib, ...}:
|
||||
{
|
||||
options.speccon18.sound.pipewire.enable = lib.mkEnableOption "enable pipewire with jack integrations";
|
||||
|
||||
config = lib.mkIf config.speccon18.sound.pipewire.enable {
|
||||
environment.systemPackages = with pkgs; [
|
||||
pipewire
|
||||
wireplumber
|
||||
];
|
||||
# rtkit is optional but recommended
|
||||
security.rtkit.enable = true;
|
||||
services.pipewire = {
|
||||
enable = true;
|
||||
alsa = {
|
||||
enable = true;
|
||||
support32Bit = true;
|
||||
};
|
||||
pulse.enable = true;
|
||||
jack.enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
13
modules/system/services/tailscale.nix
Normal file
13
modules/system/services/tailscale.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{ pkgs, config, lib, ... }: {
|
||||
|
||||
options.speccon18.tailscale.enable = lib.mkEnableOption "enables the tailscale service and sets the package to use";
|
||||
|
||||
config = lib.mkIf config.speccon18.tailscale.enable {
|
||||
# make the tailscale command usable to users
|
||||
environment.systemPackages = with pkgs;[
|
||||
pkgs.tailscale
|
||||
];
|
||||
# enable the tailscale service
|
||||
services.tailscale.enable = true;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue