blob: 34c5d479a04b7180bf0d2252dfdff2b6ea1674b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
|
bash
ls .config/nushell/
vi .config/nushell/env.nu
path
path add
vi .config/nushell/env.nu
vi .config/nushell/config.nu
vi /nix-config/profiles/core/home.nix
xdg-open https://google.com
cat .local/bin/desktop-open-pipe
/nix/store/zcw13r2mmpzlnv2yvfl13mcpky3hivq1-system-path/bin/xdg-open https://google.com
which xdg-open
vi /nix-config
cd /nix-config/
git fetch --all
ls
htop
ssh-add ~/.ssh/id_ed25519_sk
vi
git fetch --all
git pull
vi
sudo nixos-rebuild switch --flake /nix-config
vi /nix-config/profiles/core/home.nix
vi
cd mut/neovim/pack/plugins/start/blink.cmp/
git status
vi
ls
vi
cd /nix-config/
vi mut/neovim/lua/my/packages/blink.lua
vi
cp /nix-config/mut/surf/surf-open.sh /nix-config/mut/bin
surf-open.sh
vi .local/bin/surf-open.sh
mkdir tmp
surf-open.sh
sudo nixos-rebuild switch --flake /nix-config
chromium
vi /nix-config/mut/surf/
sudo nixos-rebuild switch --flake /nix-config
man surf
man tabbed
xwininfo
vi /nix-config/profiles/graphical/suckless.nix
sudo nixos-rebuild switch --flake /nix-config
xwininfo
surf-open.sh https://troubleshooters.com/linux/surf.htm
vi /nix-config/mut/tabbed/config.def.h
sudo nixos-rebuild switch --flake /nix-config
cat ~/.ssh/id_rsa_yubikey.pub
vi /nix-config/lib/my.nix
ssh-add ~/.ssh/id_ed25519_sk
ssh 192.168.178.44
ssh -i ~/.ssh/id_ed25519_sk 192.168.178.44 -p 2222
ssh -i ~/.ssh/id_ed25519_sk 192.168.178.44 -p 2222 -vvv
build-pixie
build-pixie pump
which run-pixiecore
which run-pixiecore | open ($in | get patch)
which run-pixiecore | open ($in | get path)
which run-pixiecore | open ($in.0 | get path)
run-pixiecore
ssh -i ~/.ssh/id_ed25519_sk 192.168.178.44 -p 2222 -vvv
ls
ls initrd/
ls
ls init/bin/
cd initrd/initrw
cd initrd/
ls
ls initrd.zst
ls -l initrd.zst
ls -al initrd.zst
zstd
zstd -h
zstd initrd -o here
zstd initrd -o ~/here
cd ..
cd here
ls
cd ..
ls
cd
ls
cd ~/here
ls ~/here
file ~/here
rm ~/here
cd initrd/
ls
zstd
zstd -h
zstd -d initrd -o ~/here
cd ~/here
ls
cd ../
ls
file here
cpio
open here | cpio -idmv
ls
cd nix/
ls
cd store/
ls
cd ..
cat init
ls
rm -rf nix
sudo rm -rf ./nix
ls
mkdir unpackedinitrd
cd unpackedinitrd/
cp ../here .
ls
open here | cpio -idmv
ls
cat init
cat init | grep mnt
cd
cd /nix-config
vi
git status
vi
ls
vi
ssh-add ~/.ssh/id_ed25519_sk
git push
git remote remove origin
surf-open.sh
surf
tabbed
surf-open.sh
which surf-open.sh
which surf-open.sh | get path | open
which surf-open.sh | get path.0 | open
which surf-open.sh | get path.0 | nvim
which surf-open.sh | get path.0 | nvim $in
ls tmp
rm tmp/tabbed-surf.xid
vi
git remote add origin git@github.com:ivi-vink/flake.git
vi
cccccbhnjjflcnulunfkudgidkhejkdlibutfngdreeh
cd
cd Programming/ThirdParty/
git clone https://github.com/martanne/vis
cd vis
makegcc
gcc
./configure
gcc
vi Dockerfile
cd vis
make docker
vi Dockerfile
ls
./vis
vi hello
vis
vi
mv vis ~/.local/bin
vi
vis
cd
vis
cd Programming/
vis
ls
vis
cd ~/.config/
man vis-open
vis-open
ls
./vis-open
vis
ls
vis
vi
vis
cd
rm ~/.local/bin/vis
cd /nix-config/
vi flake.nix
s
sudo nixos-rebuild switch --flake /nix-config
vis
which vis
echo 1 2 3 | vis-menu
^echo 1 2 3 | vis-menu
^echo 1\n2 3 | vis-menu
^ls | vis-menu
ls | get name | vis-menu
ls | each {get name} | vis-menu
ls | each {|f| $f.name} | vis-menu
ls | each {|f| $f.name}
ls | each {|f| $f.name} | to tsv
ls | each {|f| $f.name}
ls | each {|f| $f.name} | to json
ls | each {|f| $f.name} | to text
ls | each {|f| $f.name} | to text | vis-menu
let result = ls | each {|f| $f.name} | to text | vis-menu
$result
vis
man vis
cd .config/vis
ls
wget https://repo.or.cz/vis-quickfix.git/blob_plain/ff8e5e14c0b9e47238fa14723e1a0f5913ee3aeb:/init.lua
ls
mkdir quickfix
mv init.lua quickfix/
vis visrc.lua
grpe
cd .config/vis
grep -n require
grep -n require .
grep -n require *
grep -rn require *
vis
grep -n -rn require *
which grep
grep require *
which rg
vis visrc.lua
vis
vis
vis
which bash
ls /bin/bash
ls /usr/bin/bash
vis
ls
vis
cd .config/vis
vis
vis visrc.lua
vis
cd .config/vis
vis
touch vislogs
surf
surf-open.sh
surf-open.sh google.com
surf-open.sh https://google.com
surf
rm tmp/tabbed-surf.xid
cd
cd .config/vis
vis
tail -f vislogs
ls
vis
grep -rn require quickfix
vis
ls
rm debug
rm --debug
rm '--debug'
ls
rm vislogs
ls
vis
cd .config/vis
vis
vis visrc.lua
vis
vis visrc.lua
fmt
which fmt
vis
cd .config/vis
vis
vis visrc.lua
ll
ls
vis-open .config
vi /run/current-system/sw/bin/vis-open
which sh
ls /etc/profiles/per-user/ivi/bin/sh
ls -l /etc/profiles/per-user/ivi/bin/sh
ls -l /etc/profiles/per-user/ivi/bin/sh | get target
ls -l /nix/store/88s532drks0ip0ffyp9va413zssq9hvr-home-manager-path/bin/sh
ls -l /nix/store/88s532drks0ip0ffyp9va413zssq9hvr-home-manager-path/bin/sh | get target
vi /run/current-system/sw/bin/vis-open
which vis-open
$env.PATH
chmod +x .local/bin/vis-open
which vis-open
vis-open .config
vi ~/.local/bin/vis-open
vis-open .config
vi ~/.local/bin/vis-open
vis-open .config
vi ~/.local/bin/vis-open
vis-open .config
vi ~/.local/bin/vis-open
man getops
vis
vis .local/bin/vis-open
rm .local/bin/vis-open
rm .config/vis/--debug
vis
cd Programming/Projects/csapp/
ls
vis Makefile
vis `--debug`
ls
rm --debug
rm ./--debug
vis ~/.config/vis/quickfix/init.lua
ls
rm ./--debug
vis
ls
mkdir 4
ls
cd 4
ls
cd ..
vis
git status
git add .
git commit -m dunno
ls
vis 58_decode2.s
ls
vis 58_decode2.s
vis *.s
vis
man getopts
man vis
lf
vis
vis
ls
cd 4
ls
ls ../3/
vis
vis ~/.config/vis/visrc.lua
vis
cd 4
vis
sb-battery
rm -rf tmp/
surf-open.sh https://google.com
mkdir tmp
vis
git clone https://github.com/seifferth/vis-editorconfig "$HOME/.config/vis/edconf"
uarocks install editorconfig-core
luarocks install editorconfig-core
which lua
lua
vis
man vis
vis
cd third vis
ls
vis ~/.config/vis/visrc.lua
cd third vis
ls
man vis-complete
ls --raw
^ls
^ls | vis-complete
^ls | vis-complete --file
^ls | vis-complete --file *.c
^ls | vis-complete --word *.c
vis-complete --word *.c
man vis-complete
l
ls
vis Dockerfile
cd csapp
ls
sb-battery
cd /nix-config/
vi machines/pump-netboot.nix
cd /nix-config/
build-pixie pump
run-pixiecore
run-pixiecore
which build-pixie
ls -al /run/current-system/sw/bin/build-pixie
vi machines/pump-netboot.nix
sudo nixos-rebuild switch --flake /nix-config
which build-pixie
ls -l /run/current-system/sw/bin/build-pixie
ls init/
man read
bash
ls init/
man switch_root
ls init
ls init/init
cat init/init
cd unpackedinitrd/
ls
ls nix/store
ls **/*
ls **/init
ls **/init | each { |f| $f.name }
open nix/store/r1m9wckjsjgiiai77hfxazc0mc3k2nc3-extra-utils/bin/init
rm -rf unpackedinitrd/
sudo rm -rf unpackedinitrd/
rm -rf init/
rm -f init
rm -f kernel/
rm -f kernel
rm -f initrd/
rm -f initrd
vi machines/pump-netboot.nix
ls
cd
ls
ls -l
rm lib
ls -l
vi init/init
cpio
man cpio
nix-collect-garbage -d
df -h
sudo nixos-rebuild switch --flake /nix-config
build-pixie pump
ls
open hando
open hando | xdg-open $in
surf-open.sh https://drive.google.com/drive/folders/1r5DIUnDRfc1JlgZmRUEODCxsw5YcnixW
ls
ls hando
ls
ls initrd/
open initrd/initrd | zstd -d -o unpacked
ls unpacked
file unpacked
open unpacked | cpio -d
open unpacked | cpio
cpio --help
open unpacked | cpio -i
ls
ls unpacked
mkdir unpacked
mkdir test
mv unpacked test
cd test
ls
cd .
cd ..
ls -al tes
ls -al test
sudo rm -rf
ls
sudo rm -rf test
ls -al test
mkdir test
mv unpacked test
cd test
open unpacked | cpio -i
ls
ls nix/
ls nix/store/
ls ../init
ls nix/store/6wxswzjpf7fp5flag2baqqkm75rqqykf-linux-6.6.68-modules-shrunk
ls nix/store/6wxswzjpf7fp5flag2baqqkm75rqqykf-linux-6.6.68-modules-shrunk/lib/
ls nix/store/**/init
file nix/store/v971vc1mpx06qavx6z9kwj3nbyifbd1g-extra-utils/bin/init
ls
cd ..
ls
sudo nixos-rebuild switch --flake /nix-config
cd /nix-config/
vi flake.nix
sudo nixos-rebuild switch --flake /nix-config
sudo nixos-rebuild switch --flake /nix-config --impure
vi flake.nix
sudo nixos-rebuild switch --flake /nix-config --impure
run-pixiecore
which run-pixiecore | get path.0
ls -l /run/current-system/sw/bin/run-pixiecore
ls -l /run/current-system/sw/bin/run-pixiecore | get target.0 | open $in
ls /nix/store/m9j4rark32jdpigzdwdpj1q9w9l70230-nixos-system-pump-25.05.20241229.88195a9/init
ls /nix/store/m9j4rark32jdpigzdwdpj1q9w9l70230-nixos-system-pump-25.05.20241229.88195a9/init/
ls /nix/store/m9j4rark32jdpigzdwdpj1q9w9l70230-nixos-system-pump-25.05.20241229.88195a9/init
cat /nix/store/m9j4rark32jdpigzdwdpj1q9w9l70230-nixos-system-pump-25.05.20241229.88195a9/init
run-pixiecore
ssh -i ~/.ssh/id_ed25519_sk 192.168.178.44 -p 2222 -vvv
vi /etc/resolv.conf
ip
ip a
ip route
sudo -E vi /etc/resolv.conf
run-pixiecore
rm tmp/tabbed-surf.xid
pass show personal/home-admin
vis
cd /nix-config/
gitu
git status
git diff
git add .
git commit -m 'fix netboot'
ls init/
rm ~/tmp/tabbed-surf.xid
git rm --cached init*
git rm --cached kernel*
ls
rm init* kernel*
ls
rm result
ls
git status
git add .
git commit --amend
git stash pop
git status
vis flake.nix
git diff
git stash clear
git diff
vis flake.lock
git diff
git clean -fd
ls
git reset --hard
ls
git pull
ls
curl -LO larbs.xyz/larbs.sh
vis larbs.sh
mv larbs.sh ~/larbs.sh
cd ~
ls
ls larbs.sh
cd /nix-config/
git pull
git log
git pull --rebase
vi
git branch --set-upstream-to=origin/master master
git pull --rebase
git diff
vis mut/ghostty/config
git rebase --continue
git add mut/ghostty/config
git status
git rebase --continue
git push
vis
mv ~/.config/vis ~/vis.bu
just
nix-shell -p just
ls ~/.config/
ls ~/.config/nvim
ls -l ~/.config
s
sudo nixos-rebuild switch --flake /nix-config --impure
vis flake.nix
ls mut/vis/
ls mut/vis/vis-editorconfig/
ls ~/.config/vis/
ls -l ~/.config/vis
ls -l ~/.config
ls
surfraw
ls
bash
ls
which sh
readlink sh
readlink /etc/profiles/per-user/ivi/bin/sh
realpaht /nix/store/gh3ri50y5k7mjmvxz4ncllb4xqjj3nhp-home-manager-path/bin/sh
realpath /nix/store/gh3ri50y5k7mjmvxz4ncllb4xqjj3nhp-home-manager-path/bin/sh
surf
ls .local/bin/dmenu
vis .local/bin/dmenu
rm .local/bin/dmenu
wget https://raw.githubusercontent.com/LukeSmithxyz/LARBS/master/static/progs.csv
ls
git status
cd /nix-config/
cd pnsh
vis progs.csv
git add progs.csv
git status
gs
git commit -m 'add progs.csv'
git log
git push
virt-admin
virt-viewer
cd /nix-config/
cd mut/vis
ls
touch Makefile
ls
vis Makefile
vis larbs.sh
ls /run/secrets/
sudo su
ls Downloads/
ls Downloads | sort
ls Downloads
ls Downloads | sort-by modified
cd Downloads/
ls Downloads | sort-by modified
ls | sort-by modified
ls | sort-by --reverse modified
cd
ls
cd /nix-config/
ls
vis secrets/root.yaml
ls -al
vis .sops.yaml
vis machines/pump-netboot.nix
cd ~/.config
ls age
ls
cd -
vis machines/pump-netboot.nix
ls ~/sync/
ls ~/sync/my/
ls ~/.config/
ls ~/.config/sops/age/
cat /home/ivi/.config/sops/age/keys.txt
vis machines/pump-netboot.nix
vis profiles/homeserver/transmission.nix
run-pixiecore
ssh 192.168.178.44
TERM=xterm ssh 192.168.178.44
sudo su
cd /nix-config/
nix shell
cd /nix-config/
nix repl
vis flake.nix
nix repl
nix flake --help
nix flake lock
nix repl
vis flake.nix
nix repl
vis flake.nix
rg sops-nix
vis profiles/core/secrets.nix
nix repl
vis profiles/netboot/system.nix
cd /nix-config/
ls
cat .sops.yaml
ls /run/secrets.d/
sudo su
age
ls
cat pump
ls
age
age-keygen -o pump-age-keys.txt
cd /nix-config/
vis ~/.config/sops/age/keys.txt
cat ~/pump-age-keys.txt
vis .sops.yaml
age
sops -h
sops -h | less
sops -r
sops -r ./secrets/*
sops -r ./secrets/**/*
./secrets/**/* | each {|f| sops -r $f.name }
ls ./secrets/**/* | each {|f| sops -r $f.name }
ls ./secrets/**/*
ls ./secrets/**/* | where type == file | each {|f| sops -r $f.name }
ls ./secrets/**/* | where type == file | each {|f| sops -r -i $f.name }
git status
git add secrets
git status
sops ./secrets/porkbun
vis ./secrets/porkbun
cat .sops.yaml
sops -h | less
ls ./secrets/**/* | where type == file | each {|f| sops updatekeys -r -i $f.name }
ls ./secrets/**/* | where type == file | each {|f| sops updatekeys -i $f.name }
ls ./secrets/**/* | where type == file | each {|f| sops updatekeys $f.name }
git status
vis ./secrets/porkbun
sops ./secrets/porkbun
ls ./secrets/**/* | where type == file | each {|f| sops updatekeys $f.name }
vis /nix-config/secrets/root.yaml
sops updatekeys
sops updatekeys ./secrets
ls ./secrets/**/* | where type == file | each {|f| sops updatekeys $f.name }
vis /nix-config/secrets/serber/ivi
git log
git clean -fd ./secrets/
git status
git rm --cached ./clean
git diff
git diff --cached
git status
ls ./secrets/**/* | where type == file | each {|f| git restore --stage $f.name }
git status
git clean -fd ./secrets/
git status
git reset --hard ./clean
ls ./secrets/**/* | where type == file | each {|f| git restore $f.name }
git status
ls ./secrets/**/* | where type == file | each {|f| sops updatekeys $f.name }
git status
vis /nix-config/secrets/serber/ivi
vis .sops.yaml
vis /nix-config/secrets/porkbun
sops updatekeys ./secrets/porkbun
sops -h
sops -h | less
bash
git status
git add secrets
git commit -m 'sops updatekeys'
git log
git push
TERM=xterm ssh 192.168.178.44
sed /192.168.178.44/d ~/.ssh/known_hosts
sed -i /192.168.178.44/d ~/.ssh/known_hosts
run-pixiecore
cd
cat pump-age-keys.txt
TERM=xterm ssh 192.168.178.44
vis /nix-config/profiles/homeserver/
vis /nix-config/profiles/homeserver/nginx.nix
sudo nixos-rebuild switch --flake /nix-config --impure
ssh 192.168.178.44
pass show personal/zpool
TERM=xterm ssh 192.168.178.44
sed -i /192.168.178.44/d ~/.ssh/known_hosts
run-pixiecore
TERM=xterm ssh 192.168.178.44
vis /nix-config/profiles/homeserver/transmission.nix
sudo nixos-rebuild switch --flake /nix-config --impure
run-pixiecore
pass show personal/zpool
cat pump-age-keys.txt
TERM=xterm ssh 192.168.178.44
sed -i /192.168.178.44/d ~/.ssh/known_hosts
virt-manager
pass show personal/zpool
cat pump-age-keys.txt
cd /nix-config/
ls
vis profiles/homeserver/transmission.nix
vis machines/pump-netboot.nix
grep -rn docker .
grep -rn rootless .
vis profiles/homeserver/transmission.nix
TERM=xterm ssh 192.168.178.44
cd /nix-config/
vis profiles/homeserver/transmission.nix
sudo nixos-rebuild switch --flake /nix-config --impure
run-pixiecore
pass show personal/zpool
cat pump-age-keys.txt
cd
cat pump-age-keys.txt
ssh 192.168.178.44
TERM=xterm ssh 192.168.178.44
sed -i /192.168.178.44/d ~/.ssh/known_hosts
cat pump-age-keys.txt
curl 192.168.178.44:9091
curl -f 192.168.178.44:9091
curl -4 http://192.168.178.44:9091
curl - http://192.168.178.44:9091
curl http://192.168.178.44:9091
TERM=xterm ssh 192.168.178.44
cd /nix-config/
vis profiles/homeserver/transmission.nix
curl http://192.168.178.44:8096
curl -L http://192.168.178.44:8096
ip a
TERM=xterm ssh 192.168.178.44
cd /var/lib/libvirt/images/
ls
sudo su
ssh 192.168.122.158
ssh root@192.168.122.158
ssh ivi@192.168.122.159
TERM=xterm ssh ivi@192.168.122.159
cd /nix-config/
ls
mv ~/larbs.sh .
ls
mv larbs.sh mvbs.sh
vis larbs.sh
ssh ivi@192.168.122.159
TERM=xterm ssh ivi@192.168.122.159
TERM=xterm ssh ivi@192.168.122.159 < /nix-config/mvbs.sh
open /nix-config/mvbs.sh | TERM=xterm ssh ivi@192.168.122.159
ssh-add ~/.ssh/id_ed25519_sk
ssh-add -L
open /nix-config/mvbs.sh | TERM=xterm ssh root@192.168.122.159
open /nix-config/mvbs.sh | TERM=xterm ssh ivi@192.168.122.159
vis mvbs.sh
TERM=xterm ssh ivi@192.168.122.159
TERM=xterm ssh root@192.168.122.159
open /nix-config/mvbs.sh | TERM=xterm ssh ivi@192.168.122.159
open /nix-config/mvbs.sh | TERM=xterm ssh root@192.168.122.159
bash
ssh-copy-id
TERM=xterm ssh-copy-id root@192.168.122.159
ssh 'root@192.168.122.159'
open /nix-config/mvbs.sh | TERM=xterm ssh root@192.168.122.159
scp /nix-config/mvbs.sh root@192.168.122.159:/opt/installer | TERM=xterm ssh root@192.168.122.159 /opt/installer
scp /nix-config/mvbs.sh root@192.168.122.159:/opt/installer; TERM=xterm ssh root@192.168.122.159 bash /opt/installer
scp /nix-config/mvbs.sh root@192.168.122.159:/opt/installer; TERM=xterm ssh root@192.168.122.159
ls
vi mvbs.sh
vis mvbs.sh
virt-manager
cd /e
cd /nix-config/
grep progs.csv
grep desktop progs.csv
grep -e '^desktop' progs.csv
grep -e '^desktop' -e '^cli' progs.csv
vis progs.csv
ls ~/.config/vis/
cd /nix-config/mut/dwm/
git stuat
git status
cd ../..
vis mut/dwm/dwm.c
git subtree
git subtree push --prefix mut/dwm git@github.com:ivi-vink/dwm.git master
git subtree pull --prefix mut/dwm git@github.com:ivi-vink/dwm.git master
git status
rm mut/vis/Makefile
TERM=xterm ssh root@192.168.122.159
git add .
git commit -m 'fix homeserver and start xbps'
git push
git subtree pull --prefix mut/dwm git@github.com:ivi-vink/dwm.git master
git subtree push --prefix mut/dwm git@github.com:ivi-vink/dwm.git master -f
cd ~
ls
git clone git@github.com:ivi-vink/dwm.git
cp -r /nix-config/mut/dwm dwm
ls dwm
rm -rf dwm/dwm
cp -r /nix-config/mut/dwm/* dwm
ls dwm
cd dwm
git status
git diff
git add .
git commit -m 'fix homeserver and start xbps'
git push
cd /nix-config
ls
rm tmp/tabbed-surf.xid
git clone git@github.com:ivi-vink/vis.git
cd vis
ls
git remote
git remote add upstream git@github.com:martanne/vis.git
git fetch upstream v0.9
git status
git checkout v0.9
git checkout upstream/v0.9
git checkout -b v0.9
git checkout master
git log
git branch -d v0.9
git checkout refs/tags/v0.9
carapace
cd vis
git remote
git fetch upstream v0.9
ssh-add ~/.ssh/id_ed25519_sk
ls
git checkout upstream/refs/tags/v0.9
git checkout upstream/v0.9
git fetch upstream
git reset --hard v0.9
git push -f
git clone git@github.com:ivi-vink/lua.git
cd ..
git clone git@github.com:ivi-vink/lua.git
cd lua/
vis Makefile
man make
vis Makefile
ls
rm Makefile
cd ..
git clone git@github.com:pionative/pnsh.git
cd pnsh/
ls
cd ~/sync/my/
ls
cd ../..
cd lua
cd /nix-config
ls
cd ~/sync/my/
ls
cd
cd ~/sync/my/
ls
cd notes
ls
cd ..
ls
vis Dockerfile.vis
ls
cat Dockerfile.vis
cd lua
ls
curl -L -R -O https://www.lua.org/ftp/lua-5.4.7.tar.gz
ls
tar zxf lua-5.4.7.tar.gz
ls
rm -rf lua-5.4.7/
ls
tar zxf --strip-components 1 lua-5.4.7.tar.gz
tar -zxf --strip-components 1 lua-5.4.7.tar.gz
ls
tar -zxf lua-5.4.7.tar.gz --strip-components 1
ls
rm lua-5.4.7.tar.gz
ls
git add .
git commit -m 'fetch tarball'
sed -i -e 's/^TO_LIB=.*/\0 liblua.so/' Makefile
git diff
sed -i -e 's/^CFLAGS.*/\0 -fPIC/' src/Makefile
git diff
sed -i -e '/^LUA_A=/a LUA_SO= liblua.so' src/Makefile
sed -i -e 's/^ALL_T=.*/\0 $(LUA_SO)/' src/Makefile
git diff
echo >> src/Makefile
^echo >> src/Makefile
bash
git diff
git add .
git commit -m 'patch to also compile shared object'
vis Makefile
man LD_LIBRARY_PATHERR
man LD_LIBRARY_PATH
ls /usr/lib
vis Makefile
virt-manager
ssh-add ~/.ssh/id_ed25519_sk
ssh 'root@192.168.122.159'
ssh 'root@192.168.122.158'
sed -i /192.168.122.158/d ~/.ssh/known_hosts
ssh 'root@192.168.122.158'
eval
ssh-add ~/.ssh/id_ed25519_sk
ssh-agent
$env.SSH_AUTH_SOCK = '/tmp/ssh-XXXXXXeXq31s/agent.30985'
ssh-add ~/.ssh/id_ed25519_sk
cd vis
cd ..
cd lua
ls
git push
ssh-add ~/.ssh/id_ed25519_sk
git push
ls
cd ..
git clone git@github.com:ivi-vink/luarocks.git
cd luarocks/
ls
curl -L -R -O https://luarocks.github.io/luarocks/releases/luarocks-3.11.1.tar.gz
ls
tar -zxf luarocks-3.11.1.tar.gz --strip-components 1
ls
rm luarocks-3.11.1.tar.gz
ls
cat configure
vis ./configure
ls
git add .
git commit -m 'fetch tarball'
git push
scp /nix-config/mvbs.sh /nix-config/progs.csv root@192.168.122.159:/opt/installer; TERM=xterm ssh root@192.168.122.159
scp /nix-config/mvbs.sh /nix-config/progs.csv root@192.168.122.159:/opt/installer; TERM=xterm ssh root@192.168.122.158
scp /nix-config/mvbs.sh /nix-config/progs.csv root@192.168.122.158:/opt/installer; TERM=xterm ssh root@192.168.122.158
ssh 'ivi@192.168.122.158'
scp /nix-config/mvbs.sh /nix-config/progs.csv root@192.168.122.158:/opt/installer; TERM=xterm ssh root@192.168.122.158
scp /nix-config/mvbs.sh /nix-config/progs.csv root@192.168.122.158:/opt; TERM=xterm ssh root@192.168.122.158
vis Dockerfile.vis
cd /nix-config/
git diff
cd
ls
ls larbs.sh
vis larbs.sh
scp /nix-config/mvbs.sh /nix-config/progs.csv root@192.168.122.158:/opt; TERM=xterm ssh root@192.168.122.158
scp /nix-config/mvbs.sh /nix-config/progs.csv root@192.168.122.158:/opt; TERM=xterm ssh root@192.168.122.158
scp /nix-config/mvbs.sh /nix-config/progs.csv root@192.168.122.158:/opt; TERM=xterm ssh root@192.168.122.158 bash
vis mvbs.sh
git add progs.csv
git status
git commit -m 'update progs'
git push
scp /nix-config/mvbs.sh /nix-config/progs.csv root@192.168.122.158:/opt; TERM=xterm ssh root@192.168.122.158
cd /nix-config/
vis mvbs.sh
cd
cd lua/
ls
vi Makefile
git diff
ls
vi src/Makefile
git diff
make
vi src/Makefile
vi
git push
vis
cd /nix-config/
ls
vis mvbs.sh
cd ~
cd lua/
ls
git push
cd -
cd /nix-config/
ls
cd pnsh/
ls
cd /nix-config/
ls
cd sync my
vis mvbs.sh
scp /nix-config/mvbs.sh /nix-config/progs.csv root@192.168.122.158:/opt; TERM=xterm ssh root@192.168.122.158
vi Dockerfile.vis
scp /nix-config/mvbs.sh /nix-config/progs.csv root@192.168.122.158:/opt; TERM=xterm ssh root@192.168.122.158
cd
git add progs.csv
git commit -m 'update progs'
git push
cd /nix-config/
scp /nix-config/mvbs.sh /nix-config/progs.csv root@192.168.122.158:/opt; TERM=xterm ssh root@192.168.122.158
ls
git status
git diff progs.csv
git add progs.csv mvbs.sh
git commit -m 'update progs mvbs.sh'
git push
git status
git diff
cd /nix-config/
git status
vis
vis progs.csv
cd /nix-config/
virt-manager
cd /nix-config/
ssh 'ivi@192.168.122.68'
ssh 'ivi@192.168.122.86'
ssh 'root@192.168.122.86'
ssh 'ivi@192.168.122.86'
LS
ls
ssh 'root@192.168.122.86'
ssh-copy-id
ssh-copy-id 'root@192.168.122.86'
ssh 'root@192.168.122.86'
ssh-agent
$env.SSH_AUTH_SOCK = "/tmp/ssh-XXXXXXiOxnW8/agent.21661"
ssh 'root@192.168.122.86'
TERM=xterm ssh 'root@192.168.122.86'
TERM=xterm scp /nix-config/progs.csv /nix-config/mvbs.sh 'root@192.168.122.86:/opt'
oksh
nix-shell -p oksh
e
vis
cd /nix-config/
git status
tig
rm bash_carapace_completion
ls
git status
vis mut/nushell/config.nu
git diff
git add .
git commit -m 'update progs mvbs.sh'
git push
ls
rm tmp/tabbed-surf.xid
man git
ls
cd /nix-config/
ls
cd
man git clone
mkdir .local/src
cd .local/src/
ls
git clone git@github.com:ivi-vink/dotfiles.git
cd dotfiles/
git checkout -b master --orphan
git checkout -b master --orphan origin
git checkout master --orphan origin
git checkout master --orphan
git checkout -b master --orphan
git checkout -b master --orphan origin/main
git checkout master --orphan origin/main
git checkout --orphan master
git status
git diff
git stat
git stattus
git status
git rm --cached .
git rm -r --cached .
git status
rm -rf *
ls
git status
vis .gitmodules
ls
mkdir -p .local/bin
mkdir .local/bin
cd /nix-config/
ls
ls mut/
cp -r /nix-config/mut/bin/* .local/bin
ls .local/bin
rm .local/bin/hs
rm .local/bin/choose
ls .local/bin
git add .local
git status
rm .gitmodules
vis .gitignore
rm .gitignore
vis .gitconfig
rm .gitconfig
git status
git add .local
git commit -m 'copy bin'
ls
mkdir .config
cp -r /nix-config/mut/aerospace .config
cp -r /nix-config/mut/carapace .config
cp -r /nix-config/mut/dwmblocks .config
cp -r /nix-config/mut/ghostty/ .config
cp -r /nix-config/mut/k9s .config
cp -r /nix-config/mut/neovim/* .config/nvim
mkdir .config/nvim
cp -r /nix-config/mut/neovim/* .config/nvim
ls .config/nvim/
cp -r /nix-config/mut/wal .config
cp -r /nix-config/mut/emacs .config
ls .config/emacs/
cp -r /nix-config/mut/git .config
ls .config/git/
open .config/git/config
vis .config/git/config
cp -r /nix-config/mut/lf .config
ls
|