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}} "; replace = "{{pubip}} ";
} }
{ {
regex = ":em(?P<emname>\\S+) "; regex = ";(?P<emname>\\S+) ";
replace = "{{emoji}} "; replace = "{{emoji}} ";
vars = [ vars = [
{ {

View file

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

View file

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

File diff suppressed because it is too large Load diff

View file

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