Compare commits
7 commits
d49a173439
...
eff1752c64
Author | SHA1 | Date | |
---|---|---|---|
eff1752c64 | |||
2b1a720c8f | |||
5c1fc8e86c | |||
34ef9e32c9 | |||
1b698c6911 | |||
ea79340ad6 | |||
00eedb9a16 |
7 changed files with 17 additions and 82 deletions
|
@ -1,22 +0,0 @@
|
|||
name: Lint
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
runs-on: docker
|
||||
env:
|
||||
container:
|
||||
image: ghcr.io/catthehacker/ubuntu:js-20.04
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: https://github.com/cachix/install-nix-action@v22
|
||||
env:
|
||||
with:
|
||||
nix_path: nixpkgs=channel:nixos-unstable
|
||||
- run: |
|
||||
sed -i '/^access-tokens/ d' /etc/nix/nix.conf
|
||||
nix profile install 'nixpkgs#deadnix' 'nixpkgs#statix' 'nixpkgs#yamllint'
|
||||
statix check .
|
||||
deadnix -f
|
||||
yamllint .
|
|
@ -1,22 +0,0 @@
|
|||
name: Nix
|
||||
|
||||
# on: [push]
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
runs-on: docker
|
||||
env:
|
||||
container:
|
||||
image: ghcr.io/catthehacker/ubuntu:js-20.04
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Check Nix flake inputs
|
||||
uses: https://github.com/DeterminateSystems/flake-checker-action@v5
|
||||
- uses: https://github.com/cachix/install-nix-action@v22
|
||||
env:
|
||||
with:
|
||||
nix_path: nixpkgs=channel:nixos-unstable
|
||||
- name: Run `nix flake check`
|
||||
run: |
|
||||
sed -i '/^access-tokens/ d' /etc/nix/nix.conf
|
||||
nix run '.#' -- -V
|
|
@ -1,37 +0,0 @@
|
|||
name: Plex Update
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
- ci
|
||||
schedule:
|
||||
- cron: '0 0 * * *'
|
||||
|
||||
jobs:
|
||||
update:
|
||||
runs-on: docker
|
||||
container:
|
||||
image: ghcr.io/catthehacker/ubuntu:js-20.04
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: https://github.com/cachix/install-nix-action@v22
|
||||
with:
|
||||
nix_path: nixpkgs=channel:nixos-unstable
|
||||
- env:
|
||||
VAULT_ADDR: ${{ secrets.VAULT_ADDR }}
|
||||
VAULT_TOKEN: ${{ secrets.VAULT_TOKEN }}
|
||||
run: |
|
||||
git config user.name "Forgejo Actions Bot"
|
||||
git config user.email "<>"
|
||||
|
||||
# Run Update script
|
||||
./pkgs/plex-pass/update.sh
|
||||
|
||||
git add ./pkgs/plex-pass/
|
||||
|
||||
# Push if changed
|
||||
if git status ./nixos/pkgs/plex-pass/ | grep -q "to be committed"; then
|
||||
git commit -m "Update Plex"
|
||||
git push origin main
|
||||
fi
|
|
@ -38,6 +38,7 @@ in
|
|||
jellyfin-media-player
|
||||
krita
|
||||
neofetch
|
||||
nicotine-plus
|
||||
nixpkgs-review
|
||||
qmk
|
||||
signal-desktop
|
||||
|
@ -97,6 +98,7 @@ in
|
|||
xdg.autoStart = {
|
||||
packages = with pkgs; [
|
||||
element-desktop
|
||||
signal-desktop
|
||||
firefox
|
||||
discord
|
||||
];
|
||||
|
|
|
@ -76,6 +76,11 @@ with lib;
|
|||
};
|
||||
};
|
||||
|
||||
# codecompanion = {
|
||||
# enable = true;
|
||||
#
|
||||
# };
|
||||
|
||||
vimwiki = {
|
||||
enable = true;
|
||||
settings = {
|
||||
|
|
|
@ -59,6 +59,16 @@
|
|||
key = "<leader>fr";
|
||||
action = ":Telescope frecency<CR>";
|
||||
}
|
||||
{
|
||||
mode = "n";
|
||||
key = "<leader>zf";
|
||||
action = ":Telescope spell_suggest<CR>";
|
||||
}
|
||||
# {
|
||||
# mode = "n";
|
||||
#key = "<leader>ob";
|
||||
# action = mkRaw "require('obsidian_picker').obsidian_picker";
|
||||
#}
|
||||
# Commenting
|
||||
{
|
||||
mode = "n";
|
||||
|
|
|
@ -102,7 +102,6 @@ in {
|
|||
};
|
||||
};
|
||||
services = {
|
||||
|
||||
postfix.relayHost = "smtp.ziggozakelijk.nl";
|
||||
postfix.relayPort = 587;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue