summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/hw
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2019-05-09 08:42:23 +0200
committermakefu <github@syntax-fehler.de>2019-05-09 08:42:23 +0200
commitc07c0412418e3979e609fd5200a34dd1830e9334 (patch)
tree6f24ee033fb125b8fa7d919492a07f4159b1b6aa /makefu/2configs/hw
parente5ef540c3a61697f3b91a154e36e6795ef858eec (diff)
prison-break: finish move from makefu to krebs namespace
Diffstat (limited to 'makefu/2configs/hw')
-rw-r--r--makefu/2configs/hw/network-manager.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/makefu/2configs/hw/network-manager.nix b/makefu/2configs/hw/network-manager.nix
index d7b262b9..e781c7ed 100644
--- a/makefu/2configs/hw/network-manager.nix
+++ b/makefu/2configs/hw/network-manager.nix
@@ -1,4 +1,7 @@
{ pkgs, lib, ... }:
+let
+ prison-break = pkgs.callPackage ../../../krebs/5pkgs/simple/prison-break {};
+in
{
users.users.makefu = {
extraGroups = [ "networkmanager" ];
@@ -31,6 +34,6 @@
"/etc/NetworkManager/system-connections" #NM stateful config files
];
networking.networkmanager.dispatcherScripts = [
- { source = "${pkgs.prison-break}/bin/prison-break"; }
+ { source = "${prison-break}/bin/prison-break"; }
];
}