aboutsummaryrefslogtreecommitdiffstats
path: root/pkgs/by-name/at/atuin-dvorak/package.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/by-name/at/atuin-dvorak/package.nix')
-rw-r--r--pkgs/by-name/at/atuin-dvorak/package.nix32
1 files changed, 0 insertions, 32 deletions
diff --git a/pkgs/by-name/at/atuin-dvorak/package.nix b/pkgs/by-name/at/atuin-dvorak/package.nix
deleted file mode 100644
index d3f92961..00000000
--- a/pkgs/by-name/at/atuin-dvorak/package.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-# nixos-config - My current NixOS configuration
-#
-# Copyright (C) 2025 Benedikt Peetz <benedikt.peetz@b-peetz.de>
-# SPDX-License-Identifier: GPL-3.0-or-later
-#
-# This file is part of my nixos-config.
-#
-# You should have received a copy of the License along with this program.
-# If not, see <https://www.gnu.org/licenses/gpl-3.0.txt>.
-{atuin}:
-atuin.overrideAttrs (finalAttrs: previousAttrs: {
- pname = previousAttrs.pname + "-dvorak";
- patches =
- previousAttrs.patches
- ++ [
- ./set-dvorak-keybindings.patch
- ];
-
- # atuin's default features include 'check-updates', which do not make sense
- # for distribution builds. List all other default features.
- buildNoDefaultFeatures = true;
- buildFeatures = [
- "client"
- # "sync"
- # "server"
- "clipboard"
- # "daemon"
- ];
-
- # The checks don't compile without the `server` feature
- doCheck = false;
-})