From 00eedb9a163a64b0e3fa2e080933c8ec50da16d9 Mon Sep 17 00:00:00 2001 From: Vivian Date: Thu, 19 Jun 2025 19:50:34 +0200 Subject: [PATCH 1/3] update nvim --- common/desktop/home.nix | 2 +- common/hm-modules/nvim/default.nix | 5 +++++ common/hm-modules/nvim/keybinds.nix | 5 +++++ nixos/hosts/olympus/mailserver/configuration.nix | 1 - 4 files changed, 11 insertions(+), 2 deletions(-) diff --git a/common/desktop/home.nix b/common/desktop/home.nix index ede96f20..137694a0 100644 --- a/common/desktop/home.nix +++ b/common/desktop/home.nix @@ -97,9 +97,9 @@ in xdg.autoStart = { packages = with pkgs; [ element-desktop + signal-desktop firefox discord - obsidian ]; }; diff --git a/common/hm-modules/nvim/default.nix b/common/hm-modules/nvim/default.nix index 1d888423..9b3695d8 100644 --- a/common/hm-modules/nvim/default.nix +++ b/common/hm-modules/nvim/default.nix @@ -76,6 +76,11 @@ with lib; }; }; + # codecompanion = { + # enable = true; + # + # }; + vimwiki = { enable = true; settings = { diff --git a/common/hm-modules/nvim/keybinds.nix b/common/hm-modules/nvim/keybinds.nix index d710e5b3..f36cf0ff 100644 --- a/common/hm-modules/nvim/keybinds.nix +++ b/common/hm-modules/nvim/keybinds.nix @@ -59,6 +59,11 @@ key = "fr"; action = ":Telescope frecency"; } + { + mode = "n"; + key = "zf"; + action = ":Telescope spell_suggest"; + } # { # mode = "n"; #key = "ob"; diff --git a/nixos/hosts/olympus/mailserver/configuration.nix b/nixos/hosts/olympus/mailserver/configuration.nix index c434d166..efff9fbf 100644 --- a/nixos/hosts/olympus/mailserver/configuration.nix +++ b/nixos/hosts/olympus/mailserver/configuration.nix @@ -102,7 +102,6 @@ in { }; }; services = { - postfix.relayHost = "smtp.ziggozakelijk.nl"; postfix.relayPort = 587; From 34ef9e32c9c4fe925c519d45782aaea5f5b7e63e Mon Sep 17 00:00:00 2001 From: Vivian Date: Mon, 21 Jul 2025 22:28:43 +0200 Subject: [PATCH 2/3] remove workflows --- .forgejo/workflows/lint.yml | 22 ------------------ .forgejo/workflows/nix.yml | 22 ------------------ .forgejo/workflows/plex_update.yml | 37 ------------------------------ 3 files changed, 81 deletions(-) delete mode 100644 .forgejo/workflows/lint.yml delete mode 100644 .forgejo/workflows/nix.yml delete mode 100644 .forgejo/workflows/plex_update.yml diff --git a/.forgejo/workflows/lint.yml b/.forgejo/workflows/lint.yml deleted file mode 100644 index 85b68639..00000000 --- a/.forgejo/workflows/lint.yml +++ /dev/null @@ -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 . diff --git a/.forgejo/workflows/nix.yml b/.forgejo/workflows/nix.yml deleted file mode 100644 index a67c4890..00000000 --- a/.forgejo/workflows/nix.yml +++ /dev/null @@ -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 diff --git a/.forgejo/workflows/plex_update.yml b/.forgejo/workflows/plex_update.yml deleted file mode 100644 index edbe071d..00000000 --- a/.forgejo/workflows/plex_update.yml +++ /dev/null @@ -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 From 2b1a720c8f91b456ad0d753c762e17374516b119 Mon Sep 17 00:00:00 2001 From: Vivian Date: Wed, 20 Aug 2025 20:59:11 +0200 Subject: [PATCH 3/3] add nicotine --- common/desktop/home.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/common/desktop/home.nix b/common/desktop/home.nix index 55d70a27..778735d8 100644 --- a/common/desktop/home.nix +++ b/common/desktop/home.nix @@ -28,16 +28,17 @@ in btop calibre celluloid # video player - comma cinny-desktop + comma discord element-desktop - foliate # epub reader firefox + foliate # epub reader gcc gimp jellyfin-media-player neofetch + nicotine-plus nixpkgs-review qmk signal-desktop