mirror of
https://codeberg.org/tmayoff/.dotfiles.git
synced 2025-12-06 08:48:34 -05:00
Getting this working on macos
This commit is contained in:
parent
ec0f5e8e55
commit
7ed15206d0
3 changed files with 27 additions and 16 deletions
|
|
@ -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 = {
|
||||
|
|
|
|||
|
|
@ -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";
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue