Skip to content
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Original file line number Diff line number Diff line change
@@ -1,40 +1,40 @@
---
name: Bug Report
about: Create a report to help improve the configuration
title: ""
labels: bug
assignees: maydayv7
---
### Describe the bug
A clear and concise description of what the bug is
### Steps To Reproduce
Steps to reproduce the behavior:
1. ...
2. ...
3. ...
### Expected behavior
A clear and concise description of what you expected to happen
### Screenshots
If applicable, add screenshots to help explain your problem
### Additional context
Add any other context about the problem
### Metadata
Please run `nix shell nixpkgs#nix-info --command sh -c "nix-info -m"` and paste the result
```console
[user@system:~]$ nix shell nixpkgs#nix-info --command sh -c "nix-info -m"
output here
```
---
name: Bug Report
about: Create a report to help improve the configuration
title: ""
labels: bug
assignees: maydayv7
---

### Describe the bug

A clear and concise description of what the bug is

### Steps To Reproduce

Steps to reproduce the behavior:

1. ...
2. ...
3. ...

### Expected behavior

A clear and concise description of what you expected to happen

### Screenshots

If applicable, add screenshots to help explain your problem

### Additional context

Add any other context about the problem

### Metadata

Please run `nix shell nixpkgs#nix-info --command sh -c "nix-info -m"` and paste the result

```console
[user@system:~]$ nix shell nixpkgs#nix-info --command sh -c "nix-info -m"
output here
```
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
---
name: Feature request
about: Suggest an idea for this project
title: ""
labels: enhancement
assignees: maydayv7
---
**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is
**Describe the solution you'd like**
A clear and concise description of what you want to happen
**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered, if applicable
**Additional context**
Add any other context or screenshots
---
name: Feature request
about: Suggest an idea for this project
title: ""
labels: enhancement
assignees: maydayv7
---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is

**Describe the solution you'd like**
A clear and concise description of what you want to happen

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered, if applicable

**Additional context**
Add any other context or screenshots
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
---
name: Help Request
about: Request for help or clarification on anything related to this project
title: ""
labels: help wanted, question
assignees: maydayv7
---
### Description
A clear and concise description of what problem you're facing or any area where clarification is required
### Expected behavior
A clear and concise description of what you expect to happen
### Screenshots
If applicable, add screenshots to help explain your problem
### Additional context
Add any other context about the problem
### Metadata
Please run `nix shell nixpkgs#nix-info --command sh -c "nix-info -m"` and paste the result.
```console
[user@system:~]$ nix shell nixpkgs#nix-info --command sh -c "nix-info -m"
output here
```
---
name: Help Request
about: Request for help or clarification on anything related to this project
title: ""
labels: help wanted, question
assignees: maydayv7
---

### Description

A clear and concise description of what problem you're facing or any area where clarification is required

### Expected behavior

A clear and concise description of what you expect to happen

### Screenshots

If applicable, add screenshots to help explain your problem

### Additional context

Add any other context about the problem

### Metadata

Please run `nix shell nixpkgs#nix-info --command sh -c "nix-info -m"` and paste the result.

```console
[user@system:~]$ nix shell nixpkgs#nix-info --command sh -c "nix-info -m"
output here
```
1 change: 0 additions & 1 deletion .github/devcontainer

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,54 +1,54 @@
name: "ci: Build `nixosConfigurations`"
on:
workflow_dispatch:
workflow_call:
push:
tags:
- "*"
paths:
- "**.lock"
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
paths:
- "**.lock"
- "**.nix"
env:
NIX_SHOW_STATS: 1
jobs:
build:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
strategy:
max-parallel: 1
fail-fast: false
matrix:
device: [valkyrie, vortex, futura]
steps:
- name: Maximize Build Space
run: |
sudo rm -rf /usr/share/dotnet
sudo rm -rf /opt/ghc
sudo rm -rf "/usr/local/share/boost"
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
- name: Clone Repo
uses: actions/checkout@v6
with:
token: ${{ secrets.GITHUB_TOKEN }}
fetch-depth: 0
- name: Install Nix
uses: cachix/install-nix-action@v31
with:
extra_nix_config: |
experimental-features = nix-command flakes
accept-flake-config = true
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
- name: Setup Cachix
uses: cachix/cachix-action@v16
with:
name: maydayv7-dotfiles
authToken: "${{ secrets.CACHIX_TOKEN }}"
- name: Build Configuration
run: |
export LC_ALL=C.UTF-8
ulimit -n 2048
nix build .#nixosConfigurations.${{ matrix.device }}.config.system.build.toplevel -L --show-trace
name: "ci: Build `nixosConfigurations`"
on:
workflow_dispatch:
workflow_call:
push:
tags:
- "*"
paths:
- "**.lock"
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
paths:
- "**.lock"
- "**.nix"
env:
NIX_SHOW_STATS: 1
jobs:
build:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
strategy:
max-parallel: 1
fail-fast: false
matrix:
device: [valkyrie, vortex, futura]
steps:
- name: Maximize Build Space
run: |
sudo rm -rf /usr/share/dotnet
sudo rm -rf /opt/ghc
sudo rm -rf "/usr/local/share/boost"
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
- name: Clone Repo
uses: actions/checkout@v6
with:
token: ${{ secrets.GITHUB_TOKEN }}
fetch-depth: 0
- name: Install Nix
uses: cachix/install-nix-action@v31
with:
extra_nix_config: |
experimental-features = nix-command flakes
accept-flake-config = true
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
- name: Setup Cachix
uses: cachix/cachix-action@v16
with:
name: maydayv7-dotfiles
authToken: "${{ secrets.CACHIX_TOKEN }}"
- name: Build Configuration
run: |
export LC_ALL=C.UTF-8
ulimit -n 2048
nix build .#nixosConfigurations.${{ matrix.device }}.config.system.build.toplevel -L --show-trace
Original file line number Diff line number Diff line change
@@ -1,33 +1,33 @@
name: "ci: Check Syntax"
on:
workflow_dispatch:
push:
paths:
- "**.lock"
- "**.nix"
env:
NIX_SHOW_STATS: 1
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Maximize Build Space
run: |
sudo rm -rf /usr/share/dotnet
sudo rm -rf /opt/ghc
sudo rm -rf "/usr/local/share/boost"
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
- name: Clone Repo
uses: actions/checkout@v6
with:
token: ${{ secrets.GITHUB_TOKEN }}
fetch-depth: 0
- name: Install Nix
uses: cachix/install-nix-action@v31
with:
extra_nix_config: |
experimental-features = nix-command flakes
accept-flake-config = true
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
- name: Check Syntax
run: nix flake check . --keep-going
name: "ci: Check Syntax"
on:
workflow_dispatch:
push:
paths:
- "**.lock"
- "**.nix"
env:
NIX_SHOW_STATS: 1
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Maximize Build Space
run: |
sudo rm -rf /usr/share/dotnet
sudo rm -rf /opt/ghc
sudo rm -rf "/usr/local/share/boost"
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
- name: Clone Repo
uses: actions/checkout@v6
with:
token: ${{ secrets.GITHUB_TOKEN }}
fetch-depth: 0
- name: Install Nix
uses: cachix/install-nix-action@v31
with:
extra_nix_config: |
experimental-features = nix-command flakes
accept-flake-config = true
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
- name: Check Syntax
run: nix flake check . --keep-going
Loading
Loading