Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

flake.lock: Update #39

Merged
merged 3 commits into from
Jun 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 22 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,28 @@ jobs:
- name: treefmt
run: nix develop --command treefmt --fail-on-change

flake-check:
name: Flake check
build-nixos-configs:
name: Build NixOS configurations
needs:
- formatting
runs-on: ubuntu-latest

strategy:
matrix:
config:
# - akane
# - kawashiro
# - maya
# - mitori
- yukari
# - yuyuko

steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@V27

- name: check
run: nix flake check --debug
- name: Build config
run: nix run nixpkgs\#nixos-rebuild -- build --flake .\#${{ matrix.config }}

build-home-manager-configs:
name: Build Home Manager configurations
Expand All @@ -37,13 +47,19 @@ jobs:

strategy:
matrix:
hm_config:
config:
- dan@akane
- generic
- dan@kawashiro
- dan@maya
- minimal
- dan@mitori
- dan@yukari
- dan@yuyuko

steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@V27

- name: Build config
run: nix develop .\#bootstrap --command home-manager build --flake .\#${{ matrix.hm_config }}
run: nix develop .\#bootstrap --command home-manager build --flake .\#${{ matrix.config }}
48 changes: 24 additions & 24 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions modules/nixos/desktop-environment.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
{pkgs, ...}: {
hardware.graphics.enable = true;

fonts = {
fontDir.enable = true;

Expand Down