From bcaad1ab811b170d37e92ecdfc9c6f2c713865c5 Mon Sep 17 00:00:00 2001 From: Jo Date: Mon, 28 Jul 2025 21:22:37 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A5=20Remove=20some=20leftovers=20from?= =?UTF-8?q?=20previous=20experiments?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build-modules.yml | 37 ----------------------------- modules/flake/modules.nix | 15 ------------ 2 files changed, 52 deletions(-) delete mode 100644 .github/workflows/build-modules.yml delete mode 100644 modules/flake/modules.nix diff --git a/.github/workflows/build-modules.yml b/.github/workflows/build-modules.yml deleted file mode 100644 index 413d75a..0000000 --- a/.github/workflows/build-modules.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: "Nix: build nixos-/home modules" - -on: - workflow_dispatch: - # push: - # paths: - # - "modules/**.nix" - # - "**.lock" - # - ".github/workflows/build-modules.yml" - -jobs: - check-flake: - name: Validate x86_64-linux - runs-on: ubuntu-latest - strategy: - matrix: - outputs: [nixosModules, homeModules] - - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - ref: ${{ github.ref_name }} - persist-credentials: false - - - name: Install Lix - uses: ./.github/actions/install-lix - - - name: Setup Attic cache - uses: ryanccn/attic-action@v0.3.2 - with: - endpoint: https://cache.thevoid.cafe - cache: puzzlevision - token: ${{ secrets.ATTIC_TOKEN }} - - - name: Buid flake - run: nix build .#nixosModules.puzzlevision diff --git a/modules/flake/modules.nix b/modules/flake/modules.nix deleted file mode 100644 index a9448b8..0000000 --- a/modules/flake/modules.nix +++ /dev/null @@ -1,15 +0,0 @@ -{ self, ... }: -{ - flake = { - # TODO: figure out why this isn't working correctly - nixosModules.puzzlevision = self.lib.mkModule { - class = "nixos"; - modules = self.lib.dirToModuleList ../nixos; - }; - - homeModules.puzzlevision = self.lib.mkModule { - class = "home"; - modules = self.lib.dirToModuleList ../home; - }; - }; -}