My Nix Configuration

[flake] snowfall -> snowfall-lib

Changed files
+5 -5
checks
formatting
+1 -1
checks/formatting/default.nix
···
{ pkgs, lib, ... }:
pkgs.stdenvNoCC.mkDerivation {
name = "formatting-check";
-
src = lib.snowfall.fs.get-file "/";
+
src = lib.snowfall-lib.fs.get-file "/";
dontBuild = true;
doCheck = true;
nativeBuildInputs = with pkgs; [
+2 -2
flake.lock
···
"nur": "nur",
"nvim": "nvim",
"prismlauncher": "prismlauncher",
-
"snowfall": "snowfall",
+
"snowfall-lib": "snowfall-lib",
"stable": "stable",
"systems": "systems_2",
"wayland": "wayland"
···
"type": "github"
},
-
"snowfall": {
+
"snowfall-lib": {
"inputs": {
"flake-compat": "flake-compat_4",
"flake-utils-plus": "flake-utils-plus",
+2 -2
flake.nix
···
description = "PyroNet machines and services";
inputs = {
-
snowfall = {
+
snowfall-lib = {
url = "github:snowfallorg/lib";
inputs.nixpkgs.follows = "nixpkgs";
};
···
outputs =
inputs@{ self, ... }:
let
-
lib = inputs.snowfall.mkLib {
+
lib = inputs.snowfall-lib.mkLib {
inherit inputs;
src = ./.;
snowfall = {