mirror of
https://github.com/NotAShelf/nyxexprs.git
synced 2024-11-22 21:31:03 +00:00
meta: rename repository
This commit is contained in:
parent
5b7812600d
commit
7c4e3592b7
2 changed files with 10 additions and 9 deletions
1
.github/CODEOWNERS
vendored
Normal file
1
.github/CODEOWNERS
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
* @notashelf
|
18
README.md
18
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
|
## 📦 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>
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue