Skip to content

Commit

Permalink
fix colmena options
Browse files Browse the repository at this point in the history
  • Loading branch information
NyCodeGHG committed Sep 19, 2024
1 parent da9e9e1 commit 0aca8ec
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -181,18 +181,19 @@

colmena = {
meta = {
nixpkgs = import nixpkgs { system = "x86_64-linux"; };
nixpkgs = nixpkgs.legacyPackages.x86_64-linux;
specialArgs = { inherit inputs; };
nodeNixpkgs.delphi = import nixpkgs { system = "aarch64-linux"; };
nodeNixpkgs.delphi = nixpkgs.legacyPackages.aarch64-linux;
};
artemis = { name, nodes, pkgs, ... }: {
imports = [
./hosts/artemis/configuration.nix
self.nixosModules.config
];
deployment.buildOnTarget = false;
deployment.buildOnTarget = true;
deployment.targetUser = null;
nixpkgs.overlays = [ self.overlays.default ];
nixpkgs.flake.source = nixpkgs;
};
delphi = {
imports = [
Expand All @@ -202,6 +203,7 @@
deployment.buildOnTarget = true;
deployment.targetUser = null;
nixpkgs.overlays = [ self.overlays.default ];
nixpkgs.flake.source = nixpkgs;
};
gitlabber = {
imports = [
Expand All @@ -212,6 +214,7 @@
deployment.buildOnTarget = true;
deployment.targetUser = null;
nixpkgs.overlays = [ self.overlays.default ];
nixpkgs.flake.source = nixpkgs;
};
};
};
Expand Down

0 comments on commit 0aca8ec

Please sign in to comment.