summaryrefslogtreecommitdiffstats
path: root/1systems/x/config.nix
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2018-02-06 11:59:08 +0100
committermakefu <github@syntax-fehler.de>2018-02-06 11:59:08 +0100
commit3ca74c4ec76079b1aa8f8b6f8a66ded8288789ca (patch)
tree491c7236aa528274780085a2701e1e5f553fe26f /1systems/x/config.nix
parentb0cb626a0ad0dc957fe5cddf07ceae7f1d2cd6b3 (diff)
ma x.r: disable makefu.umts, cleanup
Diffstat (limited to '1systems/x/config.nix')
-rw-r--r--1systems/x/config.nix13
1 files changed, 8 insertions, 5 deletions
diff --git a/1systems/x/config.nix b/1systems/x/config.nix
index f3a1d488c..d5a9bdcfb 100644
--- a/1systems/x/config.nix
+++ b/1systems/x/config.nix
@@ -83,13 +83,9 @@ with import <stockholm/lib>;
makefu.server.primary-itf = "wlp3s0";
makefu.full-populate = true;
- makefu.umts.apn = "web.vodafone.de";
nixpkgs.config.allowUnfree = true;
- environment.systemPackages = [ pkgs.passwdqc-utils ];
-
-
# configure pulseAudio to provide a HDMI sink as well
networking.firewall.enable = true;
networking.firewall.allowedTCPPorts = [ 80 24800 26061 8000 3000 ];
@@ -101,8 +97,15 @@ with import <stockholm/lib>;
krebs.tinc.retiolum.connectTo = [ "omo" "gum" "prism" ];
networking.extraHosts = ''
- 192.168.1.11 omo.local
+ 192.168.1.11 omo.local
'';
# hard dependency because otherwise the device will not be unlocked
boot.initrd.luks.devices = [ { name = "luksroot"; device = "/dev/sda2"; allowDiscards=true; }];
+
+ nix.package = pkgs.nixUnstable;
+ environment.systemPackages = [ pkgs.passwdqc-utils pkgs.nixUnstable ];
+ nixpkgs.overlays = [ (import <python/overlay.nix>) ];
+
+ # environment.variables = { GOROOT = [ "${pkgs.go.out}/share/go" ]; };
+
}