diff options
| -rw-r--r-- | hosts/c-pc/configuration.nix | 3 | ||||
| -rw-r--r-- | roles/desktop/default.nix | 5 |
2 files changed, 5 insertions, 3 deletions
diff --git a/hosts/c-pc/configuration.nix b/hosts/c-pc/configuration.nix index a0ce408..72b97f2 100644 --- a/hosts/c-pc/configuration.nix +++ b/hosts/c-pc/configuration.nix @@ -80,9 +80,6 @@ wineWowPackages.stable winetricks - pulseaudio - playerctl - ffmpeg jellyfin diff --git a/roles/desktop/default.nix b/roles/desktop/default.nix index c2fae92..f48b82c 100644 --- a/roles/desktop/default.nix +++ b/roles/desktop/default.nix @@ -12,6 +12,11 @@ let cfg = config.roles.desktop; in { }; config = mkIf cfg.enable { + environment.systemPackages = with pkgs; [ + pulseaudio + playerctl + ]; + security.rtkit.enable = true; i18n.inputMethod.enable = true; |