From a5c3570a941822a501873eda943c017580bb2a8d Mon Sep 17 00:00:00 2001 From: lassulus Date: Mon, 15 Feb 2016 16:56:29 +0100 Subject: l 1 helios: add pass.nix config --- lass/1systems/helios.nix | 1 + 1 file changed, 1 insertion(+) (limited to 'lass/1systems/helios.nix') diff --git a/lass/1systems/helios.nix b/lass/1systems/helios.nix index 67e3738ea..68e688b5e 100644 --- a/lass/1systems/helios.nix +++ b/lass/1systems/helios.nix @@ -7,6 +7,7 @@ with builtins; ../2configs/browsers.nix ../2configs/programs.nix ../2configs/git.nix + ../2configs/pass.nix #{ # users.extraUsers = { # root = { -- cgit v1.2.3 From 869a68c7944d0c022b3785c22c0c7fd010dc4627 Mon Sep 17 00:00:00 2001 From: lassulus Date: Mon, 15 Feb 2016 16:56:45 +0100 Subject: l 1 helios: open up port 8000 for webtesting --- lass/1systems/helios.nix | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'lass/1systems/helios.nix') diff --git a/lass/1systems/helios.nix b/lass/1systems/helios.nix index 68e688b5e..bfabbe14d 100644 --- a/lass/1systems/helios.nix +++ b/lass/1systems/helios.nix @@ -17,6 +17,15 @@ with builtins; # }; # }; #} + { + krebs.iptables = { + tables = { + filter.INPUT.rules = [ + { predicate = "-p tcp --dport 8000"; target = "ACCEPT"; precedence = 9001; } + ]; + }; + }; + } ]; krebs.build.host = config.krebs.hosts.helios; -- cgit v1.2.3 From 1ab712900c5ebc9a53f9593c9e7d7424031b2073 Mon Sep 17 00:00:00 2001 From: lassulus Date: Mon, 15 Feb 2016 16:57:04 +0100 Subject: l 1 helios: disbale intel sna because of bugs --- lass/1systems/helios.nix | 9 --------- 1 file changed, 9 deletions(-) (limited to 'lass/1systems/helios.nix') diff --git a/lass/1systems/helios.nix b/lass/1systems/helios.nix index bfabbe14d..4b94e5fd5 100644 --- a/lass/1systems/helios.nix +++ b/lass/1systems/helios.nix @@ -62,15 +62,6 @@ with builtins; # SUBSYSTEM=="net", ATTR{address}=="f0:de:f1:b8:c8:2e", NAME="et0" #''; - services.xserver = { - videoDriver = "intel"; - vaapiDrivers = [ pkgs.vaapiIntel ]; - deviceSection = '' - Option "AccelMethod" "sna" - BusID "PCI:0:2:0" - ''; - }; - services.xserver.synaptics = { enable = true; twoFingerScroll = true; -- cgit v1.2.3 From 08627a2cd423e6853de324cfa2c1bba0c844af30 Mon Sep 17 00:00:00 2001 From: lassulus Date: Fri, 26 Feb 2016 16:43:36 +0100 Subject: l 1 helios: remove open ports --- lass/1systems/helios.nix | 6 ------ 1 file changed, 6 deletions(-) (limited to 'lass/1systems/helios.nix') diff --git a/lass/1systems/helios.nix b/lass/1systems/helios.nix index 0103b6ec0..beaf0f441 100644 --- a/lass/1systems/helios.nix +++ b/lass/1systems/helios.nix @@ -19,12 +19,6 @@ with builtins; # }; #} { - krebs.iptables = { - tables = { - filter.INPUT.rules = [ - { predicate = "-p tcp --dport 8000"; target = "ACCEPT"; precedence = 9001; } - ]; - }; }; } ]; -- cgit v1.2.3 From 02c3fabe3ac38713fe71184c66ecf86dfa295a57 Mon Sep 17 00:00:00 2001 From: lassulus Date: Fri, 26 Feb 2016 16:44:48 +0100 Subject: l 1 helios: enable elasticsearch --- lass/1systems/helios.nix | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'lass/1systems/helios.nix') diff --git a/lass/1systems/helios.nix b/lass/1systems/helios.nix index beaf0f441..2784375c2 100644 --- a/lass/1systems/helios.nix +++ b/lass/1systems/helios.nix @@ -19,6 +19,11 @@ with builtins; # }; #} { + services.elasticsearch = { + enable = true; + plugins = [ + pkgs.elasticsearchPlugins.elasticsearch_kopf + ]; }; } ]; -- cgit v1.2.3 From 81c047edfd3491b5404bc0ed1f6a4385851e4443 Mon Sep 17 00:00:00 2001 From: lassulus Date: Mon, 7 Mar 2016 13:16:30 +0100 Subject: l 1 helios: disable kopf plugin for ES --- lass/1systems/helios.nix | 3 --- 1 file changed, 3 deletions(-) (limited to 'lass/1systems/helios.nix') diff --git a/lass/1systems/helios.nix b/lass/1systems/helios.nix index 2784375c2..cc98c2c5b 100644 --- a/lass/1systems/helios.nix +++ b/lass/1systems/helios.nix @@ -21,9 +21,6 @@ with builtins; { services.elasticsearch = { enable = true; - plugins = [ - pkgs.elasticsearchPlugins.elasticsearch_kopf - ]; }; } ]; -- cgit v1.2.3