This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ config, pkgs, inputs, ... }: | |
let | |
secretspath = builtins.toString inputs.nix-secrets; | |
# ... | |
in | |
{ | |
imports = [ | |
inputs.sops-nix.nixosModules.sops | |
]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Saswell (Tuya whitelabel) 88teujp thermostat valve quirk.""" | |
import logging | |
from zigpy.profiles import zha | |
import zigpy.types as t | |
from zigpy.zcl import foundation | |
from zigpy.zcl.clusters.general import ( | |
AnalogOutput, | |
Basic, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
DISK=$1 | |
# if no $1 ask for a disk to wipe | |
if [ "$1" = "" ] | |
then | |
lsblk -o NAME,FSTYPE,MOUNTPOINT,FSUSE% | |
echo "Here's the system disks, what should be deleted for install? (e.g. vda)" | |
read DISK | |
fi |