added significant items

added fish shellInit, removed top level empty configuration, removed
lib.mkIf logic for fish aliases
This commit is contained in:
2024-07-21 10:03:25 -04:00
parent d6690e87b7
commit 08a543fabe
8 changed files with 25 additions and 16 deletions

View File

@ -14,11 +14,17 @@
];
config = {
programs.home-manager.enable = true;
fonts.fontconfig.enable = true;
home.stateVersion = "24.05";
home.username = "wyatt";
home.homeDirectory = "/Users/wyatt";
home.packages = with pkgs; [
discord
babelfish
obsidian
tmux
zoxide
wget
nerdfonts
@ -36,8 +42,5 @@
home.sessionVariables = {
EDITOR = "nvim";
};
fonts.fontconfig.enable = true;
programs.home-manager.enable = true;
};
}

View File

@ -3,6 +3,7 @@
{
programs.direnv = {
enable = true;
nix-direnv.enable = true;
config = {
global = {

View File

@ -1,5 +1,4 @@
{ lib, config, ... }:
{
programs.fish = {
shellAliases = {

View File

@ -8,5 +8,10 @@
programs.fish = {
enable = true;
shellInit = "
if test -e /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.fish
source /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.fish
end
";
};
}

View File

@ -3,5 +3,7 @@
{
programs.neovim = {
enable = true;
# nvim configuration here soon!
};
}