mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 17:54:08 -05:00
15 lines
172 B
Nix
15 lines
172 B
Nix
{pkgs, ...}:
|
|
pkgs.mkShell {
|
|
name = "default";
|
|
|
|
buildInputs = with pkgs; [
|
|
git
|
|
vim
|
|
nixos-anywhere
|
|
ssh-to-age
|
|
];
|
|
|
|
shellHook = ''
|
|
git pull
|
|
'';
|
|
}
|