14 lines
265 B
Nix
14 lines
265 B
Nix
{pkgs, ...}: {
|
|
home.packages = with pkgs; [
|
|
nix-output-monitor
|
|
];
|
|
|
|
home.shellAliases = {
|
|
"nix build" = "nom build";
|
|
"nix shell" = "nom shell";
|
|
"nix develop" = "nom develop";
|
|
"nix-build" = "nom-build";
|
|
"nix-shell" = "nom-shell";
|
|
};
|
|
}
|