Reorganize files

This commit is contained in:
Henry Hiles 2023-12-24 11:01:25 -05:00
parent 2fc4f2dd4a
commit a32dfc1089
32 changed files with 260 additions and 398 deletions

39
modules/common/fish.nix Normal file
View file

@ -0,0 +1,39 @@
{pkgs, ...}: {
programs.fish = {
enable = true;
interactiveShellInit = "neofetch";
};
environment = {
systemPackages = [pkgs.hyfetch];
sessionVariables.fish_greeting = "";
shells = [pkgs.fish];
shellAliases = {
# Utility
cat = "bat";
rm = "gio trash";
free = "free -h";
ping = "prettyping";
neofetch = "neowofetch";
shutdown = "shutdown now";
# Git
clone = "gh repo clone";
create = "gh repo create";
push = "git push";
commit = "git add -A && git commit -am";
# NixOS
dev = "nix develop";
garbage = "sudo nix-collect-garbage -d";
flake = "$EDITOR ~/.config/nixos/flake.nix";
common = "$EDITOR ~/.config/nixos/common.nix";
format = "cd ~/.config/nixos/ && nix fmt; cd -";
stylix = "$EDITOR ~/.config/nixos/$(hostname)/stylix.nix";
rebuild = "sudo nixos-rebuild switch --flake ~/.config/nixos/#";
config = "$EDITOR ~/.config/nixos/$(hostname)/configuration.nix";
home-manager = "$EDITOR ~/.config/nixos/$(hostname)/home-manager.nix";
};
};
users.defaultUserShell = pkgs.fish;
}