diff options
author | makefu <github@syntax-fehler.de> | 2015-07-24 22:39:11 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2015-07-24 22:39:11 +0200 |
commit | 13cc704c60ce97a8d7404a3558ad925100fcc1a9 (patch) | |
tree | 3e96b1ee364e7b9a919a350d264b5d0b8fe30885 /1systems/makefu/pnp.nix | |
parent | 78651301fec79962a1cfacc34708edb9c2afbee7 (diff) |
pnp provides cgit, update identity
Diffstat (limited to '1systems/makefu/pnp.nix')
-rw-r--r-- | 1systems/makefu/pnp.nix | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/1systems/makefu/pnp.nix b/1systems/makefu/pnp.nix index 51f5bb00c..f98cd5276 100644 --- a/1systems/makefu/pnp.nix +++ b/1systems/makefu/pnp.nix @@ -9,7 +9,10 @@ [ # Include the results of the hardware scan. <nixpkgs/nixos/modules/profiles/qemu-guest.nix> ../../2configs/makefu/base.nix + ../../3modules/krebs/retiolum.nix + ../../2configs/makefu/cgit-retiolum.nix ]; + krebs.enable = true; boot.loader.grub.enable = true; boot.loader.grub.version = 2; boot.loader.grub.device = "/dev/vda"; @@ -20,19 +23,32 @@ hardware.enableAllFirmware = true; hardware.cpu.amd.updateMicrocode = true; + # networking.firewall is enabled by default + networking.firewall.allowedTCPPorts = [ 80 ]; + fileSystems."/" = { device = "/dev/disk/by-label/nixos"; fsType = "ext4"; }; + krebs.retiolum = { + enable = true; + hosts = ../../Zhosts; + connectTo = [ + "gum" + "pigstarter" + "fastpoke" + ]; + }; nix.maxJobs = 1; networking.hostName = "pnp"; # Define your hostname. # $ nix-env -qaP | grep wget - environment.systemPackages = with pkgs; [ + environment.systemPackages = with pkgs; [ wget git gnumake - ]; + jq + ]; } |