2023-12-26 02:56:52 +01:00
|
|
|
{ pkgs, ... }:
|
2023-12-25 13:25:11 -05:00
|
|
|
|
2023-12-25 03:39:20 +01:00
|
|
|
{
|
2024-02-05 22:45:43 +01:00
|
|
|
home = {
|
2024-01-03 16:08:16 -05:00
|
|
|
# # 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}!"
|
|
|
|
# '')
|
|
|
|
|
2024-02-05 22:45:43 +01:00
|
|
|
username = "alice";
|
|
|
|
homeDirectory = "/home/alice";
|
|
|
|
packages = with pkgs; [
|
|
|
|
ncdu
|
2024-01-08 19:11:33 -05:00
|
|
|
|
2024-02-05 22:45:43 +01:00
|
|
|
# Rust packages
|
|
|
|
trunk
|
|
|
|
wasm-pack
|
|
|
|
cargo-watch
|
|
|
|
#pkgs.cargo-tarpaulin
|
|
|
|
cargo-generate
|
|
|
|
cargo-audit
|
|
|
|
cargo-update
|
|
|
|
diesel-cli
|
|
|
|
gitoxide
|
|
|
|
tealdeer
|
|
|
|
helix
|
2023-12-25 13:25:11 -05:00
|
|
|
|
2024-02-05 22:45:43 +01:00
|
|
|
# nix specific packages
|
|
|
|
nil
|
|
|
|
nixfmt
|
2023-12-25 13:25:11 -05:00
|
|
|
|
2024-02-05 22:45:43 +01:00
|
|
|
# markdown
|
|
|
|
nodePackages.markdownlint-cli
|
2023-12-25 13:25:11 -05:00
|
|
|
|
2024-02-05 22:45:43 +01:00
|
|
|
# doom emacs dependencies
|
|
|
|
fd
|
|
|
|
ripgrep
|
|
|
|
clang
|
|
|
|
];
|
|
|
|
};
|
2023-12-25 13:25:11 -05:00
|
|
|
|
2024-01-03 16:08:16 -05:00
|
|
|
programs = {
|
|
|
|
zsh.enable = true;
|
|
|
|
starship.enable = true;
|
|
|
|
fzf = {
|
|
|
|
enable = true;
|
|
|
|
enableZshIntegration = true;
|
|
|
|
};
|
2024-01-08 19:11:33 -05:00
|
|
|
|
|
|
|
topgrade = {
|
|
|
|
enable = true;
|
2024-03-03 18:06:28 -05:00
|
|
|
settings = {
|
|
|
|
misc = {
|
|
|
|
disable = [
|
|
|
|
"system"
|
|
|
|
"nix"
|
|
|
|
"shell"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
2024-01-08 19:11:33 -05:00
|
|
|
};
|
2024-01-03 16:08:16 -05:00
|
|
|
};
|
2023-12-25 03:39:20 +01:00
|
|
|
|
2023-12-26 02:56:52 +01:00
|
|
|
home.stateVersion = "23.11";
|
2023-12-25 13:25:11 -05:00
|
|
|
}
|