this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

docs: add readme & license

Ovyerus bdb35d11 43ac597b

+42
+14
LICENSE
··· 1 + Copyright (c) 2023 Ovyerus 2 + 3 + Permission is hereby granted, free of charge, to any person obtaining a copy of 4 + this software and associated documentation files (the “Software”), to deal in 5 + the Software without restriction, including without limitation the rights to 6 + use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 7 + the Software, and to permit persons to whom the Software is furnished to do so. 8 + 9 + THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 10 + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 11 + FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 12 + COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 13 + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 14 + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+27
README.md
··· 1 + # Ovyerus' dotfiles 2 + 3 + Dotfiles and other home configuration for my Unix machines. As of writing I only 4 + apply this to my Darwin desktops, and as such this purely assumes such an 5 + environment. I may expand this to work on my Linux servers (and desktops 6 + eventually) in the future. 7 + 8 + ## Installing 9 + 10 + Make sure you have [Nix](https://nixos.org/) installed on your machine - 11 + [nix-installer](https://github.com/DeterminateSystems/nix-installer) is the 12 + easiest method - or use NixOS. 13 + 14 + If you don't use nix-installer, you will need to enable the 15 + [`flakes`](https://nixos.org/manual/nix/stable/contributing/experimental-features#xp-feature-flakes) 16 + and 17 + [`nix-command`](https://nixos.org/manual/nix/stable/contributing/experimental-features#xp-feature-nix-command) 18 + experimental features. 19 + 20 + ``` 21 + git clone https://github.com/Ovyerus/dotfiles.git ~/.config/home-manager 22 + nix run home-manager/master -- init --switch 23 + ``` 24 + 25 + ## License 26 + 27 + All data in this repository is available under the [MIT-0 License](./LICENSE).
+1
modules/git.nix
··· 15 15 pull.rebase = true; 16 16 init.defaultBranch = "main"; 17 17 log.showSignature = true; 18 + core.editor = "code --wait"; 18 19 19 20 gpg.ssh.allowedSignersFile = "~/.config/git/allowed_signers"; 20 21 user.signingKey = "~/.ssh/id_ed25519_sk_rk";