mirror of
https://github.com/vlinkz/nix-software-center.git
synced 2024-11-22 12:22:34 +03:00
A simple gtk4/libadwaita software center to easily install and manage nix packages
64ef8b1bb0
Originally fixed by @Lord-Valen for nixos-conf-editor |
||
---|---|---|
build-aux | ||
data | ||
nsc-helper | ||
po | ||
src | ||
.gitignore | ||
Cargo.lock | ||
Cargo.toml | ||
default.nix | ||
flake.lock | ||
flake.nix | ||
LICENSE | ||
meson_options.txt | ||
meson.build | ||
README.md |
Nix Software Center
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
ornix-env
- Show updates for all installed packages
- Search for packages
- Launch applications without installing via
nix-shell
andnix run
NixOS Flakes Installation
flake.nix
{
inputs = {
# other inputs
nix-software-center.url = "github:vlinkz/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
{ config, pkgs, lib, ... }:
let
nix-software-center = (import (pkgs.fetchFromGitHub {
owner = "vlinkz";
repo = "nix-software-center";
rev = "0.1.1";
sha256 = "0frigabszyfkphfbsniaa1d546zm8a2gx0cqvk2fr2qfa71kd41n";
})) {};
in
Packages:
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:vlinkz/nix-software-center
'nix-env' Installation
git clone https://github.com/vlinkz/nix-software-center
nix-env -f nix-software-center -i nix-software-center
Single run on an flakes enabled system:
nix run github:vlinkz/nix-software-center
Single run on non-flakes enabled system:
nix --extra-experimental-features "nix-command flakes" run github:vlinkz/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.