Skip to content

Commit

Permalink
fix: update package name
Browse files Browse the repository at this point in the history
  • Loading branch information
simonwjackson committed May 20, 2024
1 parent 0562a54 commit a37cd00
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 59 deletions.
78 changes: 19 additions & 59 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,60 +15,7 @@
};
};

# outputs = {
# self,
# nixpkgs,
# flake-utils,
# ...
# } @ inputs:
# flake-utils.lib.eachDefaultSystem (
# system: let
# pkgs = nixpkgs.legacyPackages.${system};
# tmesh = import ./nix/default.nix {
# inherit pkgs;
# };
# tmesh-module = import ./nix/module.nix inputs;
# docker = import ./nix/docker.nix {
# inherit pkgs tmesh;
# };
# in {
# packages.tmesh = tmesh;
# packages.docker = docker;
# nixosModules.default = tmesh-module;
#
# defaultPackage = tmesh;
# }
# );
# }
#

# outputs = inputs:
# inputs.snowfall-lib.mkFlake {
# inherit inputs;
# src = ./.;
#
# overlays = with inputs; [
# snowfall-frost.overlays.default
# ];
#
# channels-config = {
# allowUnfree = true;
# };
#
# snowfall = {
# namespace = "tmesh";
#
# meta = {
# name = "tmesh";
# title = "tmesh";
# };
# };
# };

outputs = inputs:
# This is an example and in your actual flake you can use `snowfall-lib.mkFlake`
# directly unless you explicitly need a feature of `lib`.
let
outputs = inputs: let
lib = inputs.snowfall-lib.mkLib {
# You must pass in both your flake's inputs and the root directory of
# your flake.
Expand All @@ -77,6 +24,19 @@
};
in
lib.mkFlake {
channels-config = {
allowUnfree = true;
};

snowfall = {
namespace = "tmesh";

meta = {
name = "tmesh";
title = "tmesh";
};
};

alias = {
packages = {
default = "tmesh";
Expand All @@ -85,11 +45,11 @@
# shells = {
# default = "my-shell";
# };
#
# modules = {
# default = "my-module";
# };
#

modules = {
default = "tmesh";
};

# templates = {
# default = "my-template";
# };
Expand Down
File renamed without changes.

0 comments on commit a37cd00

Please sign in to comment.