Skip to content

Commit

Permalink
Add nixos-conf-editor & nix-software-center
Browse files Browse the repository at this point in the history
  • Loading branch information
42LoCo42 committed Mar 29, 2024
1 parent 0dbc10a commit 13ab217
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 2 deletions.
57 changes: 56 additions & 1 deletion flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 12 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
{
description = "A personal collection of unusual things";

outputs = { self, nixpkgs }:
inputs = {
nce.url = "github:snowfallorg/nixos-conf-editor";
nce.inputs.nixpkgs.follows = "nixpkgs";

nsc.url = "github:snowfallorg/nix-software-center";
nsc.inputs.nixpkgs.follows = "nixpkgs";
};

outputs = { self, nixpkgs, nce, nsc }:
let
mkLanza030 = pkgs: import (pkgs.fetchFromGitHub {
owner = "nix-community";
Expand Down Expand Up @@ -44,6 +52,9 @@
samloader = pkgs.callPackage ./packages/samloader.nix { };
wayland-shell = pkgs.callPackage ./packages/wayland-shell.nix { inherit gtk4-layer-shell; };

inherit (nce.packages.${system}) nixos-conf-editor;
inherit (nsc.packages.${system}) nix-software-center;

my-htop = pkgs.htop.overrideAttrs (old: rec {
version = "5d778ea";
src = pkgs.fetchFromGitHub {
Expand Down

0 comments on commit 13ab217

Please sign in to comment.