nixos-config/configs/pepe/configuration.nix

61 lines
1 KiB
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 = [
<system/desktop>
./hardware-configuration.nix
#./samba.nix
./syncthing.nix
./tinc.nix
#./wifi-access-point.nix
];
2019-12-02 23:56:29 +01:00
custom.samba-share = {
2019-10-24 02:20:38 +02:00
enable = false;
2019-12-20 05:54:26 +01:00
folders = { public = "/home/palo/movies"; };
2019-10-24 02:20:38 +02:00
};
2019-12-20 05:54:26 +01:00
system.custom.wifi.interfaces = [ "wlp3s0" ];
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
security.wrappers = {
2019-12-20 05:54:26 +01:00
pmount.source = "${pkgs.pmount}/bin/pmount";
pumount.source = "${pkgs.pmount}/bin/pumount";
2019-10-24 02:20:38 +02:00
};
# keybase
2019-12-12 06:04:31 +01:00
services.keybase.enable = false;
services.kbfs.enable = false;
2019-10-24 02:20:38 +02:00
programs.custom.steam.enable = false;
programs.custom.video.enable = false;
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;
};
};
configuration.desktop = {
width = 1366;
height = 768;
};
}