diff --git a/.github/assets/footer.png b/.github/assets/footer.png new file mode 100644 index 0000000..797bfb9 Binary files /dev/null and b/.github/assets/footer.png differ diff --git a/.github/assets/header.png b/.github/assets/header.png new file mode 100644 index 0000000..3339f8b Binary files /dev/null and b/.github/assets/header.png differ diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..786d4d3 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "nixEnvSelector.nixFile": "${workspaceFolder}/shell.nix" +} \ No newline at end of file diff --git a/README.md b/README.md index ecaa220..f47790c 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,19 @@ -# nixos-hetzner-robot-starter +

+ Kolyma's {Bootstrap} +

+ +

+

NixOS images created with Kolyma's specifications.

+

+ +

+ Top Used Language + Test CI +

+ +# About + +When you buy a server, specifically from Hetzner, you are not given the option to install NixOS. This repository provides an easy way to install NixOS on a Hetzner server using the [nixos-anywhere](https://github.com/nix-community/nixos-anywhere) tool. ## Quickstart @@ -70,3 +85,11 @@ this project uses a flat layout without any nesting or modularization. * NixOS options are set here * `home.nix` is where packages, dotfiles, terminal tools, environment variables and aliases are configured + +## License + +This project is licensed under the MIT License - see the [LICENSE](license) file for details. + +

+ Kolyma's {Installer} +

\ No newline at end of file diff --git a/license b/license new file mode 100644 index 0000000..e183352 --- /dev/null +++ b/license @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 Kolyma Labs + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..7626e40 --- /dev/null +++ b/shell.nix @@ -0,0 +1,22 @@ +{ + pkgs ? let + lock = (builtins.fromJSON (builtins.readFile ./flake.lock)).nodes.nixpkgs.locked; + nixpkgs = fetchTarball { + url = "https://github.com/nixos/nixpkgs/archive/${lock.rev}.tar.gz"; + sha256 = lock.narHash; + }; + in + import nixpkgs {overlays = [];}, + ... +}: { + default = pkgs.mkShell { + NIX_CONFIG = "extra-experimental-features = nix-command flakes repl-flake"; + nativeBuildInputs = with pkgs; [ + nix + nil + alejandra + git + just + ]; + }; +} \ No newline at end of file