diff options
-rw-r--r-- | krebs/3modules/external/mic92.nix | 4 | ||||
-rw-r--r-- | lass/1systems/helios/config.nix | 7 | ||||
-rw-r--r-- | lass/1systems/mors/config.nix | 1 | ||||
-rw-r--r-- | lass/2configs/hass/default.nix | 4 | ||||
-rw-r--r-- | lass/5pkgs/dpass/default.nix | 12 |
5 files changed, 4 insertions, 24 deletions
diff --git a/krebs/3modules/external/mic92.nix b/krebs/3modules/external/mic92.nix index 3c76a372c..310b700e0 100644 --- a/krebs/3modules/external/mic92.nix +++ b/krebs/3modules/external/mic92.nix @@ -167,8 +167,8 @@ in { nets = rec { internet = { # eve.thalheim.io - ip4.addr = "95.216.112.61"; - ip6.addr = "2a01:4f9:2b:1605::1"; + ip4.addr = "88.99.244.96"; + ip6.addr = "2a01:4f8:10b:49f::1"; aliases = [ "eve.i" ]; }; retiolum = { diff --git a/lass/1systems/helios/config.nix b/lass/1systems/helios/config.nix deleted file mode 100644 index 68acf12b8..000000000 --- a/lass/1systems/helios/config.nix +++ /dev/null @@ -1,7 +0,0 @@ -with import <stockholm/lib>; -{ pkgs, ... }: -{ - environment.systemPackages = with pkgs; [ - dpass - ]; -} diff --git a/lass/1systems/mors/config.nix b/lass/1systems/mors/config.nix index 88ac90de4..4d042de22 100644 --- a/lass/1systems/mors/config.nix +++ b/lass/1systems/mors/config.nix @@ -127,7 +127,6 @@ with import <stockholm/lib>; transmission macchanger - dpass dnsutils woeusb diff --git a/lass/2configs/hass/default.nix b/lass/2configs/hass/default.nix index b303df938..4ed0bfa5f 100644 --- a/lass/2configs/hass/default.nix +++ b/lass/2configs/hass/default.nix @@ -120,8 +120,8 @@ in { services.mosquitto = { enable = true; listeners = [{ - acl = [ "topic pattern readwrite #" ]; - users.gg23 = { acl = [ "topic readwrite #" ]; password = "gg23-mqtt"; }; + acl = [ ]; + users.gg23 = { acl = [ "readwrite #" ]; password = "gg23-mqtt"; }; }]; }; diff --git a/lass/5pkgs/dpass/default.nix b/lass/5pkgs/dpass/default.nix deleted file mode 100644 index c1e803bcb..000000000 --- a/lass/5pkgs/dpass/default.nix +++ /dev/null @@ -1,12 +0,0 @@ -{ pass, write, writeDash, ... }: - -write "dsco-pass" { - "/bin/dpass".link = writeDash "dpass" '' - PASSWORD_STORE_DIR=$HOME/.dpasswordstore \ - exec ${pass}/bin/pass $@ - ''; - "/bin/dpassmenu".link = writeDash "dpassmenu" '' - PASSWORD_STORE_DIR=$HOME/.dpasswordstore \ - exec ${pass}/bin/passmenu $@ - ''; -} |