Getting this working on macos

This commit is contained in:
Tyler Mayoff 2024-12-04 11:27:18 -05:00
parent ec0f5e8e55
commit 7ed15206d0
3 changed files with 27 additions and 16 deletions

View file

@ -7,8 +7,11 @@
set -gx DEBEMAIL "tyler@tylermayoff.com"
fish_add_path $HOME/.local/bin
source $HOME/.config/fish/variables-$(hostname).fish
fish_add_path /opt/homebrew/bin
if test -e $HOME/.config/fish/variables-$(hostname)fish
source $HOME/.config/fish/variables-$(hostname).fish
end
bind \cz 'fg 2>/dev/null; commandline -f repaint'
zoxide init fish | source
@ -22,7 +25,9 @@
set -xg XDG_DATA_DIRS "$HOME/.nix-profile/share:$XDG_DATA_DIRS"
fish_add_path $HOME/.local/bin
source $HOME/.config/fish/variables-$(hostname).fish
if test -e $HOME/.config/fish/variables-$(hostname)fish
source $HOME/.config/fish/variables-$(hostname).fish
end
'';
# functions = {

View file

@ -6,8 +6,14 @@
pkgs,
...
}: {
# imports = [../common.nix];
imports = [../common.nix];
home.username =lib.mkForce "tyler.mayoff";
home.homeDirectory = lib.mkForce "/Users/tyler.mayoff";
home.packages = with pkgs; [
];
# home.stateVersion = "23.11";
}