my nixos dotfiles :3 (git.koi.rip mirror) git.koi.rip/koi/dotfiles
linux dotfiles neovim nixos catppuccin

chore: move repo to codeberg

+18 -83
.github/CODEOWNERS CODEOWNERS
-32
.github/workflows/checks.yml
··· 1 - name: checks 2 - 3 - on: 4 - push: 5 - branches: 6 - - main 7 - pull_request: 8 - branches: 9 - - main 10 - 11 - jobs: 12 - nix: 13 - runs-on: ubuntu-latest 14 - steps: 15 - - uses: actions/checkout@v6 16 - - uses: wimpysworld/nothing-but-nix@main 17 - - name: install nix 18 - uses: cachix/install-nix-action@v31 19 - - name: formatting 20 - run: | 21 - nix fmt 22 - if [ -n "$(git status --porcelain)" ]; then 23 - git --no-pager diff 24 - exit 1 25 - fi 26 - - name: flake check 27 - run: nix flake check 28 - misc: 29 - runs-on: ubuntu-latest 30 - steps: 31 - - name: commit message 32 - uses: adamperkowski/commits@main
-49
.github/workflows/update.yml
··· 1 - name: update 2 - 3 - on: 4 - schedule: 5 - - cron: '0 0 * * 0' 6 - workflow_dispatch: 7 - 8 - permissions: 9 - contents: write 10 - pull-requests: write 11 - 12 - jobs: 13 - nix: 14 - runs-on: ubuntu-latest 15 - steps: 16 - - uses: actions/checkout@v6 17 - - name: install nix 18 - uses: cachix/install-nix-action@v31 19 - - name: flake inputs 20 - run: nix flake update 21 - - name: create pull request 22 - uses: peter-evans/create-pull-request@v7 23 - with: 24 - commit-message: 'flake: update inputs' 25 - committer: 'github-actions[bot] <github-actions[bot]@users.noreply.github.com>' 26 - author: 'github-actions[bot] <github-actions[bot]@users.noreply.github.com>' 27 - branch: 'flake/update-inputs' 28 - title: 'flake: update inputs' 29 - reviewers: adamperkowski 30 - assignees: adamperkowski 31 - actions: 32 - runs-on: ubuntu-latest 33 - steps: 34 - - uses: actions/checkout@v6 35 - - name: update actions 36 - uses: saadmk11/github-actions-version-updater@v0.9.0 37 - with: 38 - token: 'aaaaaaaaaa' 39 - skip_pull_request: true 40 - - name: create pull request 41 - uses: peter-evans/create-pull-request@v7 42 - with: 43 - commit-message: 'ci: update github actions' 44 - committer: 'github-actions[bot] <github-actions[bot]@users.noreply.github.com>' 45 - author: 'github-actions[bot] <github-actions[bot]@users.noreply.github.com>' 46 - branch: 'ci/update-github-actions' 47 - title: 'ci: update github actions' 48 - reviewers: adamperkowski 49 - assignees: adamperkowski
+15
.woodpecker/checks.yml
··· 1 + when: 2 + - event: [push, pull_request] 3 + branch: main 4 + 5 + steps: 6 + - name: commit message 7 + image: ghcr.io/adamperkowski/commits:latest 8 + commands: 9 + - check-commit-message "$(git log -1 --pretty=%B)" 10 + - name: formatting 11 + image: nixos/nix 12 + commands: 13 + - echo 'experimental-features = flakes nix-command' >> /etc/nix/nix.conf 14 + - nix fmt --inputs-from . 15 + - nix shell --inputs-from . nixpkgs#git -c git diff --exit-code
+1
home/modules/packages.nix
··· 10 10 lsd 11 11 jq 12 12 gh 13 + codeberg-cli 13 14 14 15 signal-desktop 15 16
+2 -2
home/modules/programs/zsh.nix
··· 34 34 mkdirenv = "echo -e 'if has nix; then\\n use flake\\nfi' >> .envrc && direnv allow"; 35 35 36 36 nixb = "nom build"; 37 - nixs = "nom shell"; 38 - nixdev = "nom develop -c $SHELL"; 37 + nixs = "FF_SKIP=1 nom shell"; 38 + nixdev = "FF_SKIP=1 nom develop -c $SHELL"; 39 39 40 40 diff = "diff --color=auto"; 41 41 grep = "grep --color=auto";