initial commit

- login works
- basic documentation
This commit is contained in:
2026-05-09 06:28:09 +02:00
commit d2a2baebc8
16 changed files with 2524 additions and 0 deletions
+40
View File
@@ -0,0 +1,40 @@
{ inputs, ... }:
{
perSystem =
{ inputs', pkgs, ... }:
{
devShells.default = pkgs.mkShell {
inputsFrom = [
inputs'.error's-rust-overlay.devShells.rust-nightly
];
shellHook = ''
for path in \
/usr/lib/qemu/qemu-bridge-helper \
/run/wrappers/bin/qemu-bridge-helper
do
if [ -x "$path" ]; then
export QEMU_BRIDGE_HELPER_PATH="$path"
break
fi
done
if [ -z "$QEMU_BRIDGE_HELPER_PATH" ]; then
printf "\033[1;33m%s\033[0m\n" \
"WARN: 'qemu-bridge-helper' not found, make sure it is installed and the nix shell hook is looking for it" >&2
fi
'';
packages = with pkgs; [
# cargo
curl
delta
git
nixfmt
pam
# rust-analyzer
# rustc
];
};
};
}