🔥 Remove some leftovers from previous experiments

This commit is contained in:
Jo 2025-07-28 21:22:37 +02:00
parent b93de743ac
commit bcaad1ab81
2 changed files with 0 additions and 52 deletions

View file

@ -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

View file

@ -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;
};
};
}