lil patches

This commit is contained in:
alisceon 2026-02-21 14:55:51 +01:00
parent f183012e31
commit f59c46ad87
5 changed files with 165 additions and 2410 deletions

View file

@ -287,7 +287,7 @@
replace = "{{pubip}} ";
}
{
regex = ":em(?P<emname>\\S+) ";
regex = ";(?P<emname>\\S+) ";
replace = "{{emoji}} ";
vars = [
{

View file

@ -79,7 +79,6 @@
pkgs.via
pkgs.plymouth
pkgs.xorg.xhost
pkgs.nvtopPackages.nvidia
]; # end systemPackages
sessionVariables.NIXOS_OZONE_WL = "1";
}; # end environment

View file

@ -62,6 +62,7 @@
systemPackages = [
pkgs.efibootmgr
pkgs.prismlauncher
pkgs.nvtopPackages.nvidia
];
};
programs = {

File diff suppressed because it is too large Load diff

View file

@ -7,8 +7,11 @@ import socket
import subprocess
TARGET_LINK = "f0:2f:74:30:0c:d0"
TARGET_HOSTNAME = "tower.home.the.malice.zone"
TARGET_IP = socket.gethostbyname(TARGET_HOSTNAME)
#TARGET_HOSTNAME = "tower.home.the.malice.zone"
#TARGET_IP = socket.gethostbyname(TARGET_HOSTNAME)
#ip made static until dns issues end
TARGET_IP = "10.10.0.110"
def remote_cmd(command):
print(f"Executing: ssh alisceon@tower.home.the.malice.zone '{command}'")