fix: misc fixes and tweaks

This commit is contained in:
2025-09-12 13:47:37 +02:00
parent e0846164a7
commit f7f6eabb0f
6 changed files with 17 additions and 17 deletions

22
rossby/hive.nix Normal file
View File

@@ -0,0 +1,22 @@
let
# Pin the deployment package-set to a specific version of nixpkgs
# pkgs = import (builtins.fetchTarball {
# url = "https://github.com/NixOS/nixpkgs/archive/e6377ff35544226392b49fa2cf05590f9f0c4b43.tar.gz";
# sha256 = "1fra9wwy5gvj5ibayqkzqpwdf715bggc0qbmrfch4fghwvl5m70l";
# }) {};
pkgs = import <nixpkgs> {};
rossby-manage = {
deployment = {
tags = [ "manage" "login" "cluster" ];
allowLocalDeployment = true;
targetHost = null;
};
imports = [ ./manage ];
};
login = import ./login { inherit pkgs; };
c0 = import ./c0 { inherit pkgs; };
fs-work = import ./fs-work { inherit pkgs; };
in
{ inherit rossby-manage; } // login // c0 // fs-work