From a2d136d76c02baccbdc5ee67b692c7263e957ab1 Mon Sep 17 00:00:00 2001 From: jolheiser Date: Wed, 19 Jun 2024 19:31:48 -0500 Subject: [PATCH] feat: add cfg Signed-off-by: jolheiser --- apps/nogui/default.nix | 1 + flake.lock | 21 +++++++++++++++++++++ flake.nix | 5 +++++ 3 files changed, 27 insertions(+) diff --git a/apps/nogui/default.nix b/apps/nogui/default.nix index f66c8d3..fa3133a 100644 --- a/apps/nogui/default.nix +++ b/apps/nogui/default.nix @@ -57,6 +57,7 @@ jolheiser.helix jolheiser.tmpl jolheiser.gomodinit + jolheiser.cfg ]; activation.report-changes = config.lib.dag.entryAnywhere '' ${pkgs.nvd}/bin/nvd --nix-bin-dir=${pkgs.nix}/bin diff $oldGenPath $newGenPath diff --git a/flake.lock b/flake.lock index cdf477f..8271aeb 100644 --- a/flake.lock +++ b/flake.lock @@ -23,6 +23,26 @@ "type": "github" } }, + "cfg": { + "inputs": { + "nixpkgs": [ + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1717984783, + "narHash": "sha256-qe28DQsRuuoGaeS0gKRJ7dS1UcjOTnIJZuo+9DKQRPY=", + "ref": "refs/heads/main", + "rev": "8568a3b3ad0aef00fb3050676b4fdd23ba6d49bf", + "revCount": 7, + "type": "git", + "url": "https://git.jolheiser.com/cfg.git" + }, + "original": { + "type": "git", + "url": "https://git.jolheiser.com/cfg.git" + } + }, "flake-compat": { "flake": false, "locked": { @@ -377,6 +397,7 @@ "root": { "inputs": { "agenix": "agenix", + "cfg": "cfg", "flake-utils": "flake-utils", "gist": "gist", "git-age": "git-age", diff --git a/flake.nix b/flake.nix index 7ef09f0..d42fe72 100644 --- a/flake.nix +++ b/flake.nix @@ -62,6 +62,10 @@ url = "git+https://git.jolheiser.com/gomodinit.git"; inputs.nixpkgs.follows = "nixpkgs"; }; + cfg = { + url = "git+https://git.jolheiser.com/cfg.git"; + inputs.nixpkgs.follows = "nixpkgs"; + }; ugit = { url = "git+https://git.jolheiser.com/ugit.git"; inputs.nixpkgs.follows = "nixpkgs"; @@ -116,6 +120,7 @@ gist = inputs.gist.packages.${prev.system}.default; tmpl = inputs.tmpl.packages.${prev.system}.default; gomodinit = inputs.gomodinit.packages.${prev.system}.default; + cfg = inputs.cfg.packages.${prev.system}.default; }; tclip = inputs.tclip.packages.${prev.system}.tclip; templ = inputs.templ.packages.${prev.system}.templ;