From fa38155eec9563dc9dc620a77900d87b97443cfe Mon Sep 17 00:00:00 2001 From: makefu Date: Sat, 15 Jul 2017 18:57:16 +0200 Subject: ma: move systems to subdir, init source --- makefu/1systems/vbob/config.nix | 73 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 makefu/1systems/vbob/config.nix (limited to 'makefu/1systems/vbob') diff --git a/makefu/1systems/vbob/config.nix b/makefu/1systems/vbob/config.nix new file mode 100644 index 000000000..d8e275bf6 --- /dev/null +++ b/makefu/1systems/vbob/config.nix @@ -0,0 +1,73 @@ +{ lib, config, pkgs, ... }: +{ + krebs.build.host = config.krebs.hosts.vbob; + makefu.awesome.modkey = "Mod1"; + imports = + [ # Include the results of the hardware scan. + ../. + (toString ) + (toString ) + ../2configs/main-laptop.nix #< base-gui + ../2configs/sshd-totp.nix + + # Tools + ../2configs/tools/core.nix + ../2configs/tools/core-gui.nix + ../2configs/tools/dev.nix + ../2configs/tools/extra-gui.nix + ../2configs/tools/sec.nix + + # environment + ../2configs/tinc/retiolum.nix + + ../2configs/audio/jack-on-pulse.nix + ../2configs/audio/realtime-audio.nix + + ]; + networking.extraHosts = import (toString ); + + nixpkgs.config.allowUnfree = true; + fileSystems."/nix" = { + device ="/dev/disk/by-label/nixstore"; + fsType = "ext4"; + }; + + # 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 + environment.systemPackages = with pkgs;[ + fortclientsslvpn ppp xclip + get + logstash + # docker + #devpi-web + #devpi-client + debmirror + ansible + ]; + # virtualisation.docker.enable = true; + + + networking.firewall.allowedTCPPorts = [ + 25 + 80 + 8010 + ]; + + fileSystems."/media/share" = { + fsType = "vboxsf"; + device = "share"; + options = [ "rw" "uid=9001" "gid=9001" ]; + }; + +} -- cgit v1.2.3