nix-config/homes/aarch64-darwin/marshall@canis/default.nix

99 lines
1.7 KiB
Nix
Raw Normal View History

2024-07-28 21:52:06 -04:00
{
pkgs,
inputs,
...
}: {
imports = with inputs; [
nix-index-database.hmModules.nix-index
catppuccin.homeManagerModules.catppuccin
chaotic.homeManagerModules.default
nix-colors.homeManagerModules.default
];
2024-07-31 01:03:58 -04:00
snowfallorg.user = {
enable = true;
name = "marshall";
};
2024-07-28 21:52:06 -04:00
home = {
packages = with pkgs;
[
alejandra
bit
cargo-edit
cargo-udeps
cmake
duf
eternal-terminal
grc
huniq
hurl
keybase
keychain
monolith
nix-output-monitor
nix-prefetch-scripts
2024-10-05 23:09:08 -04:00
nil
2024-07-28 21:52:06 -04:00
nodePackages_latest.nodejs
nurl
pinentry_mac
pnpm
rm-improved
rnr
slack
stylua
tailspin
tokei
typst
typst-live
typstfmt
unrar
unzip
upx
vgrep
wget
xcp
xh
2024-10-05 23:09:08 -04:00
(python312.withPackages (pkgs:
with pkgs; [
epc
orjson
sexpdata
six
setuptools
paramiko
rapidfuzz
]))
2024-07-28 21:52:06 -04:00
]
++ (with inputs; [nixvim.packages.${pkgs.system}.default]);
stateVersion = "24.05";
};
programs = {
bacon.enable = true;
btop.enable = true;
bun.enable = true;
gpg.enable = true;
skim.enable = false;
tealdeer.enable = false;
wezterm.extraConfig = builtins.readFile ./wezterm.lua;
2024-10-05 19:07:32 -04:00
jujutsu = {
2024-08-14 01:39:04 -04:00
enable = true;
2024-10-05 19:07:32 -04:00
settings = {
user = {
email = "mars@pupbrained.xyz";
name = "Mars";
};
};
2024-08-14 01:39:04 -04:00
};
2024-07-28 21:52:06 -04:00
git = {
extraConfig.credential.helper = "osxkeychain";
signing.key = "874E22DF2F9DFCB5";
};
};
}