dennis the formatter (#75)

* dennis the formatter

* changed comment

* fixup
This commit is contained in:
Dennis
2024-02-05 22:45:43 +01:00
committed by GitHub
parent 47a65a151c
commit 4c1e86907a
15 changed files with 247 additions and 235 deletions

View File

@ -1,39 +1,39 @@
{ pkgs, ... }:
{
home.username = "richie";
home.homeDirectory = "/home/richie";
home.packages = with pkgs; [
# Rust packages
topgrade
trunk
wasm-pack
cargo-watch
# pkgs.cargo-tarpaulin
cargo-generate
cargo-audit
cargo-update
diesel-cli
# gitoxide currently broke 09182023
gitoxide
tealdeer
helix
# nix specific packages
nil
nixfmt
# markdown
nodePackages.markdownlint-cli
# doom emacs dependencies
fd
ripgrep
clang
];
programs.zsh.enable = true;
home = {
username = "richie";
homeDirectory = "/home/richie";
packages = with pkgs; [
# Rust packages
topgrade
trunk
wasm-pack
cargo-watch
# pkgs.cargo-tarpaulin
cargo-generate
cargo-audit
cargo-update
diesel-cli
# gitoxide currently broke 09182023
gitoxide
tealdeer
helix
# nix specific packages
nil
nixfmt
# markdown
nodePackages.markdownlint-cli
# doom emacs dependencies
fd
ripgrep
clang
];
};
home.stateVersion = "23.11";
}