update mobi

feature/nixinite
Ingolf Wagner 2023-04-28 12:57:32 +02:00
parent 0e869f148b
commit c21c6fdb09
Signed by: palo
GPG Key ID: 76BF5F1928B9618B
3 changed files with 11 additions and 16 deletions

View File

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

View File

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

View File

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