Compare commits
No commits in common. "d3592260b18f61c702c5ae5b09bdfc6d8bc629f3" and "eb041732fcf543120534809c41e1084084b27d10" have entirely different histories.
d3592260b1
...
eb041732fc
3 changed files with 10 additions and 17 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
@ -28,7 +28,6 @@
|
|||
libinput = {
|
||||
enable = true;
|
||||
touchpad.disableWhileTyping = true;
|
||||
touchpae.tapping = false;
|
||||
mouse.naturalScrolling =
|
||||
config.services.xserver.libinput.touchpad.naturalScrolling;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue