diff --git a/home/alex/cli.nix b/home/alex/cli.nix index 17fd2d8..2efaddb 100644 --- a/home/alex/cli.nix +++ b/home/alex/cli.nix @@ -17,7 +17,6 @@ in { ./programs/jq ./programs/fzf ./programs/git - ./programs/shell ]; programs.home-manager.enable = true; @@ -120,6 +119,16 @@ in { # htop replacement with a nice UI btop.enable = true; + zsh = { + enable = true; + enableAutosuggestions = true; + oh-my-zsh = { + enable = true; + plugins = [ "git" "fzf" "fd" "z" ]; + theme = "simple"; + }; + }; + # better ls with icons and stuff, maybe also try lsd ${myEza} = { enable = true; diff --git a/home/alex/programs/shell/default.nix b/home/alex/programs/shell/default.nix deleted file mode 100644 index b614b70..0000000 --- a/home/alex/programs/shell/default.nix +++ /dev/null @@ -1,15 +0,0 @@ -{ config, lib, pkgs, ... }: - -{ - home.shellAliases = { suspend = "systemctl hibernate"; }; - - programs.zsh = { - enable = true; - enableAutosuggestions = true; - oh-my-zsh = { - enable = true; - plugins = [ "git" "fzf" "fd" "z" ]; - theme = "simple"; - }; - }; -} diff --git a/modules/wm/x.nix b/modules/wm/x.nix index ea3c0b4..58e31d9 100644 --- a/modules/wm/x.nix +++ b/modules/wm/x.nix @@ -28,7 +28,6 @@ libinput = { enable = true; touchpad.disableWhileTyping = true; - touchpae.tapping = false; mouse.naturalScrolling = config.services.xserver.libinput.touchpad.naturalScrolling; };