Skip to content

feat: create initial home-manager config #3

feat: create initial home-manager config

feat: create initial home-manager config #3

Workflow file for this run

---
name: CI
on:
pull_request:
branches: [ "*" ]
push:
branches: [ "main" ]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
- name: Check Nix formatting
run: nix develop --impure -c alejandra -c .
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
- name: Activate default configuration
run: nix-shell -p home-manager --run "home-manager switch -b backup --impure --flake ."
...