use stable nixos-25.05 instead of unstable

This commit is contained in:
2025-10-05 15:29:24 +02:00
parent 08cf457aa3
commit 8bf17e74ef
8 changed files with 96 additions and 53 deletions

View File

@@ -0,0 +1,16 @@
{
writeShellApplication,
xhost
}:
writeShellApplication {
name = "pob2-frajul";
runtimeInputs = [
xhost
];
text = ''
xhost +
sudo su pob -c "sh /home/pob/pob2.sh"
'';
}