2015-12-14 16:56:50 +00:00
|
|
|
{ lib, config, pkgs, ... }:
|
2016-01-18 11:54:03 +00:00
|
|
|
{
|
2015-12-14 13:33:06 +00:00
|
|
|
krebs.build.host = config.krebs.hosts.vbob;
|
2016-04-17 00:03:15 +00:00
|
|
|
makefu.awesome.modkey = "Mod1";
|
2015-12-14 13:33:06 +00:00
|
|
|
imports =
|
|
|
|
[ # Include the results of the hardware scan.
|
2017-07-15 17:01:02 +00:00
|
|
|
<stockholm/makefu>
|
2016-07-15 06:35:27 +00:00
|
|
|
(toString <nixpkgs/nixos/modules/virtualisation/virtualbox-image.nix>)
|
|
|
|
(toString <nixpkgs/nixos/modules/virtualisation/virtualbox-guest.nix>)
|
2017-07-15 21:19:06 +00:00
|
|
|
# base gui
|
|
|
|
<stockholm/makefu/2configs/main-laptop.nix>
|
|
|
|
|
|
|
|
# security
|
2017-07-15 17:01:02 +00:00
|
|
|
<stockholm/makefu/2configs/sshd-totp.nix>
|
2015-12-14 13:33:06 +00:00
|
|
|
|
2017-06-28 22:14:54 +00:00
|
|
|
# Tools
|
2017-07-15 17:01:02 +00:00
|
|
|
<stockholm/makefu/2configs/tools/core.nix>
|
|
|
|
<stockholm/makefu/2configs/tools/core-gui.nix>
|
|
|
|
<stockholm/makefu/2configs/tools/dev.nix>
|
|
|
|
<stockholm/makefu/2configs/tools/extra-gui.nix>
|
|
|
|
<stockholm/makefu/2configs/tools/sec.nix>
|
2017-06-28 22:14:54 +00:00
|
|
|
|
2015-12-14 13:33:06 +00:00
|
|
|
# environment
|
2017-07-15 17:01:02 +00:00
|
|
|
<stockholm/makefu/2configs/tinc/retiolum.nix>
|
2015-12-14 16:56:50 +00:00
|
|
|
|
2017-07-15 17:01:02 +00:00
|
|
|
<stockholm/makefu/2configs/audio/jack-on-pulse.nix>
|
|
|
|
<stockholm/makefu/2configs/audio/realtime-audio.nix>
|
2017-06-28 22:14:54 +00:00
|
|
|
|
2015-12-14 13:33:06 +00:00
|
|
|
];
|
2016-11-14 14:59:54 +00:00
|
|
|
networking.extraHosts = import (toString <secrets/extra-hosts.nix>);
|
2015-12-16 13:30:21 +00:00
|
|
|
|
2016-07-15 06:35:27 +00:00
|
|
|
nixpkgs.config.allowUnfree = true;
|
2015-12-16 11:23:55 +00:00
|
|
|
fileSystems."/nix" = {
|
|
|
|
device ="/dev/disk/by-label/nixstore";
|
|
|
|
fsType = "ext4";
|
|
|
|
};
|
2016-07-15 06:35:27 +00:00
|
|
|
|
2015-12-14 16:56:50 +00:00
|
|
|
# allow vbob to deploy self
|
|
|
|
users.extraUsers = {
|
|
|
|
root = {
|
|
|
|
openssh.authorizedKeys.keys = [ config.krebs.users.makefu-vbob.pubkey ];
|
|
|
|
};
|
|
|
|
};
|
2016-07-18 16:57:36 +00:00
|
|
|
|
|
|
|
environment.shellAliases = {
|
|
|
|
forti = "cat ~/vpn/pw.txt | xclip; sudo forticlientsslvpn";
|
|
|
|
};
|
|
|
|
# TODO: for forticleintsslpn
|
|
|
|
# ln -s /r/current-system/sw/bin/pppd /usr/sbin/pppd
|
|
|
|
# ln -s /r/current-system/sw/bin/tail /usr/bin/tail
|
2015-12-14 13:33:06 +00:00
|
|
|
environment.systemPackages = with pkgs;[
|
2016-07-18 16:57:36 +00:00
|
|
|
fortclientsslvpn ppp xclip
|
2015-12-14 13:33:06 +00:00
|
|
|
get
|
2016-01-18 11:54:03 +00:00
|
|
|
logstash
|
2016-10-22 12:21:22 +00:00
|
|
|
# docker
|
2016-11-14 14:59:54 +00:00
|
|
|
#devpi-web
|
|
|
|
#devpi-client
|
|
|
|
debmirror
|
|
|
|
ansible
|
2015-12-14 16:56:50 +00:00
|
|
|
];
|
2016-05-02 14:02:15 +00:00
|
|
|
# virtualisation.docker.enable = true;
|
|
|
|
|
2015-12-14 13:33:06 +00:00
|
|
|
|
|
|
|
networking.firewall.allowedTCPPorts = [
|
|
|
|
25
|
|
|
|
80
|
2015-12-16 16:53:35 +00:00
|
|
|
8010
|
2015-12-14 13:33:06 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
fileSystems."/media/share" = {
|
|
|
|
fsType = "vboxsf";
|
|
|
|
device = "share";
|
2016-04-16 18:56:21 +00:00
|
|
|
options = [ "rw" "uid=9001" "gid=9001" ];
|
2015-12-14 13:33:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|