Add module for piper

This commit is contained in:
Donovan Glover 2023-05-17 11:51:52 -04:00
parent a2d6373232
commit 2966ab79d6
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
2 changed files with 8 additions and 0 deletions

View File

@ -25,6 +25,7 @@
./modules/nix
./modules/npm
./modules/home-manager
./modules/piper
];
boot.loader.systemd-boot.enable = true;

View File

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