feat: add darwun
This commit is contained in:
parent
b3f397713b
commit
99745a7f02
23 changed files with 970 additions and 751 deletions
79
homes/aarch64-darwin/zack@mercury/default.nix
Normal file
79
homes/aarch64-darwin/zack@mercury/default.nix
Normal file
|
|
@ -0,0 +1,79 @@
|
|||
{
|
||||
inputs,
|
||||
pkgs,
|
||||
system,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
apps = {
|
||||
tools.git.enable = true;
|
||||
tools.tmux.enable = true;
|
||||
tools.neovim.enable = true;
|
||||
tools.skim.enable = true;
|
||||
tools.starship.enable = true;
|
||||
tools.direnv.enable = true;
|
||||
tools.tealdeer.enable = true;
|
||||
tools.bat.enable = true;
|
||||
tools.emacs.enable = false;
|
||||
|
||||
term.kitty.enable = true;
|
||||
};
|
||||
|
||||
shells.nu.enable = true;
|
||||
shells.zsh.enable = true;
|
||||
shells.fish.enable = true;
|
||||
|
||||
programs = {
|
||||
gpg.enable = true;
|
||||
man.enable = true;
|
||||
eza.enable = true;
|
||||
dircolors = {
|
||||
enable = true;
|
||||
enableZshIntegration = true;
|
||||
};
|
||||
};
|
||||
|
||||
catppuccin.enable = true;
|
||||
catppuccin.flavor = "mocha";
|
||||
catppuccin.accent = "red";
|
||||
|
||||
catppuccin.aerc.enable = true;
|
||||
|
||||
catppuccin.cava.enable = true;
|
||||
catppuccin.fuzzel.enable = true;
|
||||
catppuccin.fzf.enable = true;
|
||||
|
||||
home.packages = with pkgs; [
|
||||
devenv
|
||||
|
||||
(discord.override {
|
||||
withOpenASAR = true;
|
||||
withVencord = true;
|
||||
})
|
||||
|
||||
uutils-coreutils-noprefix
|
||||
yazi
|
||||
|
||||
inputs.posting.packages.${pkgs.system}.default
|
||||
|
||||
mosh
|
||||
|
||||
nix-output-monitor
|
||||
fastfetch
|
||||
|
||||
starfetch
|
||||
];
|
||||
|
||||
programs.zoxide = {
|
||||
enable = true;
|
||||
options = ["--cmd cd"];
|
||||
};
|
||||
|
||||
programs.btop = {
|
||||
enable = true;
|
||||
extraConfig = ''
|
||||
update_ms = 100
|
||||
vim_keys = true
|
||||
'';
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue