nixos-config/configs/pepe/configuration.nix

43 lines
692 B
Nix
Raw Normal View History

2019-12-20 05:54:26 +01:00
{ config, pkgs, lib, ... }: {
2019-10-24 02:20:38 +02:00
imports = [
2020-04-08 16:43:09 +02:00
<system/server>
2019-10-24 02:20:38 +02:00
./hardware-configuration.nix
2020-04-08 16:43:09 +02:00
#./syncthing.nix
2019-10-24 02:20:38 +02:00
./tinc.nix
2020-04-08 16:43:09 +02:00
./wifi-access-point.nix
./home-assistant.nix
2019-10-24 02:20:38 +02:00
];
2020-04-08 16:43:09 +02:00
system.custom.wifi = {
enable = true;
interfaces = [ "wlp3s0" ];
configurationFile = <secrets/wpa_supplicant>;
2019-10-24 02:20:38 +02:00
};
2019-12-20 05:54:26 +01:00
networking.hostName = "pepe";
2019-10-24 02:20:38 +02:00
services.printing.enable = true;
# fonts
# -----
2019-12-20 05:54:26 +01:00
programs.custom.urxvt.fontSize = 12;
programs.custom.xterm.fontSize = 12;
2019-10-24 02:20:38 +02:00
system.custom.fonts.dpi = 100;
virtualisation = {
docker.enable = false;
virtualbox = {
2019-12-20 05:54:26 +01:00
host.enable = false;
guest.x11 = false;
2019-10-24 02:20:38 +02:00
guest.enable = false;
};
};
}