Merge remote-tracking branch 'gum/master'
This commit is contained in:
commit
581c20be8f
11
krebs/5pkgs/simple/ukrepl.nix
Normal file
11
krebs/5pkgs/simple/ukrepl.nix
Normal file
@ -0,0 +1,11 @@
|
||||
{ lib, pkgs,stdenv }:
|
||||
let
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "makefu";
|
||||
repo = "ukrepl";
|
||||
rev = "0baa5cc4d5c3c17af704b69a800dd1f520ded8e3";
|
||||
hash = "sha256:1lnhkf02f18fvf3l2fcszvs4x115lql17akabd5ph9ff9z33k8rv";
|
||||
};
|
||||
in
|
||||
pkgs.writers.writePython3Bin "ukrepl" {} (builtins.readFile (src + "/ukrepl"))
|
||||
|
13
makefu/2configs/gui/look-up.nix
Normal file
13
makefu/2configs/gui/look-up.nix
Normal file
@ -0,0 +1,13 @@
|
||||
{
|
||||
systemd.services.look-up = {
|
||||
startAt = "*:30";
|
||||
serviceConfig = {
|
||||
ExecStart= pkgs.writeDash "look-up" ''
|
||||
set -x
|
||||
eval "export '$(egrep -z DBUS_SESSION_BUS_ADDRESS /proc/$(${pkgs.procps}/bin/pgrep -u ${user} ${window-manager})/environ)'"
|
||||
${pkgs.libnotify}/bin/notify-send -u critical -t 9999999 'look up once in a while'
|
||||
'';
|
||||
User = user;
|
||||
};
|
||||
};
|
||||
}
|
@ -88,7 +88,7 @@ in {
|
||||
duschfenster_lang_offen.name = "Duschfenster lange offen";
|
||||
ist_sommer = {
|
||||
name = "Es ist Sommer";
|
||||
initial = true; # TODO
|
||||
initial = false; # TODO
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -47,6 +47,9 @@ in {
|
||||
{ service = "media_player.media_stop";
|
||||
target.entity_id = all_media_player;
|
||||
}
|
||||
{ service = "script.turn_on";
|
||||
target.entity_id = "script.alle_heizungen_aus";
|
||||
}
|
||||
];
|
||||
}
|
||||
];
|
||||
|
@ -18,6 +18,7 @@ in {
|
||||
# ./multi/flurlicht.nix
|
||||
./multi/kurzzeitwecker.nix
|
||||
./multi/the_playlist.nix
|
||||
./multi/heizung.nix
|
||||
# ./multi/fliegen-couter.nix
|
||||
|
||||
./device_tracker/openwrt.nix
|
||||
@ -192,5 +193,10 @@ in {
|
||||
configDir = hassdir;
|
||||
};
|
||||
|
||||
krebs.secret.files."hass-secrets" = {
|
||||
source-path = toString <secrets> + "/hass/secrets.yaml";
|
||||
path = "/var/lib/hass/secrets.yaml";
|
||||
owner.name = "hass";
|
||||
};
|
||||
state = [ "/var/lib/hass/known_devices.yaml" ];
|
||||
}
|
||||
|
11
makefu/2configs/home/ham/multi/heizung.nix
Normal file
11
makefu/2configs/home/ham/multi/heizung.nix
Normal file
@ -0,0 +1,11 @@
|
||||
{
|
||||
services.home-assistant.config =
|
||||
{
|
||||
# 18 Grad
|
||||
script.alle_heizungen_aus.sequence = [{
|
||||
service = "climate.set_temperature";
|
||||
target.entity_id = [ "climate.wohnzimmer_heizung" ];
|
||||
data.temperature = "18.0";
|
||||
}];
|
||||
};
|
||||
}
|
@ -4,5 +4,7 @@
|
||||
{ platform = "dwd_weather_warnings";
|
||||
region_name = "Stadt Stuttgart";
|
||||
}
|
||||
{ platform = "nina";
|
||||
}
|
||||
];
|
||||
}
|
||||
|
@ -4,8 +4,7 @@
|
||||
services.home-assistant.config.sensor =
|
||||
[
|
||||
{ platform = "darksky";
|
||||
api_key = lib.removeSuffix "\n"
|
||||
(builtins.readFile <secrets/hass/darksky.apikey>);
|
||||
api_key = "!secret darksky";
|
||||
language = "de";
|
||||
monitored_conditions = [
|
||||
"summary" "icon"
|
||||
@ -21,5 +20,11 @@
|
||||
units = "si" ;
|
||||
scan_interval = "00:30:00";
|
||||
}
|
||||
{
|
||||
platform = "open_meteo";
|
||||
}
|
||||
{
|
||||
platform = "met";
|
||||
}
|
||||
];
|
||||
}
|
||||
|
@ -12,6 +12,7 @@ let
|
||||
in {
|
||||
imports = [
|
||||
./gui/base.nix
|
||||
./gui/look-up.nix
|
||||
./fetchWallpaper.nix
|
||||
./zsh-user.nix
|
||||
./tools/core.nix
|
||||
@ -72,15 +73,4 @@ in {
|
||||
location.latitude = 48.7;
|
||||
location.longitude = 9.1;
|
||||
|
||||
systemd.services.look-up = {
|
||||
startAt = "*:30";
|
||||
serviceConfig = {
|
||||
ExecStart= pkgs.writeDash "look-up" ''
|
||||
set -x
|
||||
eval "export '$(egrep -z DBUS_SESSION_BUS_ADDRESS /proc/$(${pkgs.procps}/bin/pgrep -u ${user} ${window-manager})/environ)'"
|
||||
${pkgs.libnotify}/bin/notify-send -u critical -t 9999999 'look up once in a while'
|
||||
'';
|
||||
User = user;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
@ -2,7 +2,7 @@
|
||||
with pkgs.python3Packages;
|
||||
buildPythonApplication rec {
|
||||
name = "airsensor-py-${version}";
|
||||
version = "2017-12-05";
|
||||
version = "1.0.0";
|
||||
propagatedBuildInputs = [
|
||||
pyusb
|
||||
click
|
||||
@ -11,7 +11,7 @@ buildPythonApplication rec {
|
||||
src = fetchFromGitHub {
|
||||
owner = "makefu";
|
||||
repo = "airsensor-py";
|
||||
rev = "7ac5f185dc848fca1b556e4c0396dd73f6a93995";
|
||||
sha256 = "0387b025y8kb0zml7916p70hmzc3y18kqh46b9xv5qayljxymq2w";
|
||||
rev = "1.0.0";
|
||||
sha256 = "1jpvvl965bg3ymvr58c433jyy0smczn65fnqsskxn7basznii5g8";
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user