125 lines
3.6 KiB
Nix
125 lines
3.6 KiB
Nix
{ pkgs, inputs, lib, ... }:
|
|
with lib;
|
|
with lib.my;
|
|
let
|
|
myEmacs = pkgs.emacsNativeComp;
|
|
in
|
|
{
|
|
|
|
users.users.ragon = {
|
|
name = "ragon";
|
|
home = "/Users/ragon";
|
|
};
|
|
environment.systemPackages = [
|
|
myEmacs
|
|
];
|
|
|
|
homebrew = {
|
|
enable = true;
|
|
brews = [
|
|
"pam-reattach"
|
|
];
|
|
casks = [
|
|
"hammerspoon"
|
|
"amethyst"
|
|
"android-platform-tools"
|
|
"alfred"
|
|
"ukelele"
|
|
"homebrew/cask-drivers/zsa-wally"
|
|
"lens"
|
|
"logseq"
|
|
"discord"
|
|
"finicky"
|
|
"vlc"
|
|
"parsec"
|
|
"element"
|
|
];
|
|
#masApps = {
|
|
# # Install Mac App Store apps (install them manually and then do `mas list` to get the id)
|
|
# "AdGuard for Safari" = 1440147259;
|
|
# "Xcode" = 497799835;
|
|
# "Home Assistant" = 1099568401;
|
|
# "WireGuard" = 1451685025;
|
|
# "UTM" = 1538878817;
|
|
# "Bitwarden" = 1352778147;
|
|
# "Shareful" = 1522267256;
|
|
# "app.seashore" = 1448648921;
|
|
# "Tailscale" = 1475387142;
|
|
#};
|
|
};
|
|
|
|
launchd.user.agents.emacsdaemon = {
|
|
script = "${myEmacs}/Applications/Emacs.app/Contents/MacOS/Emacs --daemon";
|
|
serviceConfig.RunAtLoad = true;
|
|
serviceConfig.UserName = "ragon";
|
|
serviceConfig.KeepAlive = true;
|
|
serviceConfig.WorkingDirectory = "/Users/ragon";
|
|
};
|
|
programs.gnupg.agent.enable = true;
|
|
home-manager.users.ragon = { pkgs, lib, inputs, config, ... }:
|
|
{
|
|
home.file.".hammerspoon/init.lua".source =
|
|
pkgs.substituteAll {
|
|
src = ./hammerspoon.lua; inherit myEmacs;
|
|
};
|
|
home.file.".finicky.js".source = ./finicky.js;
|
|
|
|
programs.home-manager.enable = true;
|
|
home.stateVersion = "21.11";
|
|
|
|
home.shellAliases = {
|
|
v = lib.mkForce "emacsclient -t";
|
|
vv = lib.mkForce "emacsclient -c";
|
|
};
|
|
home.sessionVariables = {
|
|
EDITOR = "nvim";
|
|
VISUAL = "nvim";
|
|
COLORTERM = "truecolor"; # emacs tty fix
|
|
PATH = "$PATH:$HOME/go/bin:$HOME/development/flutter/bin:/Applications/Android Studio.app/Contents/bin/:/Applications/Docker.app/Contents/Resources/bin:/Applications/Android Studio.app/Contents/jre/Contents/Home/bin";
|
|
JAVA_HOME = "/Applications/Android Studio.app/Contents/jre/Contents/Home/";
|
|
};
|
|
home.packages = with pkgs; [
|
|
terraform-ls
|
|
mosh
|
|
terraform
|
|
|
|
cmake
|
|
|
|
pandoc
|
|
texlive.combined.scheme-full
|
|
|
|
yabai
|
|
|
|
google-cloud-sdk
|
|
];
|
|
|
|
home.activation = {
|
|
aliasApplications =
|
|
let
|
|
apps = pkgs.buildEnv {
|
|
name = "home-manager-applications";
|
|
paths = config.home.packages;
|
|
pathsToLink = "/Applications";
|
|
};
|
|
in
|
|
lib.hm.dag.entryAfter [ "writeBoundary" ] ''
|
|
# Install MacOS applications to the user environment.
|
|
HM_APPS="$HOME/Applications/Home Manager Apps"
|
|
|
|
# Reset current state
|
|
[ -e "$HM_APPS" ] && $DRY_RUN_CMD rm -r "$HM_APPS"
|
|
$DRY_RUN_CMD mkdir -p "$HM_APPS"
|
|
|
|
# .app dirs need to be actual directories for Finder to detect them as Apps.
|
|
# The files inside them can be symlinks though.
|
|
$DRY_RUN_CMD cp --recursive --symbolic-link --no-preserve=mode -H ${apps}/Applications/* "$HM_APPS" || true # can fail if no apps exist
|
|
# Modes need to be stripped because otherwise the dirs wouldn't have +w,
|
|
# preventing us from deleting them again
|
|
# In the env of Apps we build, the .apps are symlinks. We pass all of them as
|
|
# arguments to cp and make it dereference those using -H
|
|
'';
|
|
};
|
|
|
|
};
|
|
|
|
}
|