summaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
authorShubham Saini <ssaini@fispan.com>2023-09-30 03:22:05 +0000
committerShubham Saini <ssaini@fispan.com>2023-09-30 03:22:05 +0000
commit88a10686f7cd9e15feb8d3464c20749dbd51f7c4 (patch)
tree95bf4dc5b411986b33b4c8038a87eab13209dc11 /hosts
parent1a1e7a13b015932119770e4a0e550de0dc83268b (diff)
zsh: vim mode
Diffstat (limited to 'hosts')
-rw-r--r--hosts/morpheus/configuration.nix1
-rw-r--r--hosts/oracle/configuration.nix13
2 files changed, 9 insertions, 5 deletions
diff --git a/hosts/morpheus/configuration.nix b/hosts/morpheus/configuration.nix
index 7b39b4b..395494c 100644
--- a/hosts/morpheus/configuration.nix
+++ b/hosts/morpheus/configuration.nix
@@ -18,6 +18,7 @@
18 ''; 18 '';
19 }; 19 };
20 20
21 environment.pathsToLink = ["/share/zsh"];
21 system.activationScripts.applications.text = pkgs.lib.mkForce ( 22 system.activationScripts.applications.text = pkgs.lib.mkForce (
22 '' 23 ''
23 echo "setting up ~/Applications..." >&2 24 echo "setting up ~/Applications..." >&2
diff --git a/hosts/oracle/configuration.nix b/hosts/oracle/configuration.nix
index 500906b..9782959 100644
--- a/hosts/oracle/configuration.nix
+++ b/hosts/oracle/configuration.nix
@@ -35,11 +35,14 @@
35 35
36 nixpkgs.config.allowUnfree = true; 36 nixpkgs.config.allowUnfree = true;
37 37
38 environment.systemPackages = with pkgs; [ 38 environment = {
39 neovim 39 pathsToLink = ["/share/zsh"];
40 git 40 systemPackages = with pkgs; [
41 interception-tools 41 neovim
42 ]; 42 git
43 interception-tools
44 ];
45 };
43 46
44 services = { 47 services = {
45 xserver = { 48 xserver = {