From c50f04a1bbf5dd89e9d7ef3629d2dbe7423fcde3 Mon Sep 17 00:00:00 2001 From: YI Date: Wed, 17 Jan 2024 11:03:01 +0800 Subject: [PATCH 1/2] nix: use pipewire --- nix/common.nix | 2 +- nix/prefs.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nix/common.nix b/nix/common.nix index f5696ba..8513436 100644 --- a/nix/common.nix +++ b/nix/common.nix @@ -1154,7 +1154,7 @@ in ntp = { enable = !config.services.chrony.enable; }; pipewire = { enable = prefs.enablePipewire; - pulse = { enable = true; }; + pulse = { enable = false; }; }; restic = { backups = lib.optionalAttrs prefs.enableResticBackup diff --git a/nix/prefs.nix b/nix/prefs.nix index 99c7d0d..d08b3bf 100644 --- a/nix/prefs.nix +++ b/nix/prefs.nix @@ -548,7 +548,7 @@ let type = "sendonly"; }; }; - enablePipewire = false; + enablePipewire = true; # Many packages depends on pulseaudio. If we set this to be false, # then we will have to build a ton of packages. enablePulseaudio = !self.enablePipewire; From 74b87c2fd97eccc0c4338fbc3eb1afb9db7fa0e8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 10:39:19 +0000 Subject: [PATCH 2/2] build(deps): bump actions/cache from 3 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/nixos-generators-vagrant.yml | 2 +- .github/workflows/nixos-generators.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nixos-generators-vagrant.yml b/.github/workflows/nixos-generators-vagrant.yml index d65f432..f448fdf 100644 --- a/.github/workflows/nixos-generators-vagrant.yml +++ b/.github/workflows/nixos-generators-vagrant.yml @@ -13,7 +13,7 @@ jobs: runs-on: macos-12 steps: - name: Cache Vagrant boxes - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.vagrant.d/boxes key: vagrant-${{ hashFiles('Makefile') }} diff --git a/.github/workflows/nixos-generators.yml b/.github/workflows/nixos-generators.yml index 60b26a9..868151c 100644 --- a/.github/workflows/nixos-generators.yml +++ b/.github/workflows/nixos-generators.yml @@ -51,7 +51,7 @@ jobs: uses: actions/checkout@v4 - name: Cache Vagrant boxes - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.vagrant.d/boxes key: vagrant-${{ hashFiles('Makefile') }}