🛍️ | A simple gtk4/libadwaita software center to easily install and manage nix packages [maintainer=@orzklv]
  • Rust 97.4%
  • Meson 1.6%
  • Nix 0.9%
Find a file
bahrom04 8e4f4af395
Some checks failed
Build CI / flake-check (push) Has been cancelled
chore: updateSystempkgs list after selection configuration.nix
2026-01-28 23:30:17 +05:00
.github/workflows chore: fix and remove unused part of runner 2025-09-15 19:44:44 +05:00
build-aux chore: initial port 2025-02-18 10:55:57 +05:00
data chore: tested but not succeded making badge color to blue 2026-01-28 18:21:48 +05:00
nsc-helper chore: update caching crane 2025-12-11 18:47:31 +05:00
po chore: update translation 2025-12-23 14:03:03 +05:00
src chore: updateSystempkgs list after selection configuration.nix 2026-01-28 23:30:17 +05:00
.envrc chore: added .envrc and removed in .gitignore 2025-09-11 19:17:57 +05:00
.gitignore chore: package name changed (#4) 2025-09-19 15:15:37 +05:00
Cargo.lock wip: updating deps (#11) 2026-01-20 21:18:04 +05:00
Cargo.toml chore: remove comment 2026-01-21 13:00:35 +05:00
default.nix feat: added caching ny crane (#7) 2025-12-11 18:06:52 +05:00
flake.lock feat: added caching ny crane (#7) 2025-12-11 18:06:52 +05:00
flake.nix chore: change flake description 2026-01-14 17:38:09 +05:00
LICENSE chore: adopt upstream license 2025-05-22 02:38:03 +05:00
meson.build feat: added caching ny crane (#7) 2025-12-11 18:06:52 +05:00
meson_options.txt chore: initial port 2025-02-18 10:55:57 +05:00
README.md Update: install method in README.md 2025-12-17 00:28:06 +05:00
rust-toolchain.toml wip: updating deps (#11) 2026-01-20 21:18:04 +05:00
shell.nix feat: added caching ny crane (#7) 2025-12-11 18:06:52 +05:00

Nix Software Center

Built with Nix License: GPLv3 Chat on Matrix Chat on Discord

A graphical app store for Nix built with libadwaita, GTK4, and Relm4. Heavily inspired by GNOME Software.

Features

  • Install packages to configuration.nix
    • Flakes support can be enabled in the preferences menu
  • Install packages with nix profile or nix-env
  • Show updates for all installed packages
  • Search for packages
  • Launch applications without installing via nix-shell and nix run

NixOS Flakes Installation

flake.nix

{
  inputs = {
    # other inputs
    nix-software-center.url = "github:xinux-org/software-center";
# rest of flake.nix

configuration.nix

environment.systemPackages = with pkgs; [
    inputs.nix-software-center.packages.${system}.default
    # rest of your packages
];

NixOS Installation

Head of configuration.nix

if you are on unstable channel or any version after 22.11:

{ config, pkgs, lib, ... }:
let
  nix-software-center = import (pkgs.fetchFromGitHub {
    owner = "xinux-org";
    repo = "software-center";
    rev = "0.1.2";
    sha256 = ""; # add shaa
  }) {};
in

...

environment.systemPackages =
with pkgs; [
  nix-software-center
  # rest of your packages
];

For any other method of installation, when rebuilding you might be prompted to authenticate twice in a row by pkexec

'nix profile' installation

nix profile install github:xinux-org/software-center

'nix-env' Installation

git clone https://github.com/xinux-org/software-center
nix-env -f nix-software-center -i nix-software-center

Single run on an flakes enabled system:

nix run github:xinux-org/software-center

Single run on non-flakes enabled system:

nix --extra-experimental-features "nix-command flakes" run github:xinux-org/software-center

Building & Debugging

nix build . # root of project
cd .. # use pkexec outside of shell.nix

RUST_LOG=nix_software_center=trace ./software-center/result/bin/nix-software-center

# with inspector
GTK_DEBUG=interactive RUST_LOG=nix_software_center=trace ./software-center/result/bin/nix-software-center

Screenshots

Licenses

Some icons in data/icons contains assets from the NixOS logo and are licensed under a CC-BY license.

Some icons in data/icons contains assets from GNOME Software and are licensed under CC0-1.0.

Translation

To create a poedit file for translation run this command into the file where you want to save translations: xgettext --directory=.. --files-from=POTFILES.in --from-code=UTF-8 -kgettext -o translations.pot