59 lines
1.1 KiB
Nix
59 lines
1.1 KiB
Nix
{ lib, config, pkgs, ... }: {
|
|
imports = [
|
|
|
|
<system/desktop>
|
|
./hardware-configuration.nix
|
|
|
|
#./kibana.nix
|
|
./packages.nix
|
|
#./slack.nix
|
|
./syncthing.nix
|
|
./tinc.nix
|
|
|
|
];
|
|
|
|
networking.hostName = "workout";
|
|
|
|
services.logind.lidSwitch = lib.mkForce "ignore";
|
|
|
|
security.wrappers = {
|
|
pmount.source = "${pkgs.pmount}/bin/pmount";
|
|
pumount.source = "${pkgs.pmount}/bin/pumount";
|
|
};
|
|
|
|
# nix-shell -p speedtest_cli --run speedtest
|
|
configuration.fireqos = {
|
|
enable = true;
|
|
interface = "wlp1s0";
|
|
input = 4200;
|
|
output = 1200;
|
|
balance = false;
|
|
};
|
|
|
|
programs.custom.steam.enable = true;
|
|
programs.custom.video.enable = true;
|
|
|
|
# font
|
|
# ----
|
|
programs.custom.urxvt.fontSize = 17;
|
|
programs.custom.xterm.fontSize = 17;
|
|
system.custom.fonts.dpi = 140;
|
|
|
|
services.printing.enable = true;
|
|
|
|
virtualisation = {
|
|
docker.enable = false;
|
|
virtualbox = {
|
|
host.enable = false;
|
|
guest.x11 = false;
|
|
guest.enable = false;
|
|
};
|
|
};
|
|
|
|
configuration.desktop = {
|
|
width = 2560;
|
|
height = 1440;
|
|
};
|
|
|
|
}
|
|
|