From 7c4e3592b7da25fdc85237e78f076112861e09c5 Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Mon, 22 Jul 2024 00:22:21 +0300 Subject: [PATCH] meta: rename repository --- .github/CODEOWNERS | 1 + README.md | 18 +++++++++--------- 2 files changed, 10 insertions(+), 9 deletions(-) create mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..6672651 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1 @@ +* @notashelf diff --git a/README.md b/README.md index 4242a4c..7645f19 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# 🌙 nyxpkgs +# 🌙 nyxexprs -> My personal package overlay for sharing my most commonly used derivations. +My personal package overlay for sharing my most commonly used derivations. ## 📦 Packages @@ -53,7 +53,7 @@ It is as simple as adding a new entry to your inputs with the correct url. # flake.nix inputs = { # ... - nyxpkgs.url = "github:notashelf/nyxpkgs"; + nyxexprs.url = "github:notashelf/nyxexprs"; # ... }; ``` @@ -68,8 +68,8 @@ your system configuration. An example `flake.nix` would be as follows: nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; home-manager.url = "github:nix-community/home-manager"; - # ↓ add nyxpkgs as a flake input - nyxpkgs.url = "github:notashelf/nyxpkgs"; + # ↓ add nyxexprs as a flake input + nyxexprs.url = "github:notashelf/nyxexprs"; }; outputs = inputs @ {self, nixpkgs, ...}: { @@ -107,7 +107,7 @@ or `home.packages` {pkgs, inputs, ...}: { # in case of home-manager, this will be home.packages environment.systemPackages = [ - inputs.nyxpkgs.packages.${pkgs.system}. # installs a package + inputs.nyxexprs.packages.${pkgs.system}. # installs a package ]; } ``` @@ -119,7 +119,7 @@ packages, or `nix profile install` to install them on your system profile. If using home-manager on non-NixOS, I recommend using `home.packages` instead. ```console -nix profile install github:notashelf/nyxpkgs# +nix profile install github:notashelf/nyxexprs# ``` ### NixOS/Home-manager (no flakes) @@ -130,12 +130,12 @@ follows: ```nix {pkgs, ...}: let - nyxpkgs = import (builtins.fetchTarball "https://github.com/notashelf/nyxpkgs/archive/main.tar.gz"); + nyxexprs = import (builtins.fetchTarball "https://github.com/notashelf/nyxexprs/archive/main.tar.gz"); in { # install packages # this can also be home.packages if you are using home-manager environment.systemPackages = [ - nyxpkgs.packages.${pkgs.hostPlatform.system}. + nyxexprs.packages.${pkgs.hostPlatform.system}. ]; } ```