Compare commits

..

No commits in common. "d3592260b18f61c702c5ae5b09bdfc6d8bc629f3" and "eb041732fcf543120534809c41e1084084b27d10" have entirely different histories.

3 changed files with 10 additions and 17 deletions

View file

@ -17,7 +17,6 @@ in {
./programs/jq ./programs/jq
./programs/fzf ./programs/fzf
./programs/git ./programs/git
./programs/shell
]; ];
programs.home-manager.enable = true; programs.home-manager.enable = true;
@ -120,6 +119,16 @@ in {
# htop replacement with a nice UI # htop replacement with a nice UI
btop.enable = true; 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 # better ls with icons and stuff, maybe also try lsd
${myEza} = { ${myEza} = {
enable = true; enable = true;

View file

@ -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";
};
};
}

View file

@ -28,7 +28,6 @@
libinput = { libinput = {
enable = true; enable = true;
touchpad.disableWhileTyping = true; touchpad.disableWhileTyping = true;
touchpae.tapping = false;
mouse.naturalScrolling = mouse.naturalScrolling =
config.services.xserver.libinput.touchpad.naturalScrolling; config.services.xserver.libinput.touchpad.naturalScrolling;
}; };