stockholm/makefu/1systems/vbob/config.nix

77 lines
1.9 KiB
Nix
Raw Normal View History

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.
<stockholm/makefu>
(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
<stockholm/makefu/2configs/sshd-totp.nix>
2015-12-14 13:33:06 +00:00
# Tools
<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>
2015-12-14 13:33:06 +00:00
# environment
<stockholm/makefu/2configs/tinc/retiolum.nix>
2015-12-14 16:56:50 +00:00
<stockholm/makefu/2configs/audio/jack-on-pulse.nix>
<stockholm/makefu/2configs/audio/realtime-audio.nix>
2015-12-14 13:33:06 +00:00
];
2016-11-14 14:59:54 +00:00
networking.extraHosts = import (toString <secrets/extra-hosts.nix>);
nixpkgs.config.allowUnfree = true;
fileSystems."/nix" = {
device ="/dev/disk/by-label/nixstore";
fsType = "ext4";
};
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 ];
};
};
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;[
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
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
};
}