2020-01-24 11:19:48 +01:00
|
|
|
{ config, pkgs, lib, ... }: {
|
|
|
|
|
|
|
|
imports = [
|
|
|
|
|
|
|
|
<system/desktop>
|
|
|
|
./hardware-configuration.nix
|
|
|
|
|
2020-01-24 21:07:20 +01:00
|
|
|
./restic.nix
|
2020-01-24 11:19:48 +01:00
|
|
|
./tinc.nix
|
|
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
system.custom.wifi.interfaces = [ ];
|
|
|
|
|
|
|
|
networking.hostName = "mobi";
|
|
|
|
|
|
|
|
security.wrappers = {
|
|
|
|
pmount.source = "${pkgs.pmount}/bin/pmount";
|
|
|
|
pumount.source = "${pkgs.pmount}/bin/pumount";
|
|
|
|
};
|
|
|
|
|
|
|
|
# fonts
|
|
|
|
# -----
|
|
|
|
programs.custom.urxvt.fontSize = 12;
|
|
|
|
programs.custom.xterm.fontSize = 12;
|
|
|
|
system.custom.fonts.dpi = 100;
|
|
|
|
|
|
|
|
configuration.desktop = {
|
|
|
|
width = 1366;
|
|
|
|
height = 768;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|