Skip to content

SamLukeYes/archix

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

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:

# 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:

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

License

GPL-3.0 or later

About

Utilities for Arch Linux development, in a flake

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages