42 lines
692 B
Nix
42 lines
692 B
Nix
{ config, pkgs, lib, ... }: {
|
|
|
|
imports = [
|
|
|
|
<system/server>
|
|
./hardware-configuration.nix
|
|
|
|
#./syncthing.nix
|
|
./tinc.nix
|
|
./wifi-access-point.nix
|
|
./home-assistant.nix
|
|
|
|
];
|
|
|
|
system.custom.wifi = {
|
|
enable = true;
|
|
interfaces = [ "wlp3s0" ];
|
|
configurationFile = <secrets/wpa_supplicant>;
|
|
};
|
|
|
|
networking.hostName = "pepe";
|
|
|
|
services.printing.enable = true;
|
|
|
|
# fonts
|
|
# -----
|
|
programs.custom.urxvt.fontSize = 12;
|
|
programs.custom.xterm.fontSize = 12;
|
|
system.custom.fonts.dpi = 100;
|
|
|
|
virtualisation = {
|
|
docker.enable = false;
|
|
|
|
virtualbox = {
|
|
host.enable = false;
|
|
guest.x11 = false;
|
|
guest.enable = false;
|
|
};
|
|
};
|
|
|
|
}
|
|
|