fix mobi and bobi
This commit is contained in:
parent
1c3cacdd07
commit
4add12c084
2 changed files with 6 additions and 6 deletions
10
flake.nix
10
flake.nix
|
@ -147,8 +147,8 @@
|
|||
};
|
||||
};
|
||||
|
||||
defaults = { name, pkgs, ... }: {
|
||||
deployment.buildOnTarget = true;
|
||||
defaults = { name, pkgs, lib, ... }: {
|
||||
deployment.buildOnTarget = lib.mkDefault true;
|
||||
nix = {
|
||||
# no channesl needed this way
|
||||
nixPath = [ "nixpkgs=${pkgs.path}" ];
|
||||
|
@ -219,9 +219,8 @@
|
|||
};
|
||||
|
||||
bobi = { name, nodes, pkgs, ... }: {
|
||||
#deployment.targetHost = "${name}.private";
|
||||
deployment.targetHost = "localhost";
|
||||
deployment.targetPort = 2222;
|
||||
deployment.targetHost = "${name}.private";
|
||||
deployment.buildOnTarget = false;
|
||||
deployment.tags = [ "desktop" "usb" "private" ];
|
||||
imports = [
|
||||
grocy-scanner.nixosModule
|
||||
|
@ -236,6 +235,7 @@
|
|||
|
||||
mobi = { name, nodes, pkgs, ... }: {
|
||||
deployment.targetHost = "${name}.private";
|
||||
deployment.buildOnTarget = false;
|
||||
deployment.tags = [ "desktop" "usb" "private" ];
|
||||
imports = [
|
||||
grocy-scanner.nixosModule
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
publicKey = lib.fileContents ../../../assets/tinc/mobi_host_file;
|
||||
};
|
||||
bobi = {
|
||||
tincIp = "10.23.42.23";
|
||||
tincIp = "10.23.42.25";
|
||||
publicKey = lib.fileContents ../../../assets/tinc/bobi_host_file;
|
||||
};
|
||||
robi = {
|
||||
|
|
Loading…
Reference in a new issue