justanotheruser has quit [Ping timeout: 240 seconds]
orivej has joined #nixos-dev
justanotheruser has joined #nixos-dev
justanotheruser has quit [Ping timeout: 268 seconds]
orivej has quit [Ping timeout: 265 seconds]
justanotheruser has joined #nixos-dev
mmlb87 has joined #nixos-dev
mmlb8 has quit [Ping timeout: 264 seconds]
drakonis has quit [Quit: WeeChat 2.6]
jonringer has joined #nixos-dev
orivej has joined #nixos-dev
jonringer has quit [Ping timeout: 240 seconds]
jonringer has joined #nixos-dev
FRidh has joined #nixos-dev
jonringer has quit [Ping timeout: 252 seconds]
kreisys has joined #nixos-dev
ckauhaus has joined #nixos-dev
kreisys has quit [Read error: Connection reset by peer]
kreisys has joined #nixos-dev
burkelibbey has joined #nixos-dev
burkelibbey has quit [Remote host closed the connection]
__monty__ has joined #nixos-dev
burkelibbey has joined #nixos-dev
MichaelRaskin has quit [Quit: MichaelRaskin]
ixxie has joined #nixos-dev
asymmetric has quit [Quit: Peace.]
asymmetric has joined #nixos-dev
pie_ has joined #nixos-dev
ixxie has quit [Ping timeout: 240 seconds]
dpausp has joined #nixos-dev
dpausp has left #nixos-dev ["WeeChat 2.6"]
emily has quit [Remote host closed the connection]
emily has joined #nixos-dev
burkelibbey has quit [Quit: Connection closed for inactivity]
<clever>
niksnut: is there an existing routine to serialize a PathSet?
<clever>
oh, maybe just readStrings<PathSet> ?
<clever>
that compiles
burkelibbey has joined #nixos-dev
jonringer has joined #nixos-dev
aristid_ has quit [Ping timeout: 245 seconds]
aristid_ has joined #nixos-dev
ixxie has joined #nixos-dev
kreisys has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
drakonis has joined #nixos-dev
kreisys has joined #nixos-dev
burkelibbey has quit [Quit: Connection closed for inactivity]
ciil has quit [Remote host closed the connection]
<clever>
niksnut: stuck on a weird tPath corruption issue
<disasm>
niksnut: what needs do to get 19.09 amis?
harrow has quit [Ping timeout: 265 seconds]
ivan has quit [Ping timeout: 268 seconds]
harrow has joined #nixos-dev
ivan has joined #nixos-dev
<niksnut>
disasm: we need to run the upload script
<niksnut>
I think the AMIs are built by hydra now
<niksnut>
for ARM even
orivej has quit [Ping timeout: 264 seconds]
burkelibbey has joined #nixos-dev
<disasm>
niksnut: who runs it? Is that you?
<disasm>
also, I've heard virtualbox hasn't been updated yet either. Not sure if that's a similar process or not.
<niksnut>
disasm: me or rob or aminechikhaoui
<disasm>
thanks!
<niksnut>
can you make an issue about it and ping us on it?
<disasm>
niksnut: you want that in nixpkgs repo or elsewhere?
kreisys has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
pie_ has quit [Ping timeout: 240 seconds]
orivej has joined #nixos-dev
orivej has quit [Ping timeout: 240 seconds]
FRidh has quit [Quit: Konversation terminated!]
tilpner has quit [Quit: tilpner]
tilpner has joined #nixos-dev
burkelibbey has quit [Quit: Connection closed for inactivity]
dpausp has joined #nixos-dev
dpausp has quit [Ping timeout: 276 seconds]
tilpner has quit [Quit: tilpner]
dongcarl has joined #nixos-dev
<dongcarl>
Hi all, I wanna modify an existing service in NixOS and upstream the changes. After I clone the repo and make the changes, is it possible to test locally?
<dongcarl>
(basically... how do I get a sane setup for contributing to Nix)
justanotheruser has quit [Ping timeout: 240 seconds]
burkelibbey has joined #nixos-dev
ixxie has quit [Quit: Lost terminal]
<infinisil>
dongcarl: I usually write a `config.nix` with the nixos configuration I want to test, then `nixos-rebuild build-vm -I nixpkgs=$PWD -I nixos-config=$PWD/config.nix` for a VM or just `nix-build nixos --arg configuration ./config.nix -A system` to make sure a system builds
<dongcarl>
infinisil: What I mean is modifying an existing service, in place in the NixOS repo, and testing that if that makes sense?
<infinisil>
Yeah that's what I understood I think, do some changes in nixpkgs modules, then test them with above commands and a config that uses them
<dongcarl>
infinisil: Ah I see! the `nixpkg=` flag is what points to the repo!
<infinisil>
dongcarl: Indeed :)
<dongcarl>
infinisil: After your PR #45470, the proper way to modify the port for ZNC is to change `services.znc.Listener.l.Port`?