Skip to content

Commit 4dd94db

Browse files
committed
refactor: rewrite using flake-parts module for better flexibility
1 parent ba1ccf2 commit 4dd94db

File tree

219 files changed

+27308
-4703
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

219 files changed

+27308
-4703
lines changed

.github/dependabot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ updates:
33
- package-ecosystem: github-actions
44
directory: "/"
55
schedule:
6-
interval: daily
7-
open-pull-requests-limit: 10
6+
interval: monthly
7+
open-pull-requests-limit: 10
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
name: "Auto update flake lock file"
2-
32
on:
43
workflow_dispatch:
54
schedule:
65
- cron: "0 12 * * 0"
7-
86
jobs:
97
createPullRequest:
108
uses: loophp/flake-lock-update-workflow/.github/workflows/auto-upgrade-flakes.yaml@main

.github/workflows/flake-check.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: "Nix flake check"
2+
on:
3+
workflow_call:
4+
pull_request:
5+
push:
6+
jobs:
7+
tests:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v4
11+
- uses: cachix/install-nix-action@v31
12+
with:
13+
nix_path: nixpkgs=channel:nixos-unstable
14+
- run: nix flake check --accept-flake-config

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
/.direnv/
22
/private.pem
3+
.pre-commit-config.yaml

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[![GitHub Workflow Status][github workflow status]][2]
2-
![GitHub stars][github stars]
3-
![License][mit]
4-
[![Donate!][donate github]][5]
2+
![GitHub stars][github stars]
3+
![License][mit]
4+
[![Donate!][donate github]][5]
55

66
# Nix (dotfiles) configurations
77

File renamed without changes.
File renamed without changes.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
{ ... }:
1+
22
{
3-
sshd.enable = true;
43
desktop.enable = true;
4+
sshd.enable = true;
55
}

hosts/elitebook820/home/default.nix renamed to _to_migrate/hosts/elitebook820/home/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{ ... }:
1+
22
{
33
shell.enable = true;
44
thunderbird.enable = true;

hosts/elitebook820/system/configuration.nix renamed to _to_migrate/hosts/elitebook820/system/configuration.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{ ... }:
1+
22
{
33
# Use the GRUB 2 boot loader.
44
# boot.loader.grub.enable = true;

0 commit comments

Comments
 (0)