A simple gtk4/libadwaita software center to easily install and manage nix packages
Go to file
Victor Fuentes b9e0f53536
Merge pull request #61 from tobiasBora/fix_open
Fix #56, open button not working
2024-05-04 16:56:23 -04:00
build-aux Initial commit 2022-08-26 17:48:43 -04:00
data Consistent license 2023-01-17 13:32:45 -05:00
nsc-helper Update dependencies 2023-04-02 19:19:53 -04:00
po Initial commit 2022-08-26 17:48:43 -04:00
src Update all dependencies 2023-06-26 11:08:15 -04:00
.gitignore Update resources 2022-10-27 19:19:24 -04:00
Cargo.lock Update all dependencies 2023-06-26 11:08:15 -04:00
Cargo.toml Update all dependencies 2023-06-26 11:08:15 -04:00
default.nix Merge pull request #61 from tobiasBora/fix_open 2024-05-04 16:56:23 -04:00
flake.lock Remove an IFD when importing nixos-appstream-data. 2024-04-15 17:45:39 +02:00
flake.nix Remove an IFD when importing nixos-appstream-data. 2024-04-15 17:45:39 +02:00
LICENSE Specify license 2022-09-01 00:52:37 -04:00
meson_options.txt Initial commit 2022-08-26 17:48:43 -04:00
meson.build Update dependencies 2023-04-02 19:19:53 -04:00
README.md remove 22.11 instructions 2024-05-04 14:04:44 +02: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:snowfallorg/nix-software-center";
# rest of flake.nix

configuration.nix

environment.systemPackages = with pkgs; [
    inputs.nix-software-center.packages.${system}.nix-software-center
    # 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 = "snowfallorg";
    repo = "nix-software-center";
    rev = "0.1.2";
    sha256 = "xiqF1mP8wFubdsAQ1BmfjzCgOD3YZf7EGWl9i69FTls=";
  }) {};
in
Packages:

```nix
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:snowfallorg/nix-software-center

'nix-env' Installation

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

Single run on an flakes enabled system:

nix run github:snowfallorg/nix-software-center

Single run on non-flakes enabled system:

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

Debugging

RUST_LOG=nix_software_center=trace 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.