update mobi
This commit is contained in:
parent
0e869f148b
commit
c21c6fdb09
3 changed files with 11 additions and 16 deletions
|
@ -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 = [
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue