Compare commits
No commits in common. "63731df4dd06826672921639c0866c59ab5c7074" and "433e1f23fc807598011e443d973cd90c991de7be" have entirely different histories.
63731df4dd
...
433e1f23fc
3 changed files with 14 additions and 3 deletions
|
|
@ -75,6 +75,8 @@
|
||||||
# List packages installed in system profile. To search, run:
|
# List packages installed in system profile. To search, run:
|
||||||
# $ nix search wget
|
# $ nix search wget
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
# vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
|
||||||
|
# wget
|
||||||
git
|
git
|
||||||
nil
|
nil
|
||||||
nixd
|
nixd
|
||||||
|
|
@ -102,11 +104,21 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
user = "kemp";
|
user = "kemp";
|
||||||
program = "${pkgs.writeScriptBin "start-cage-app" ''
|
program = "${pkgs.writeScriptBin "start-cage-app" ''
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
# kmsprint |
|
||||||
|
# grep '(connected)' |
|
||||||
|
# sed -E 's/.* ([^ ]+) \(connected\).*/\1/' |
|
||||||
|
# while read -r output; do
|
||||||
|
# wlr-randr --output "$output" --transform 180
|
||||||
|
# done
|
||||||
exec ${pkgs.firefox}/bin/firefox
|
exec ${pkgs.firefox}/bin/firefox
|
||||||
''}/bin/start-cage-app";
|
''}/bin/start-cage-app";
|
||||||
};
|
};
|
||||||
services.getty.loginProgram = "${pkgs.coreutils}/bin/true";
|
services.getty.loginProgram = "${pkgs.coreutils}/bin/true";
|
||||||
|
services.udev.extraRules = ''
|
||||||
|
# ENV{LIBINPUT_CALIBRATION_MATRIX}="-1 0 1 0 -1 1"
|
||||||
|
'';
|
||||||
|
|
||||||
services.openssh = {
|
services.openssh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
|
|
|
||||||
|
|
@ -577,7 +577,7 @@
|
||||||
{
|
{
|
||||||
state = "weather.forecast_home";
|
state = "weather.forecast_home";
|
||||||
label = "Windgeschwindigkeit";
|
label = "Windgeschwindigkeit";
|
||||||
value = "{attributes.wind_speed}";
|
value = "{attributes.wind_speed} {attributes.wind_speed_unit}";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
state = "sensor.load_power";
|
state = "sensor.load_power";
|
||||||
|
|
|
||||||
|
|
@ -139,7 +139,6 @@
|
||||||
wireguard-tools
|
wireguard-tools
|
||||||
diffoscope
|
diffoscope
|
||||||
nix-index
|
nix-index
|
||||||
libwebp
|
|
||||||
|
|
||||||
# GUI programs
|
# GUI programs
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue