From ca4ddbfd4f972548d7036bac1bfe516053b02fd1 Mon Sep 17 00:00:00 2001 From: Artemis Tosini Date: Thu, 15 Feb 2024 23:45:15 +0000 Subject: [PATCH] add substituter --- flake.lock | 16 ++++++++-------- sets/base.nix | 5 ++++- 2 files changed, 12 insertions(+), 9 deletions(-) diff --git a/flake.lock b/flake.lock index 5b9a48c..1c89f61 100644 --- a/flake.lock +++ b/flake.lock @@ -10,11 +10,11 @@ ] }, "locked": { - "lastModified": 1707860881, - "narHash": "sha256-iFMkv1yTgHODqbgFHWS4ijNuLMWc2+4OLQxg5GGufIc=", + "lastModified": 1708040663, + "narHash": "sha256-8EhR0AA8IWqJ5fwPRM4LSAjTWmvqgNRA7ZX1SFypOjg=", "ref": "refs/heads/canon", - "rev": "05f199b1aa907ea11c2bf12035e9394e782598ed", - "revCount": 34, + "rev": "3e0cca3f9dc98ffc80a13bc8cc68dd354559e9f2", + "revCount": 35, "type": "git", "url": "https://git.mildlyfunctional.gay/artemist/packages.git" }, @@ -457,11 +457,11 @@ }, "private": { "locked": { - "lastModified": 1702275325, - "narHash": "sha256-jtNF0M/+skOV+HyJaN0dR7fCqILVb31Ia4IAnMVt/zQ=", + "lastModified": 1708040288, + "narHash": "sha256-xJY8FztA02HSaFxYuuaBmwVw54zTjqY4Old0QDzeQIc=", "ref": "unified", - "rev": "cbdfef430755e9f49245fe80db1349511ac998f5", - "revCount": 40, + "rev": "6f1245d222b56427cae3073df28bd0ff9a4d6d87", + "revCount": 41, "type": "git", "url": "ssh://forgejo@git.mildlyfunctional.gay/artemist/nixos-config-private" }, diff --git a/sets/base.nix b/sets/base.nix index 2fd05bc..1f00b48 100644 --- a/sets/base.nix +++ b/sets/base.nix @@ -1,7 +1,10 @@ { config, pkgs, lib, inputs, ... }: { - imports = [ inputs.private.nixosModules.base ]; + imports = [ + inputs.private.nixosModules.base + inputs.private.nixosModules.substituter + ]; systemd.tmpfiles.rules = lib.mapAttrsToList (key: value: "L+ /etc/channels/${key} - - - - ${value.outPath}") inputs;