Compare commits
No commits in common. "b37fd33081ba5b5b28264df96948e0114f77238b" and "fea08c5b80e99acdad843483045e0f66cf36612e" have entirely different histories.
b37fd33081
...
fea08c5b80
3 changed files with 35 additions and 22 deletions
|
|
@ -11,7 +11,6 @@
|
|||
sessionVariables = {
|
||||
SSH_AUTH_SOCK = "$HOME/Library/Group Containers/2BUA8C4S2C.com.1password/t/agent.sock";
|
||||
EDITOR = "nvim";
|
||||
MISE_EXPERIMENTAL = 1;
|
||||
};
|
||||
|
||||
packages = with pkgs; [
|
||||
|
|
@ -58,13 +57,6 @@
|
|||
|
||||
programs.fish = {
|
||||
enable = true;
|
||||
shellInit = ''
|
||||
if test -d ~/.claude/local
|
||||
fish_add_path ~/.claude/local
|
||||
end
|
||||
|
||||
mise activate fish | source
|
||||
'';
|
||||
interactiveShellInit = ''
|
||||
fish_vi_key_bindings
|
||||
|
||||
|
|
@ -101,19 +93,19 @@
|
|||
nix-direnv.enable = true;
|
||||
};
|
||||
|
||||
# programs.mise = {
|
||||
# enable = true;
|
||||
# enableFishIntegration = true;
|
||||
# globalConfig = {
|
||||
# tools = {
|
||||
# usage = "latest";
|
||||
# erlang = "latest";
|
||||
# elixir = "latest";
|
||||
# nodejs = "lts";
|
||||
# };
|
||||
# };
|
||||
# settings.experimental = true;
|
||||
# };
|
||||
programs.mise = {
|
||||
enable = true;
|
||||
enableFishIntegration = true;
|
||||
globalConfig = {
|
||||
tools = {
|
||||
usage = "latest";
|
||||
erlang = "latest";
|
||||
elixir = "latest";
|
||||
nodejs = "lts";
|
||||
};
|
||||
};
|
||||
settings.experimental = true;
|
||||
};
|
||||
|
||||
programs.zellij = {
|
||||
enable = true;
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@
|
|||
finder = {
|
||||
AppleShowAllExtensions = true;
|
||||
AppleShowAllFiles = true;
|
||||
CreateDesktop = true;
|
||||
CreateDesktop = false;
|
||||
FXDefaultSearchScope = "SCcf"; # current folder
|
||||
FXEnableExtensionChangeWarning = false;
|
||||
NewWindowTarget = "Home";
|
||||
|
|
@ -56,10 +56,12 @@
|
|||
};
|
||||
onActivation = {
|
||||
autoUpdate = false;
|
||||
cleanup = "uninstall";
|
||||
};
|
||||
|
||||
brews = [
|
||||
"libyaml"
|
||||
"mas"
|
||||
"openssl"
|
||||
"wxwidgets"
|
||||
"schpet/tap/linear"
|
||||
|
|
@ -85,5 +87,10 @@
|
|||
"tailscale"
|
||||
"unnaturalscrollwheels"
|
||||
];
|
||||
|
||||
masApps = {
|
||||
Things = 904280696;
|
||||
"Hand Mirror" = 1502839586;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,19 @@
|
|||
{ ... }:
|
||||
{
|
||||
system.defaults = {
|
||||
dock.persistent-apps = [
|
||||
"/Applications/Firefox.app"
|
||||
"/Applications/Things3.app"
|
||||
"/Applications/Fantastical.app"
|
||||
"/System/Applications/Messages.app"
|
||||
"/Applications/Slack.app/"
|
||||
"/Applications/Discord.app"
|
||||
"/System/Applications/Music.app"
|
||||
"/Applications/Obsidian.app"
|
||||
"/Applications/Ghostty.app"
|
||||
];
|
||||
};
|
||||
|
||||
homebrew = {
|
||||
casks = [
|
||||
"discord"
|
||||
|
|
|
|||
Loading…
Reference in a new issue