added zoxide in place of cd
This commit is contained in:
parent
42ae9eabe6
commit
75bf694865
2 changed files with 8 additions and 6 deletions
|
@ -20,7 +20,6 @@
|
|||
./direnv.nix
|
||||
./firefox.nix
|
||||
./zellij.nix
|
||||
./music.nix
|
||||
];
|
||||
|
||||
home.stateVersion = "24.05";
|
||||
|
@ -52,8 +51,8 @@
|
|||
ardour # DAW
|
||||
gimp3 # GNU Image Manipulation Program, pretty self explanatory
|
||||
|
||||
networkmanagerapplet
|
||||
blueman
|
||||
networkmanagerapplet # Tray icon for managing networking
|
||||
blueman # Tray icon for managing bluetooth
|
||||
];
|
||||
services.flatpak.packages = [
|
||||
"io.mrarm.mcpelauncher" # Minecraft bedrock edition launcher
|
||||
|
@ -74,6 +73,10 @@
|
|||
programs.home-manager.enable = true;
|
||||
|
||||
programs.tmux.enable = true;
|
||||
programs.zoxide = {
|
||||
enable = true;
|
||||
enableZshIntegration = true;
|
||||
};
|
||||
|
||||
programs.btop.enable = true;
|
||||
programs.btop.package = pkgs.stable.btop-rocm;
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
|
@ -16,8 +14,9 @@
|
|||
ls = "eza -lh";
|
||||
ip = "ip --color=auto";
|
||||
nano = "nvim";
|
||||
cd = "z";
|
||||
|
||||
# Aliases for my nixos workflow, requires nh and home-manager
|
||||
# Aliases for my nixos workflow
|
||||
switch = "sudo nixos-rebuild switch --flake ~/nixconf |& nom";
|
||||
homeswitch = "home-manager switch --flake ~/nixconf |& nom";
|
||||
serverswitch = "nixos-rebuild switch --flake ~/nixconf#biggerpi --target-host blue@biggerpi --use-remote-sudo |& nom";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue