From ab2b89c6181fd81c68703f7cbd67259d2bb94d47 Mon Sep 17 00:00:00 2001 From: Pierre Martin Date: Mon, 21 Sep 2026 16:53:31 +0200 Subject: [PATCH] =?UTF-8?q?chore(packages):=20retrait=20des=20outils=20per?= =?UTF-8?q?so=20et=20reliquats=20associ=C3=A9s?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Nextcloud est désormais utilisé sur une autre machine. Retrait du client et des packages perso inutilisés (brave, signal, calibre, beancount…). Reliquats nettoyés : - i3 : autostart nextcloud - zsh : complétion k3d, variables Cypress (binaire Nix supprimé) Co-Authored-By: Claude Opus 5 --- packages.nix | 38 -------------------------------------- programs/i3.nix | 4 ---- programs/zsh.nix | 5 ----- 3 files changed, 47 deletions(-) diff --git a/packages.nix b/packages.nix index e7ae30a..b57a5a2 100644 --- a/packages.nix +++ b/packages.nix @@ -34,8 +34,6 @@ in "slack" "spotify" "spotify-unwrapped" - - "ticktick" ]; home.packages = with pkgs; [ @@ -58,16 +56,12 @@ in pavucontrol bluez # was bluezFull before 27th september 2022 - # see https://discourse.nixos.org/t/error-nose-1-3-7-not-supported-for-interpreter-python3-12/48703 - # solaar # bluetooth unifying devices and receiver - sakura tmux zoxide ripgrep tree ncdu - pv jq yq fx @@ -117,14 +111,10 @@ in difftastic glab - firefox google-chrome - offpunk - lagrange thunderbird slack mattermost-desktop - signal-desktop libreoffice ddcutil filezilla @@ -139,7 +129,6 @@ in kdePackages.kcachegrind spotify - # spotdl see https://discourse.nixos.org/t/error-nose-1-3-7-not-supported-for-interpreter-python3-12/48703 vlc jetbrains-mono @@ -153,10 +142,8 @@ in nodejs_22 fnm bun - cypress docker docker-compose - k3d kubectl kubernetes-helm stern @@ -170,10 +157,6 @@ in python312 python312Packages.pip python312Packages.uv - # pipx # for global python packages (aider-chat, fabric, etc.) - twine - # uv - # conda mkcert nssTools # certutil for mkcert CA installation in browsers goaccess @@ -192,26 +175,5 @@ in alsa-utils # arecord pour l'enregistrement xdotool # pour taper le texte transcrit libnotify # notifications - - # Perso - brave - nextcloud-client - rclone - audacity - freeplane - calibre - retext - gparted - ticktick - agate - beancount - - ## TODO: fix fava - # Checking runtime dependencies for fava-1.29-py3-none-any.whl - # copying path '/nix/store/yxd2da4vc9gi5jbs1nlvwpsmwj308bp1-kdoctools-6.10.0' from 'https://cache.nixos.org'... - # - beancount<3,>=2.3.5 not satisfied by version 3.0.0 - # copying path '/nix/store/a8n27li3n2fy8jfdm99v9j3yn6w3yk5y-kguiaddons-6.10.0' from 'https://cache.nixos.org'... - # error: builder for '/nix/store/2xd25ssas4yliykz4y4n8p6h762wcalm-fava-1.29.drv' failed with exit code 1 - # fava ]; } diff --git a/programs/i3.nix b/programs/i3.nix index 45113ca..4610994 100644 --- a/programs/i3.nix +++ b/programs/i3.nix @@ -100,10 +100,6 @@ ]; startup = [ - { - command = "nextcloud"; - notification = false; - } { command = "setxkbmap -layout fr -variant bepo"; notification = false; diff --git a/programs/zsh.nix b/programs/zsh.nix index 1a9e6d2..8133a47 100644 --- a/programs/zsh.nix +++ b/programs/zsh.nix @@ -74,7 +74,6 @@ # K8s source <(helm completion zsh) - source <(k3d completion zsh) source <(kubectl completion zsh) source <(k9s completion zsh); compdef _k9s k9s @@ -103,11 +102,7 @@ ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE = "fg=7"; TERMINAL = "sakura"; PATH = "$PATH:$HOME/.npm/bin:$HOME/.local/bin"; - # Use a local Cypress binary instead of the one installed by the CLI (not usable on NixOS) - # see https://github.com/NixOS/nixpkgs/pull/56387 and https://discourse.nixos.org/t/cypress-with-npm/15137/4 HUSKY = 0; - CYPRESS_INSTALL_BINARY = 0; - CYPRESS_RUN_BINARY = "$HOME/.nix-profile/bin/Cypress"; LD_LIBRARY_PATH = "${pkgs.libgcc}/lib"; };