From 737ee75da037c005a5d7a23dfbd1f66d5cefc8c2 Mon Sep 17 00:00:00 2001 From: Matei Adriel Date: Sun, 12 Apr 2020 15:09:13 +0300 Subject: [PATCH] feat: fish shell --- modules/applications/alacritty.nix | 3 +++ modules/applications/shells/default.nix | 5 ++++- modules/xserver.nix | 2 ++ 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/modules/applications/alacritty.nix b/modules/applications/alacritty.nix index e5a5c4b..72f8dfc 100644 --- a/modules/applications/alacritty.nix +++ b/modules/applications/alacritty.nix @@ -14,6 +14,9 @@ fonts.normal.family = "Source Code Pro"; + # transparent bg:) + background_opacity = 0.7; + colors = { cursor = { text = "#1460d2"; diff --git a/modules/applications/shells/default.nix b/modules/applications/shells/default.nix index 24425a2..0e5ee73 100644 --- a/modules/applications/shells/default.nix +++ b/modules/applications/shells/default.nix @@ -1,4 +1,7 @@ { ... }: { imports = [ ./sessionVariables.nix ]; - home-manager.users.adrielus.programs.zsh.enable = true; + home-manager.users.adrielus.programs = { + zsh.enable = true; + fish.enable = true; + }; } diff --git a/modules/xserver.nix b/modules/xserver.nix index 7762e64..be79b65 100644 --- a/modules/xserver.nix +++ b/modules/xserver.nix @@ -20,4 +20,6 @@ tappingDragLock = false; }; }; + + hardware.opengl.enable = true; }