xin/templates/shell/shell.nix

9 lines
128 B
Nix

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