* external SMTP for hydra Signed-off-by: ahuston-0 <aliceghuston@gmail.com> * nix-serve sops Signed-off-by: ahuston-0 <aliceghuston@gmail.com> * add binary cache * add hydra jobs * cleanup (#50) * finish up cleanup branch merge * switched back to nixpkgs-fmt * add nixpkgs-fmt to hydrajobs.build --------- Signed-off-by: ahuston-0 <aliceghuston@gmail.com> Co-authored-by: Dennis Wuitz <dennish@wuitz.de> Co-authored-by: Dennis <52411861+DerDennisOP@users.noreply.github.com>
70 lines
1.5 KiB
Nix
70 lines
1.5 KiB
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
home.username = "alice";
|
|
home.homeDirectory = "/home/alice";
|
|
|
|
home.packages = with pkgs; [
|
|
# # Adds the 'hello' command to your environment. It prints a friendly
|
|
# # "Hello, world!" when run.
|
|
# pkgs.hello
|
|
|
|
# # It is sometimes useful to fine-tune packages, for example, by applying
|
|
# # overrides. You can do that directly here, just don't forget the
|
|
# # parentheses. Maybe you want to install Nerd Fonts with a limited number of
|
|
# # fonts?
|
|
# (pkgs.nerdfonts.override { fonts = [ "FantasqueSansMono" ]; })
|
|
|
|
# # You can also create simple shell scripts directly inside your
|
|
# # configuration. For example, this adds a command 'my-hello' to your
|
|
# # environment:
|
|
# (pkgs.writeShellScriptBin "my-hello" ''
|
|
# echo "Hello, ${config.home.username}!"
|
|
# '')
|
|
|
|
ncdu
|
|
|
|
# Rust packages
|
|
trunk
|
|
wasm-pack
|
|
cargo-watch
|
|
#pkgs.cargo-tarpaulin
|
|
cargo-generate
|
|
cargo-audit
|
|
cargo-update
|
|
diesel-cli
|
|
gitoxide
|
|
tealdeer
|
|
helix
|
|
|
|
# nix specific packages
|
|
nil
|
|
nixfmt
|
|
|
|
# markdown
|
|
nodePackages.markdownlint-cli
|
|
|
|
# doom emacs dependencies
|
|
fd
|
|
ripgrep
|
|
clang
|
|
];
|
|
|
|
programs = {
|
|
zsh.enable = true;
|
|
|
|
starship.enable = true;
|
|
fzf = {
|
|
enable = true;
|
|
enableZshIntegration = true;
|
|
};
|
|
|
|
topgrade = {
|
|
enable = true;
|
|
settings = { misc = { disable = [ "system" "nix" "shell" ]; }; };
|
|
};
|
|
};
|
|
|
|
home.stateVersion = "23.11";
|
|
}
|