Initial commit

main
Bo Jeanes 2024-07-16 11:31:08 +10:00
commit b67b92b31e
3 changed files with 20 additions and 0 deletions

1
.gitignore vendored 100644
View File

@ -0,0 +1 @@

9
README.md 100644
View File

@ -0,0 +1,9 @@
# Bo's Dot Files
## Install
* Install Nix, using determinate systems' installer:
```sh-session
curl --proto '=https' --tlsv1.2 -sSf -L https://install.determinate.systems/nix | sh -s -- install
```

10
flake.nix 100644
View File

@ -0,0 +1,10 @@
{
description = "Bo's configuration";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
};
outputs = inputs@{ self, nixpkgs, ... }: {
};
}