added significant items
added fish shellInit, removed top level empty configuration, removed lib.mkIf logic for fish aliases
This commit is contained in:
@ -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;
|
||||
};
|
||||
}
|
||||
|
@ -3,6 +3,7 @@
|
||||
{
|
||||
programs.direnv = {
|
||||
enable = true;
|
||||
nix-direnv.enable = true;
|
||||
|
||||
config = {
|
||||
global = {
|
||||
|
@ -1,5 +1,4 @@
|
||||
{ lib, config, ... }:
|
||||
|
||||
{
|
||||
programs.fish = {
|
||||
shellAliases = {
|
||||
|
@ -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
|
||||
";
|
||||
};
|
||||
}
|
||||
|
@ -3,5 +3,7 @@
|
||||
{
|
||||
programs.neovim = {
|
||||
enable = true;
|
||||
|
||||
# nvim configuration here soon!
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user