summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGrisha Shipunov2025-08-15 21:50:02 +0200
committerGrisha Shipunov2025-08-15 21:50:02 +0200
commita17f4c1910550ee2fdb799f4a178ce9d29d02208 (patch)
tree12355fc719a376f2dafb1aab2f8a9e7c27e45bca /modules
parent13eeb16ef60cdc3ea0f396750db17c1a2149b312 (diff)
update config for toaster, roate key
Diffstat (limited to 'modules')
-rw-r--r--modules/basic-tools/default.nix21
1 files changed, 6 insertions, 15 deletions
diff --git a/modules/basic-tools/default.nix b/modules/basic-tools/default.nix
index 024547c..9b012f0 100644
--- a/modules/basic-tools/default.nix
+++ b/modules/basic-tools/default.nix
@@ -3,6 +3,7 @@
{
imports = [
./fzf.nix
+ ./fish.nix
./multiplexers.nix
./nix.nix
./nix-ld.nix
@@ -60,21 +61,11 @@
[ git ]
);
- environment.variables =
- let
- editorconf =
- if config.services.emacs.defaultEditor then
- { }
- else
- {
- EDITOR = "nvim";
- };
- in
- {
- PAGER = "less";
- LESS = "-X -R -F";
- }
- // editorconf;
+ environment.variables = {
+ PAGER = "less";
+ LESS = "-X -R -F";
+ EDITOR = "nvim";
+ };
environment.shellAliases = {
vim = "nvim";