zoxide
This commit is contained in:
parent
53afe325f5
commit
14ed44f8fd
4
dotfiles/.bashrc
Normal file
4
dotfiles/.bashrc
Normal file
|
@ -0,0 +1,4 @@
|
|||
sh ~/.shellrc
|
||||
|
||||
eval "$(zoxide init bash)"
|
||||
eval "$(fzf --bash)"
|
4
dotfiles/.zshrc
Normal file
4
dotfiles/.zshrc
Normal file
|
@ -0,0 +1,4 @@
|
|||
sh ~/.shellrc
|
||||
|
||||
eval "$(zoxide init zsh)"
|
||||
source <(fzf --zsh)
|
|
@ -67,6 +67,7 @@
|
|||
|
||||
# NixOS configuration entrypoint
|
||||
# Available through 'nixos-rebuild build --flake .#phoenix'
|
||||
# or nixos-rebuild switch --flake .#$(cat /etc/hostname)
|
||||
nixosConfigurations = {
|
||||
phoenix = stable.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
|
|
|
@ -19,9 +19,11 @@
|
|||
|
||||
home-manager.users.user = {pkgs, ...}: {
|
||||
home.file = {
|
||||
".zshrc".source = ../../dotfiles/.shellrc;
|
||||
".bashrc".source = ../../dotfiles/.shellrc;
|
||||
".zshrc".source = ../../dotfiles/.zshrc;
|
||||
".bashrc".source = ../../dotfiles/.bashrc;
|
||||
".shellrc".source = ../../dotfiles/.shellrc;
|
||||
|
||||
".config/btop/btop.conf".source = ../../dotfiles/btop.conf;
|
||||
# ".librewolf/librewolf.overrides.cfg".source = ../../dotfiles/librewolf.overrides.cfg;
|
||||
};
|
||||
|
||||
|
|
|
@ -21,8 +21,11 @@
|
|||
|
||||
home-manager.users.user = {pkgs, ...}: {
|
||||
home.file = {
|
||||
".zshrc".source = ../../dotfiles/.shellrc;
|
||||
".bashrc".source = ../../dotfiles/.shellrc;
|
||||
".zshrc".source = ../../dotfiles/.zshrc;
|
||||
".bashrc".source = ../../dotfiles/.bashrc;
|
||||
".shellrc".source = ../../dotfiles/.shellrc;
|
||||
|
||||
".config/btop/btop.conf".source = ../../dotfiles/btop.conf;
|
||||
|
||||
".librewolf/librewolf.overrides.cfg".source = ../../dotfiles/librewolf.overrides.cfg;
|
||||
};
|
||||
|
|
|
@ -23,8 +23,10 @@
|
|||
home-manager.users.tasia = {pkgs, ...}: {
|
||||
home = {
|
||||
file = {
|
||||
".zshrc".source = ../../dotfiles/.shellrc;
|
||||
".bashrc".source = ../../dotfiles/.shellrc;
|
||||
".zshrc".source = ../../dotfiles/.zshrc;
|
||||
".bashrc".source = ../../dotfiles/.bashrc;
|
||||
".shellrc".source = ../../dotfiles/.shellrc;
|
||||
|
||||
".config/btop/btop.conf".source = ../../dotfiles/btop.conf;
|
||||
# ".gitconfig".source = ../../dotfiles/.gitconfig;
|
||||
|
||||
|
@ -74,15 +76,19 @@
|
|||
# home-manager
|
||||
lsof
|
||||
appimage-run
|
||||
|
||||
atool
|
||||
httpie
|
||||
cowsay
|
||||
zoxide
|
||||
fzf
|
||||
# atool
|
||||
# httpie
|
||||
# cowsay
|
||||
stress
|
||||
lazygit
|
||||
inxi
|
||||
|
||||
ssb-patchwork
|
||||
xonotic
|
||||
amfora
|
||||
# dive
|
||||
|
||||
# android-tools
|
||||
# endless-sky
|
||||
|
@ -95,9 +101,6 @@
|
|||
# radicle-cli
|
||||
# opensnitch-ui
|
||||
# hurl https://github.com/Orange-OpenSource/hurl
|
||||
amfora
|
||||
dive
|
||||
inxi
|
||||
# revolt-desktop
|
||||
];
|
||||
|
||||
|
|
|
@ -21,8 +21,11 @@
|
|||
|
||||
home-manager.users.user = {pkgs, ...}: {
|
||||
home.file = {
|
||||
".zshrc".source = ../../dotfiles/.shellrc;
|
||||
".bashrc".source = ../../dotfiles/.shellrc;
|
||||
".zshrc".source = ../../dotfiles/.zshrc;
|
||||
".bashrc".source = ../../dotfiles/.bashrc;
|
||||
".shellrc".source = ../../dotfiles/.shellrc;
|
||||
|
||||
".config/btop/btop.conf".source = ../../dotfiles/btop.conf;
|
||||
};
|
||||
|
||||
home.packages = with pkgs; [
|
||||
|
|
|
@ -22,7 +22,6 @@ in {
|
|||
../../common/hardware/nvidia-gpu-offload.nix
|
||||
../../common/hardware/ssd.nix
|
||||
../../common/hardware/btrfs.nix
|
||||
# ../../common/hardware/latest-kernel.nix
|
||||
|
||||
../../common/components/de/sddm.nix
|
||||
../../common/components/de/plasma6.nix
|
||||
|
@ -92,7 +91,6 @@ in {
|
|||
|
||||
osu-lazer-bin
|
||||
prismlauncher
|
||||
|
||||
# inputs.nixos-conf-editor.packages.${system}.nixos-conf-editor
|
||||
# inputs.nix-software-center.packages.${system}.nix-software-center
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue