9 lines
128 B
Nix
9 lines
128 B
Nix
{ pkgs ? import <nixpkgs> { } }:
|
|
pkgs.mkShell {
|
|
shellHook = ''
|
|
PS1='\u@\h:\w; '
|
|
'';
|
|
buildInputs = with pkgs; [
|
|
];
|
|
}
|