Compare commits

..

2 commits

Author SHA1 Message Date
350245c097 use deployed environment for launching nixops4 from the panel
this still needs more work to clean up fully
2025-06-06 12:14:34 +02:00
631ce8a92d use Nixpkgs from npins in the flake 2025-06-06 12:13:51 +02:00
2 changed files with 53 additions and 59 deletions

View file

@ -10,17 +10,11 @@
inputs@{ flake-parts, ... }:
let
sources = import ./npins;
inherit (import "${sources.flake-inputs}/lib.nix") import-flake;
inherit (import "${flake-inputs}/lib.nix") import-flake;
inherit (sources) git-hooks agenix;
nixpkgs = import-flake sources.nixpkgs;
in
flake-parts.lib.mkFlake
{
inputs = inputs // {
inherit nixpkgs;
};
}
{
flake-parts.lib.mkFlake { inputs = inputs // { inherit nixpkgs; }; } {
systems = [
"x86_64-linux"
"aarch64-linux"

View file

@ -185,7 +185,7 @@ in
]
++ (
with pkgs;
lib.makeBinPath [
lib.mkBinPath [
nix
git
]