Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/SamLukeYes/archix

Utilities for Arch Linux development, in a flake
https://github.com/SamLukeYes/archix

archlinux devtools flake nix nixos pacman

Last synced: 5 days ago
JSON representation

Utilities for Arch Linux development, in a flake

Awesome Lists containing this project

README

        

# Archix
Utilities for Arch Linux development, in a flake.

### Available packages related to Arch Linux
- Nixpkgs
- pacman
- arch-install-scripts
- paru
- Archix
- archlinux-keyring
- ~~asp~~ (deprecated)
- devtools

### Things missing
- pacman-contrib
- namcap
- NixOS module to set up paru for chroot build
- NixOS tests

### Setup
`pacman` and its dependents may expect the existence of valid `/etc/pacman.conf`, `/etc/pacman.d/mirrorlist` and `/etc/makepkg.conf`, so you need to set them up before running any programs in this flake. If you manage your NixOS configuration with flakes, you can use the Archix modules for an easy setup:

```nix
# Add the followings to flake.nix
{
inputs.archix.url = "github:SamLukeYes/archix";
outputs = { ... }@inputs:
{
nixosConfigurations.your-hostname = {
modules = [
inputs.archix.nixosModules.default
];
};
};
}
```

Then you can use the utilities in this flake, e.g. build a package in a clean chroot:

```command
$ nix run "github:SamLukeYes/archix#devtools" -- build
```

### License
GPL-3.0 or later