Compare commits

..

3 commits

Author SHA1 Message Date
1fcba0942d reformat with updated nixfmt 2025-06-10 13:17:19 +02:00
87a20886cd use deployed environment for launching nixops4 from the panel
this still needs more work to clean up fully
2025-06-10 13:16:42 +02:00
191d2c4d43 use Nixpkgs from npins in the flake 2025-06-10 13:16:42 +02:00
2 changed files with 64 additions and 58 deletions

View file

@ -10,11 +10,17 @@
inputs@{ flake-parts, ... }:
let
sources = import ./npins;
inherit (import "${flake-inputs}/lib.nix") import-flake;
inherit (import "${sources.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.mkBinPath [
lib.makeBinPath [
nix
git
]