From 5dfaa1d59306afaca1d1cea62e4147b3b4406ede Mon Sep 17 00:00:00 2001 From: Kristian Krsnik Date: Tue, 6 Feb 2024 16:13:57 +0100 Subject: [PATCH] moved alias to bash module --- systems/common/bash.nix | 1 + systems/common/vscode.nix | 6 ------ 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/systems/common/bash.nix b/systems/common/bash.nix index 7759a80..7d85785 100644 --- a/systems/common/bash.nix +++ b/systems/common/bash.nix @@ -7,6 +7,7 @@ ''; shellAliases = { + code = "codium"; # Alias VSCode with VSCodium ll = "ls -lh"; la = "ls -lah"; ".." = "cd .."; diff --git a/systems/common/vscode.nix b/systems/common/vscode.nix index 9352c49..634927c 100644 --- a/systems/common/vscode.nix +++ b/systems/common/vscode.nix @@ -1,10 +1,4 @@ {pkgs, ...}: { - programs.bash = { - shellAliases = { - code = "codium"; # Alias VSCode with VSCodium - }; - }; - programs.vscode = { enable = true;