16 lines
343 B
Nix
16 lines
343 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
# Useful for getting the import information from github info for flakes.
|
|
nix-prefetch-github
|
|
|
|
nixfmt-rfc-style # Formatter
|
|
nil # Language Server
|
|
];
|
|
|
|
home.shellAliases = {
|
|
rebuild = "sudo nixos-rebuild switch --flake . --show-trace --print-build-logs --verbose";
|
|
};
|
|
}
|
|
|