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

85 lines
1.5 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
igrep
keybase
keychain
monolith
nix-output-monitor
nix-prefetch-scripts
nixd
nodePackages_latest.nodejs
nurl
pinentry_mac
pkg-config
pnpm
rm-improved
rnr
slack
stylua
tailspin
tokei
typst
typst-live
typstfmt
unrar
unzip
upx
vgrep
wget
xcp
xh
]
++ (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-08-14 01:39:04 -04:00
emacs = {
enable = true;
package = inputs.emacs.packages.${pkgs.system}.default;
};
2024-07-28 21:52:06 -04:00
git = {
extraConfig.credential.helper = "osxkeychain";
signing.key = "874E22DF2F9DFCB5";
};
};
}