From 5659d4cd325d672ec4f74d58e626e58da5c49dfd Mon Sep 17 00:00:00 2001 From: liv Date: Tue, 13 Aug 2024 20:40:52 +0200 Subject: [PATCH] add readme and license --- LICENSE | 21 +++++++++++++++++++++ README.md | 18 ++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 LICENSE create mode 100644 README.md diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..12b67f8 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 liv + +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/README.md b/README.md new file mode 100644 index 0000000..b529637 --- /dev/null +++ b/README.md @@ -0,0 +1,18 @@ +# my nix flake + +This controls both my NixOS-powered computers, but also my home environment, including dotfiles, on almost everything +else. + +If you're me, and the machine you're installing on has a configuration, it's as simple as: + +```sh +git clone forgejo@cirno.with.al:shadows_withal/nix-config.git ~/nix-config +cd ~/nix-config +nix-shell +# for nixos: +sudo nixos-rebuild switch --flake . +# for home-manager +home-manager switch --flake .#lu@HOSTNAME +``` + +Feel free to brutalize as much of this config as you want for your own purposes.