From 530a7c9777dcd2da256ec43dc1aafe91eb60d2ae Mon Sep 17 00:00:00 2001 From: biscuit Date: Tue, 20 May 2025 14:22:02 -0500 Subject: [PATCH] upd --- dotfiles/biscuit/home.nix | 1 + modules/biscuit/misc.nix | 5 +++++ pkgs/btop/biscuit.nix | 8 ++++++++ 3 files changed, 14 insertions(+) create mode 100644 modules/biscuit/misc.nix create mode 100644 pkgs/btop/biscuit.nix diff --git a/dotfiles/biscuit/home.nix b/dotfiles/biscuit/home.nix index 9deff1f..2b71745 100644 --- a/dotfiles/biscuit/home.nix +++ b/dotfiles/biscuit/home.nix @@ -10,6 +10,7 @@ imports = [ ../../modules/biscuit/editor.nix ../../modules/biscuit/xserver.nix + ../../modules/biscuit/misc.nix ]; programs.home-manager.enable = true; diff --git a/modules/biscuit/misc.nix b/modules/biscuit/misc.nix new file mode 100644 index 0000000..41469ec --- /dev/null +++ b/modules/biscuit/misc.nix @@ -0,0 +1,5 @@ +{...}: { + imports = [ + ../../pkgs/btop/biscuit.nix + ]; +} diff --git a/pkgs/btop/biscuit.nix b/pkgs/btop/biscuit.nix new file mode 100644 index 0000000..7b002b5 --- /dev/null +++ b/pkgs/btop/biscuit.nix @@ -0,0 +1,8 @@ +{...}: { + programs.btop = { + enable = true; + settings = { + vim_keys = true; + }; + }; +}