00:01
jtojnar has joined #nixos-dev
00:04
drakonis has quit [Ping timeout: 276 seconds]
00:04
drakonis has joined #nixos-dev
00:10
Orbstheorem has quit [Ping timeout: 276 seconds]
00:13
Orbstheorem has joined #nixos-dev
00:40
drakonis has quit [Ping timeout: 257 seconds]
00:43
orivej has quit [Ping timeout: 255 seconds]
00:45
drakonis has joined #nixos-dev
00:45
drakonis_ has joined #nixos-dev
00:49
drakonis has quit [Ping timeout: 252 seconds]
02:10
scott has quit [Ping timeout: 258 seconds]
02:10
scott has joined #nixos-dev
02:46
jtojnar has quit [Ping timeout: 258 seconds]
03:38
orivej has joined #nixos-dev
04:46
justanotheruser has quit [Ping timeout: 246 seconds]
05:02
drakonis1 has quit [Quit: WeeChat 2.4]
05:10
orivej has quit [Ping timeout: 258 seconds]
07:05
phreedom has quit [Ping timeout: 256 seconds]
07:13
orivej has joined #nixos-dev
07:26
orivej has quit [Ping timeout: 246 seconds]
08:12
init_6 has joined #nixos-dev
11:29
emily has quit [Remote host closed the connection]
11:30
emily has joined #nixos-dev
11:55
gchristensen has left #nixos-dev ["WeeChat 2.4"]
11:55
gchristensen has joined #nixos-dev
12:27
{^_^} has quit [Remote host closed the connection]
12:31
{^_^} has joined #nixos-dev
12:54
Cale has quit [Ping timeout: 276 seconds]
13:06
Cale has joined #nixos-dev
13:18
justanotheruser has joined #nixos-dev
13:20
orivej has joined #nixos-dev
13:36
emily has quit [Quit: Updating details, brb]
13:37
emily has joined #nixos-dev
13:41
orivej has quit [Ping timeout: 250 seconds]
13:47
<
arianvp >
is /run re-populated on boot?
13:47
<
arianvp >
I want to mount /run as a tmpfs like other distros do, but wonder if stuff will break for nixos
13:47
<
arianvp >
with /run/booted-system and /run/current-system etc
13:50
<
gchristensen >
my /run is a tmpfs, yours isn't?
13:50
<
gchristensen >
polling a few systems, all the /run's are a tmpfs
13:51
psyanticy has joined #nixos-dev
14:03
<
gchristensen >
arianvp: ^
14:07
<
init_6 >
gcc9? o nice new build bugs
14:12
zimbatm has quit []
14:17
zimbatm has joined #nixos-dev
16:21
drakonis has joined #nixos-dev
16:23
drakonis_ has quit [Ping timeout: 250 seconds]
16:28
jtojnar has joined #nixos-dev
16:31
drakonis has quit [Ping timeout: 252 seconds]
17:11
<
thoughtpolice >
Also makes me happy when we can remove gross hacks because upstream fixed them :)
17:14
ckauhaus has quit [Quit: WeeChat 2.4]
17:21
<
etu >
thoughtpolice++ :)
17:21
<
{^_^} >
thoughtpolice's karma got increased to 4
17:39
<
arianvp >
gchristensen: oh They are. Not sure why I thought they weren't. I think I was confused with /tmp
17:42
<
gchristensen >
arianvp: yeah, check out boot.tmpOnTmpfs and boot.cleaneTmpDir
17:42
<
gchristensen >
minus typos of course
17:44
qyliss^work has quit [Quit: bye]
17:44
qyliss^work has joined #nixos-dev
17:48
orivej has joined #nixos-dev
17:52
phreedom has joined #nixos-dev
18:02
orivej has quit [Ping timeout: 250 seconds]
19:09
<
arianvp >
gchristensen: did you look any further into the diff-hook stuff for r13y ?
19:09
<
arianvp >
I remember discussing this a few months back
19:11
<
gchristensen >
no, I haven't gone back to look at the hook
19:11
<
gchristensen >
there are some strange problems with how I run the checker now which causes a lot of failures for no discernable reason
19:14
<
genesis >
i still figuring how to fix that :
19:14
<
genesis >
$ grep rom_path ~/.cap32.cfg
19:14
<
genesis >
rom_path=/nix/store/vzklpxmzhgm8wrnl4m6blrad2jw925il-caprice32-4.5.0/share/caprice32/rom/
19:15
<
genesis >
i wonder if i could put a symlink in /var , and patch software with support to follow it
19:16
<
samueldr >
not sure how caprice32 acts, but I would try patching rom_path= to `rom_path=./roms/`... mirroring how it has ./cart/ ./snap/ etc
19:16
<
genesis >
yes, i fix it with a substitute to $out, but $out change each time, so when you use user config, it broks each update
19:17
<
genesis >
no in fact this path ./cart and so doesn't work
19:17
<
samueldr >
even their /usr/local default seems wrong with regards to how the FHS works
19:18
<
genesis >
yes debian patch it too, but since the path doesn't change, user are not worried in their config
19:18
<
samueldr >
imo the debian patch is as wrong as the /usr/local default
19:19
<
genesis >
i primary think i could fix that with relative path, but they is non standard way to get the binary path and it's a noway to do like that
19:19
<
samueldr >
I would be surprised that ./roms wouldn't work, considering their test suite uses ../../../rom as a value
19:20
<
genesis >
i think it doesn't work but since the value is ignored
19:20
<
genesis >
it took default that is appPath/roms/
19:20
<
samueldr >
unless... ah, I see, roms are the roms of the system, not "a cartridge", and the emulator ships with rom files, I see how it is an issue
19:20
<
genesis >
yeap that's it.
19:20
MichaelRaskin has joined #nixos-dev
19:21
<
genesis >
the 2 last parameters are defaults
19:22
<
genesis >
and btw, conf.getStringValue has no way to figure out relative path
19:23
<
genesis >
so it rely on fopen() to do so, and so it's relative to CWD
19:23
<
samueldr >
yeah, I misunderstood roms to be carts, there
19:23
<
genesis >
the easyest would really be to have a non variable path
19:23
<
samueldr >
I guess the solution here is patching the source so the default, when rom_path is empty, works, and then patch the rom_path in the sample config as an empty value
19:25
<
genesis >
hum fix that in such a config.h to a compiletime substitution, leading me to set to $out ?
19:25
<
samueldr >
I guess it's up to you
19:26
<
genesis >
thanks for hepl
19:26
<
genesis >
and btw i've PR a XDG support for it.
20:12
psyanticy has quit [Quit: Connection closed for inactivity]
21:39
chrisaw has quit [*.net *.split]
21:39
cocreature has quit [*.net *.split]
21:39
vdemeester has quit [*.net *.split]
21:39
flokli has quit [*.net *.split]
21:39
layus has quit [*.net *.split]
21:41
srk has quit [Ping timeout: 250 seconds]
21:43
nwspk has quit [*.net *.split]
21:43
Irenes has quit [*.net *.split]
21:43
fadenb has quit [*.net *.split]
21:43
NinjaTrappeur has quit [*.net *.split]
21:43
garbas has quit [*.net *.split]
21:44
srk has joined #nixos-dev
22:07
vdemeester has joined #nixos-dev
22:07
chrisaw has joined #nixos-dev
22:07
cocreature has joined #nixos-dev
22:08
fadenb has joined #nixos-dev
22:08
Irenes has joined #nixos-dev
22:08
nwspk has joined #nixos-dev
22:08
garbas has joined #nixos-dev
22:09
NinjaTrappeur has joined #nixos-dev
22:09
drakonis has joined #nixos-dev
22:14
jtojnar has quit [Remote host closed the connection]
22:15
jtojnar has joined #nixos-dev
22:49
phreedom has quit [Remote host closed the connection]
22:50
phreedom has joined #nixos-dev
22:58
nocent has quit [Ping timeout: 264 seconds]
23:01
phreedom_ has joined #nixos-dev
23:04
orivej has joined #nixos-dev
23:04
phreedom has quit [Ping timeout: 256 seconds]
23:24
Orbstheorem has quit [Ping timeout: 250 seconds]
23:26
Orbstheorem has joined #nixos-dev
23:32
flokli has joined #nixos-dev