Move ratbagd/piper config to desktop module

This commit is contained in:
Erwin Boskma 2022-03-22 11:04:22 +01:00
parent 0d74393599
commit 7715f767ad
Signed by: erwin
GPG key ID: 270B20D17394F7E5
2 changed files with 6 additions and 9 deletions

View file

@ -62,15 +62,7 @@
# '';
# };
services = {
openssh.enable = true;
ratbagd.enable = true;
};
environment.systemPackages = with pkgs; [
piper
];
services.openssh.enable = true;
sops.defaultSopsFile = ./secrets.yaml;
sops.secrets = {

View file

@ -253,6 +253,7 @@ in {
avahi.publish.workstation = true;
gvfs.enable = true;
pcscd.enable = true;
ratbagd.enable = true;
};
security = {
@ -287,6 +288,10 @@ in {
etc = {
"X11/xkb".source = "${pkgs.xkeyboard_config}/etc/X11/xkb";
};
systemPackages = with pkgs; [
piper
];
};
};
}