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
|
./direnv.nix
|
||||||
./firefox.nix
|
./firefox.nix
|
||||||
./zellij.nix
|
./zellij.nix
|
||||||
./music.nix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
home.stateVersion = "24.05";
|
home.stateVersion = "24.05";
|
||||||
|
@ -52,8 +51,8 @@
|
||||||
ardour # DAW
|
ardour # DAW
|
||||||
gimp3 # GNU Image Manipulation Program, pretty self explanatory
|
gimp3 # GNU Image Manipulation Program, pretty self explanatory
|
||||||
|
|
||||||
networkmanagerapplet
|
networkmanagerapplet # Tray icon for managing networking
|
||||||
blueman
|
blueman # Tray icon for managing bluetooth
|
||||||
];
|
];
|
||||||
services.flatpak.packages = [
|
services.flatpak.packages = [
|
||||||
"io.mrarm.mcpelauncher" # Minecraft bedrock edition launcher
|
"io.mrarm.mcpelauncher" # Minecraft bedrock edition launcher
|
||||||
|
@ -74,6 +73,10 @@
|
||||||
programs.home-manager.enable = true;
|
programs.home-manager.enable = true;
|
||||||
|
|
||||||
programs.tmux.enable = true;
|
programs.tmux.enable = true;
|
||||||
|
programs.zoxide = {
|
||||||
|
enable = true;
|
||||||
|
enableZshIntegration = true;
|
||||||
|
};
|
||||||
|
|
||||||
programs.btop.enable = true;
|
programs.btop.enable = true;
|
||||||
programs.btop.package = pkgs.stable.btop-rocm;
|
programs.btop.package = pkgs.stable.btop-rocm;
|
||||||
|
|
|
@ -1,6 +1,4 @@
|
||||||
{
|
{
|
||||||
config,
|
|
||||||
lib,
|
|
||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
|
@ -16,8 +14,9 @@
|
||||||
ls = "eza -lh";
|
ls = "eza -lh";
|
||||||
ip = "ip --color=auto";
|
ip = "ip --color=auto";
|
||||||
nano = "nvim";
|
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";
|
switch = "sudo nixos-rebuild switch --flake ~/nixconf |& nom";
|
||||||
homeswitch = "home-manager 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";
|
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