meta: rename repository

This commit is contained in:
raf 2024-07-22 00:22:21 +03:00
parent 5b7812600d
commit 7c4e3592b7
Signed by: NotAShelf
GPG key ID: AF26552424E53993
2 changed files with 10 additions and 9 deletions

1
.github/CODEOWNERS vendored Normal file
View file

@ -0,0 +1 @@
* @notashelf

View file

@ -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 ## 📦 Packages
@ -53,7 +53,7 @@ It is as simple as adding a new entry to your inputs with the correct url.
# flake.nix # flake.nix
inputs = { 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"; nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
home-manager.url = "github:nix-community/home-manager"; home-manager.url = "github:nix-community/home-manager";
# ↓ add nyxpkgs as a flake input # ↓ add nyxexprs as a flake input
nyxpkgs.url = "github:notashelf/nyxpkgs"; nyxexprs.url = "github:notashelf/nyxexprs";
}; };
outputs = inputs @ {self, nixpkgs, ...}: { outputs = inputs @ {self, nixpkgs, ...}: {
@ -107,7 +107,7 @@ or `home.packages`
{pkgs, inputs, ...}: { {pkgs, inputs, ...}: {
# in case of home-manager, this will be home.packages # in case of home-manager, this will be home.packages
environment.systemPackages = [ environment.systemPackages = [
inputs.nyxpkgs.packages.${pkgs.system}.<packageName> # installs a package inputs.nyxexprs.packages.${pkgs.system}.<packageName> # 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. using home-manager on non-NixOS, I recommend using `home.packages` instead.
```console ```console
nix profile install github:notashelf/nyxpkgs#<package> nix profile install github:notashelf/nyxexprs#<package>
``` ```
### NixOS/Home-manager (no flakes) ### NixOS/Home-manager (no flakes)
@ -130,12 +130,12 @@ follows:
```nix ```nix
{pkgs, ...}: let {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 { in {
# install packages # install packages
# this can also be home.packages if you are using home-manager # this can also be home.packages if you are using home-manager
environment.systemPackages = [ environment.systemPackages = [
nyxpkgs.packages.${pkgs.hostPlatform.system}.<packageName> nyxexprs.packages.${pkgs.hostPlatform.system}.<packageName>
]; ];
} }
``` ```