update mobi

This commit is contained in:
Ingolf Wagner 2023-04-28 12:57:32 +02:00
parent 0e869f148b
commit c21c6fdb09
No known key found for this signature in database
GPG key ID: 76BF5F1928B9618B
3 changed files with 11 additions and 16 deletions

View file

@ -291,7 +291,8 @@
}; };
mobi = { name, nodes, pkgs, ... }: { mobi = { name, nodes, pkgs, ... }: {
deployment.targetHost = "${name}.private"; #deployment.targetHost = "${name}.private";
deployment.targetHost = "192.168.178.31";
deployment.buildOnTarget = false; deployment.buildOnTarget = false;
deployment.tags = [ "desktop" "usb" "private" ]; deployment.tags = [ "desktop" "usb" "private" ];
imports = [ imports = [

View file

@ -2,6 +2,7 @@
imports = [ imports = [
../../components
../../system/desktop ../../system/desktop
./hardware-configuration.nix ./hardware-configuration.nix
./tinc.nix ./tinc.nix
@ -24,11 +25,13 @@
}; };
}; };
components.gui.enable = true;
# fonts # fonts
# ----- # -----
programs.custom.urxvt.fontSize = 12; programs.custom.urxvt.fontSize = 16;
programs.custom.xterm.fontSize = 12; programs.custom.urxvt.fontType = "vector";
system.custom.fonts.dpi = 100; programs.custom.xterm.fontSize = 16;
configuration.desktop = { configuration.desktop = {
width = 1366; width = 1366;

View file

@ -1,14 +1,5 @@
{ config, lib, pkgs, ... }: { config, ... }:
with lib;
{ {
module.cluster.services.tinc = { tinc.private.enable = true;
"private" = { tinc.private.ipv4 = "10.23.42.23";
enable = true;
openPort = true;
connectTo = [ "robi" ];
};
};
} }