andi- changed the topic of #nixos to: NixOS stable: 19.09 \o/ https://discourse.nixos.org/t/nixos-19-09-release/4306/2 || https://nixos.org || Latest NixOS: https://nixos.org/nixos/download.html || Latest Nix: https://nixos.org/nix/download.html || Logs: https://logs.nix.samueldr.com/nixos/ || #nixos-dev, #nix-darwin, #nixos-aarch64, #nixos-chat, #nixcon ... nixcon videos: https://tinyurl.com/nixcon2019 || For best support,
fusion809 has joined #nixos
mexisme has joined #nixos
<{^_^}> [nixpkgs] @Infinisil pushed commit from @Frostman to release-19.09 « iperf3: fix compilation to support authentication creds »: https://git.io/JvTnZ
cosimone has quit [Ping timeout: 245 seconds]
Palpares has quit [Ping timeout: 240 seconds]
ambro718 has quit [Quit: Konversation terminated!]
<gchristensen> anyone have a working shell.nix for hacking on ZFS?
Palpares has joined #nixos
<noonien> can anyone point me to a project that uses nix to build multiple sub-projects?
NoctisLabs has joined #nixos
<infinisil> noonien: Here's my bachelor thesis project which does that :) https://github.com/infinisil/arvy
<noonien> oh, great!
<noonien> from what i can tell, this is pretty simple nix project, just building derivation, with no configuration options
<noonien> this is how i'm going to start also, but i think i'll need configuration at some point
mbrgm_ has joined #nixos
<infinisil> What kind of configuration?
mbrgm has quit [Ping timeout: 260 seconds]
mbrgm_ is now known as mbrgm
<{^_^}> [nixpkgs] @jb55 opened pull request #77853 → spotifyd: enable dbus features, fix playback issues → https://git.io/JvTna
<noonien> hmm, currently, i have at least debug and cross-compiled build, this is simple enough to just create separate derivations
<noonien> but i might need more combinations, maybe the ability to preconfigure certain bits of packages (such as the debug level, etc)
mexisme_ has joined #nixos
<infinisil> noonien: I'd do that with some function arguments in default.nix
<noonien> and pass them to `nix-build`?
<evanjs> So when nix operations say “may run out of memory” is there a certain limit in mind here?
<infinisil> noonien: If needed yeah
mexisme has quit [Ping timeout: 245 seconds]
<infinisil> noonien: E.g. nix-build --arg debug true
<noonien> interesting
<infinisil> evanjs: I think it might be the amount of memory needed to hold the whole serialization of the imported path in memory
<gchristensen> yea
<infinisil> evanjs: Question regarding broot, are you using it with zsh?
<noonien> i tried using broot (with zsh afaik), caused my terminals to hang
<infinisil> I'm asking because the br alias to broot is not available, only the completions for it
<infinisil> I think the nix build might need a br -> broot symlink
<infinisil> But it might just be my zsh config, so I'd like to know if the `br` alias works for evanjs, if they're using zsh
<noonien> is there a way to disable nix-env?
<infinisil> alias nix-env="echo nope!" :P
<noonien> :D
aasg has joined #nixos
m0rphism has quit [Ping timeout: 272 seconds]
bastion-tester has quit [Ping timeout: 252 seconds]
AluisioASG has quit [Read error: Connection reset by peer]
bastion-tester has joined #nixos
kwork has quit [Read error: Connection reset by peer]
jonreeve[m] has quit [Ping timeout: 252 seconds]
Irenes[m] has quit [Ping timeout: 252 seconds]
inf has quit [Ping timeout: 252 seconds]
megfault has quit [Ping timeout: 252 seconds]
dbe has quit [Ping timeout: 252 seconds]
dbe has joined #nixos
megfault has joined #nixos
<noonien> what is nixpkgs.config? can i set options on it from my packages?
inf has joined #nixos
o1lo01ol1o has joined #nixos
<infinisil> Yeah sure, but how to do it depends where your packages are defined
shibboleth has joined #nixos
o1lo01ol1o has quit [Ping timeout: 268 seconds]
<noonien> ah, the `config` available to packages is what's provided when importing nixpkgs
<{^_^}> [nixpkgs] @ianmjones opened pull request #77854 → onedrive: 2.3.12 -> 2.3.13 → https://git.io/JvTnb
<noonien> `import <nixpkgs> { config = foo; }`
takeda has quit [Ping timeout: 272 seconds]
kvda has quit [Ping timeout: 240 seconds]
<infinisil> evanjs: Oh, I just realized, in your https://github.com/NixOS/nixpkgs/pull/77415 you added the shell completions, but not the br shell function
<{^_^}> #77415 (by evanjs, 6 days ago, merged): broot: 0.10.2 -> 0.11.8
<infinisil> I was confusing those
justanotheruser has quit [Quit: WeeChat 2.6]
justanotheruser has joined #nixos
<noonien> so i could pass a configuration set where i instantiate nixpkgs, and use callPackage to instantiate my packages
kvda has joined #nixos
<infinisil> noonien: What are you trying to do exactly?
erictapen has quit [Ping timeout: 272 seconds]
erictapen has joined #nixos
<{^_^}> [nixpkgs] @kalbasit merged pull request #77848 → corerad: 0.1.4 -> 0.1.8 → https://git.io/JvTOl
<{^_^}> [nixpkgs] @kalbasit pushed commit from @mdlayher to master « corerad: 0.1.4 -> 0.1.8 (#77848) »: https://git.io/JvTnh
<noonien> exploring atm, but i'll be using nix to build a pretty big multi-language project, that also requires cross compilation, some projects need specific configuration values based on where they'll be deployed (not just target platforms, but different configuration values)
domogled has quit [Ping timeout: 268 seconds]
<noonien> i'll have a few configuration-foo.nix for the most common builds though
Guest92090 has quit [Ping timeout: 272 seconds]
<noonien> each language has its own dependency manager, build system, it gets tiresom
<evanjs> infinisil: don’t worry, so was I, like for the duration of the PR 😂 I’d like to add the shell functions, too, though. Or rather, get hm to source them from the repo, etc
<infinisil> I'm currently looking into extracting the shell functions from the source code
<infinisil> With some sed magic :)
<noonien> and i've tried most other build systems, from fac,tup to meson and bazel, each failing in different ways, i don't know why i haven't thought of nix earlier
waleee-cl has quit [Quit: Connection closed for inactivity]
<evanjs> I mean we could just do that too haha. Sorta wish they were just in a resource file and `include_str!()`ed in the source but blah. I should make a PR for that...
jgeerds__ has quit [Ping timeout: 272 seconds]
<infinisil> evanjs: Hm there doesn't seem to be a standard path for zsh functions to source
<infinisil> Only for completions
<infinisil> Guess I'll put it in $out/share/broot/br
<infinisil> Guess I'll put it in $out/share/broot/zsh/br
chagra_ has quit [Ping timeout: 265 seconds]
<infinisil> Btw I recently learned sed, and damn this sure is nice, once you really understand how it works
<infinisil> Previously I just copied sed invocations from elsewhere
lovesegfault has joined #nixos
<lovesegfault> How do I use nix why-depends?
<infinisil> lovesegfault: --help
<lovesegfault> I have a local pkg foo.bar, I am trying to do nix why-depends -f foo.nix foo.bar nixpkgs.ghc
<lovesegfault> But it complains nixpkgs.ghc doesn't exist
<clever> lovesegfault: you can give why-depends store paths
<clever> lovesegfault: nix why-depends /nix/store/foo /nix/store/ghc
<lovesegfault> :O
Rusty1 has quit [Remote host closed the connection]
<clever> thats the main way i use it
<infinisil> Yeah same
<lovesegfault> How do I find the path for ghc?
turona has quit [Ping timeout: 272 seconds]
sigmundv has joined #nixos
<clever> lovesegfault: `du -hc --max=0 $(nix-store -qR ./result) | sort -h`
kvda has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<clever> lovesegfault: then nix why-depends ./result /nix/store/ghc
<{^_^}> [nixpkgs] @dtzWill merged pull request #77746 → nnn: 2.8.1 -> 2.9 → https://git.io/JvUCL
<{^_^}> [nixpkgs] @dtzWill pushed 3 commits to master: https://git.io/JvTcI
<lovesegfault> Sweet :)
<lovesegfault> Does it work for transient deps too?
dkibi has quit [Ping timeout: 258 seconds]
<clever> lovesegfault: yep
<lovesegfault> Sweeeet
<lovesegfault> thanks :)
<infinisil> An fzf command for that would be nice
<lovesegfault> clever: Do you pin nixpkgs in your config?
<{^_^}> [nixpkgs] @worldofpeace merged pull request #77407 → protonvpn-cli-ng: init at 2.2.0 → https://git.io/JvvzV
<{^_^}> [nixpkgs] @worldofpeace pushed 2 commits to master: https://git.io/JvTcY
<infinisil> evanjs: Ohh, broot --print-shell-function=zsh
kvda has joined #nixos
turona has joined #nixos
<clever> lovesegfault: for most nixos systems, i dont, hydra is just configured to build from the channels, so things are pre-built, and i know if its going to work or not before i `nix-channel --update`
Guest92090 has joined #nixos
<lovesegfault> I really need to set Hydra up...
kleisli has joined #nixos
<lovesegfault> Idk why the hell I'm building with only 1 core on my aarch64 builder
<lovesegfault> (by which I mean one job is using only one core)
<lovesegfault> Is parallelize set to off for ghc?
<clever> lovesegfault: what does `nix show-config | grep cores` report?
<lovesegfault> clever: cores = 0
<clever> then it will use whatever nproc reports, if enableParallelBuilding is set on the drv
<lovesegfault> clever: Wait, should I have run that on my x86_64 host or on the aarch64 builder?
<clever> on the builder
<lovesegfault> Also 0 on the builder
<clever> same answer then
<lovesegfault> clever: enableParallelBuilding is not enabled, but is also not disabled
<clever> its off by default
<clever> a derivation has to opt-in
<lovesegfault> It's pkgs/development/compilers/ghc/8.2.2-binary.nix
logzet_ has joined #nixos
logzet has quit [Ping timeout: 260 seconds]
<lovesegfault> Ah, maybe the default.nix enables it?
<clever> thats just patchelf'ing a ghc i believe
<evanjs> infinisil: oh yeah derp that would work. wasn't sure if running programs we're installing is typically good practice haha
kleisli has quit [Ping timeout: 260 seconds]
<evanjs> infinisil: also assuming you've seen skim vs fzf :P honestly though i don't know how well it compares.
<evanjs> and sweet I was waiting for a commit like that. Now we can shut it up on install!
<infinisil> evanjs: Hm it wouldn't work very well in a nix build because it's not the users HOME
werner291 has quit [Remote host closed the connection]
<infinisil> But yeah the shell functions are available through that
h0m1 has quit [Quit: WeeChat 2.7]
<infinisil> evanjs: I just posted a suggestion too: https://github.com/Canop/broot/issues/148#issuecomment-575420433
kvda has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
erictapen has quit [Ping timeout: 258 seconds]
h0m1 has joined #nixos
nikivi has quit [Quit: Free ZNC ~ Powered by LunarBNC: https://LunarBNC.net]
<lovesegfault> Eh
<lovesegfault> How do I know what nix-build is currently building?
<lovesegfault> it's not always (or usually) clear?
<clever> lovesegfault: my trick is `ls -ltrh /tmp/`
<infinisil> lovesegfault: I recommend nix-top
sigmundv has quit [Ping timeout: 240 seconds]
myskran has joined #nixos
nikivi has joined #nixos
<evanjs> infinisil++ and ++ for nix-top
<{^_^}> infinisil's karma got increased to 192
myskran has quit [Ping timeout: 268 seconds]
<samueldr> nix-top is basically a fancy wrapper over top clever's ls :)
erasmas has quit [Quit: leaving]
tdeo has quit [Remote host closed the connection]
tdeo has joined #nixos
tdeo has joined #nixos
tdeo has quit [Changing host]
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage-packages.nix: automatic Haskell package set update »: https://git.io/JvTcz
Rusty1 has joined #nixos
<lovesegfault> infinisil++ clever++
<{^_^}> clever's karma got increased to 305, infinisil's karma got increased to 193
<notgne2> is there any less-minimal 32bit NixOS ISO
<notgne2> I'm trying to install on a laptop but I cannot get wifi working
lovesegfault has quit [Ping timeout: 272 seconds]
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/9f267be72c2 (from 4 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
<infinisil> notgne2: You can build your own iso relatively easily: https://nixos.wiki/wiki/Creating_a_NixOS_live_CD
<infinisil> If you have nix installed that is
thc202 has quit [Ping timeout: 260 seconds]
swflint has quit [Quit: ZNC - http://znc.in]
<notgne2> I'm not sure how or if it's even possible to cross compile it infinisil
<notgne2> I have no 32bit NixOS machines (yet)
<clever> for 32bit x86, you dont need a cross compiler
<clever> 64bit x86 can run 32bit x86 just fine
<clever> just use i686-linux instead of x86_64-linux in the build command
swflint has joined #nixos
mDuff has quit [Ping timeout: 268 seconds]
<notgne2> clever: not sure where to specify that, is it a nix-build flag?
<{^_^}> [nixpkgs] @marsam merged pull request #77789 → kind: 0.6.1 -> 0.7.0 → https://git.io/JvUK1
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JvTc9
<clever> notgne2: for the cmd in the wiki, you want `--argstr system i686-linux`
<{^_^}> [nixpkgs] @marsam merged pull request #77533 → fuse-overlayfs: 0.7.2 -> 0.7.3 → https://git.io/JvfR4
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JvTcd
zeta_0 has joined #nixos
wildtrees has quit [Quit: Leaving]
kleisli has joined #nixos
<notgne2> looks like that actually failed to build, I'll double check with the minimal config to see if that works
gustavderdrache has quit [Quit: Leaving.]
<clever> notgne2: how did it fail?
<notgne2> lots of chained failures but I think `builder for '/nix/store/54fhgwxkvjp4bk9chfpj2mklc67lh9yv-compiler-rt-7.1.0.drv' failed to produce output path '/nix/store/9yz8dnwz88cyxfjcaa599i1nc7dlsimc-compiler-rt-7.1.0'`
<notgne2> minimal builds fine
<notgne2> maybe this is why there is no 32bit graphical ISO on the website
<clever> notgne2: run `nix-store -r /nix/store/54fhgwxkvjp4bk9chfpj2mklc67lh9yv-compiler-rt-7.1.0.drv` to repeat that build
<clever> notgne2: then you should see the real error more clearly
<clever> notgne2: its only generating a $dev and not a $out
<clever> notgne2: you should build the 64bit version, and see what is supposed to be in $out
kvda has joined #nixos
<notgne2> `:b llvmPackages.compiler-rt` seems to give me both `dev` and `out`, however the `dev` path doesn't seem to exist
<clever> notgne2: you need to build .dev too
<clever> :b llvmPackages.compiler-rt.dev
dozn has quit [Quit: I'm probably just changing some settings or have had an outage, I'll be back soon.]
<clever> when fetching from the binary cache, it can skip un-needed (or un-requested) outputs
kvda has quit [Client Quit]
<notgne2> already tried that, it seems to give me the same 2 outputs
dozn has joined #nixos
<clever> notgne2: try with nix-build -A instead?
<notgne2> clever: I'm not sure how to do it with `nix-build -A` but I did `nix-build -E '(import <nixpkgs> {}).llvmPackages.compiler-rt.dev'` and it worked and gave me a working output
<notgne2> so it builds both on 64bit just fine
<evanjs> as before, adding myself to "inputs" seems to get my touchpad working again, but it's way too fast and scrolling is slow. No idea how it got in this state again. on 20.03 atm but I believe it happened with 19.09 as well
<{^_^}> [nixpkgs] @marsam merged pull request #77663 → skypeforlinux: 8.55.0.123 -> 8.55.0.141 → https://git.io/JvJ1C
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JvTCm
<infinisil> notgne2: You using 19.09?
<notgne2> yes
Soo_Slow has quit [Quit: Soo_Slow]
<clever> notgne2: nix-build '<nixpkgs>' -A llvmPackages.compiler-rt.dev
<clever> notgne2: what files are in the $out ?
dhess has quit [Ping timeout: 245 seconds]
<clever> notgne2: and then check the build log for the 32bit system, is it creating similar files? did they wind up in the $dev?
dhess has joined #nixos
<dongcarl> Hi all, probably obscure question but... I want to get a list of my acme renewal timer systemd unit names
<dongcarl> Because they all Want some other unit, and they all run After it
<dongcarl> Any way to express that programmatically in nix?
h0m1 has quit [Ping timeout: 260 seconds]
h0m1 has joined #nixos
kvda has joined #nixos
evils has joined #nixos
dozn has quit [Quit: I'm probably just changing some settings or have had an outage, I'll be back soon.]
dozn has joined #nixos
<{^_^}> [nixpkgs] @kalbasit merged pull request #77700 → topgrade: fix, add darwin Foundation framework → https://git.io/JvUJz
<{^_^}> [nixpkgs] @kalbasit pushed 3 commits to master: https://git.io/JvTCz
rogue_koder_ has quit [Ping timeout: 268 seconds]
rogue_koder_ has joined #nixos
dhess_ has joined #nixos
dhess has quit [Ping timeout: 272 seconds]
swflint has quit [Ping timeout: 272 seconds]
morr has quit [Remote host closed the connection]
ptrcmd has quit [Ping timeout: 250 seconds]
ptrcmd has joined #nixos
swflint has joined #nixos
bigvalen has joined #nixos
bigvalen_ has quit [Ping timeout: 248 seconds]
pemeunier has quit [Ping timeout: 250 seconds]
pemeunier has joined #nixos
swflint has quit [Ping timeout: 272 seconds]
lovesegfault has joined #nixos
dhess_ has quit [Ping timeout: 252 seconds]
qubasa has joined #nixos
linuus has joined #nixos
evanjs has quit [Quit: ZNC 1.7.4 - https://znc.in]
swistak35 has quit [Ping timeout: 250 seconds]
wrl has quit [Ping timeout: 250 seconds]
evanjs has joined #nixos
linuus_ has quit [Ping timeout: 248 seconds]
dminuoso_ has quit [Ping timeout: 248 seconds]
wrl_ has joined #nixos
Olgierd has quit [Ping timeout: 250 seconds]
nbp has quit [Ping timeout: 250 seconds]
qubasa_ has quit [Ping timeout: 240 seconds]
Olgierd has joined #nixos
nbp has joined #nixos
swistak35 has joined #nixos
dminuoso has joined #nixos
Neo-- has quit [Ping timeout: 268 seconds]
dongcarl has quit [Quit: The Lounge - https://thelounge.chat]
dhess has joined #nixos
<{^_^}> [nixpkgs] @AndersonTorres opened pull request #77855 → notion: 3-2017050501 -> 3-20200107 → https://git.io/JvTWF
andi- has quit [Ping timeout: 252 seconds]
swflint has joined #nixos
dongcarl has joined #nixos
evanjs has quit [Quit: ZNC 1.7.5 - https://znc.in]
evanjs has joined #nixos
kamadorueda has joined #nixos
cjpbirkbeck has joined #nixos
andi- has joined #nixos
morr has joined #nixos
shibboleth has quit [Quit: shibboleth]
<{^_^}> [nixpkgs] @dtzWill opened pull request #77856 → cbatticon: wrapGAppsHook to fix icon issue in service → https://git.io/JvTlI
dongcarl has quit [Quit: The Lounge - https://thelounge.chat]
alex_giusi_tiri has joined #nixos
<CMCDragonkai> are there lsinitrd or lsinitramfs in nixpkgs?
<simpson> CMCDragonkai: I think that they are provided by dracut, which isn't packaged.
<CMCDragonkai> Is there a reason why dracut isn't available in nixpkgs?
<simpson> Because nobody's packaged it, probably. dracut isn't essential on non-Fedora, and NixOS usually doesn't have an initrd at all, AIUI.
<CMCDragonkai> nixos doesn't have an initrd at all?
<evanjs> there's an initrd haha
<evanjs> boot.initrd.* options, etc
Palpares has quit [Ping timeout: 240 seconds]
<simpson> Oh, nevermind, there's initrd. Not sure how we build it, but I don't think that we use dracut.
<CMCDragonkai> it's just really small initrd
<CMCDragonkai> it's built just using `nixpkgs/pkgs/build-support/kernel`
<CMCDragonkai> which is just cpio and gzip
Palpares has joined #nixos
<simpson> Ah, the classic tools. I haven't used Fedora in a while, but IIRC dracut provides not just tools *outside*, but also tools for *inside* the initrd. What are you working on?
<CMCDragonkai> i want to modify the initrd
<CMCDragonkai> and put stuff in it
<CMCDragonkai> but i dont want the stuff to be inside the /nix/store
<CMCDragonkai> so it has to be done outside the nix expression language
<simpson> Aha, interesting.
<CMCDragonkai> what would it take to package dracut then, or some alternative set of tools
<CMCDragonkai> do you have other suggestions?
<{^_^}> [nixpkgs] @alyssais opened pull request #77857 → Mailman updates → https://git.io/JvTlO
<simpson> I dunno. I looked at https://dracut.wiki.kernel.org/index.php/Main_Page and it looks like there's a git repository and some autotools-ish.
<CMCDragonkai> this is also one of their official repos
<CMCDragonkai> they mirror between the kernel git and that
<lassulus> what about boot.initrd.secrets ?
delli3_ has joined #nixos
<CMCDragonkai> lassulus: that option doesn't exist?
<CMCDragonkai> lassulus: even if it did
<CMCDragonkai> it wouldn't change the problem
<CMCDragonkai> it would end up in nix store
<lassulus> In my understanding it would have just appended it to the initrd which resides on the /boot partition
<lassulus> the option does exist, but its marked as internal
<lassulus> but I never tested it
<CMCDragonkai> how is that any different from `boot.initrd.prepend`
<lassulus> I would have to guess, but maybe the stuff from prepend ends up in the store?
delli3 has quit [Ping timeout: 260 seconds]
<CMCDragonkai> there used to be an autotools setup hook...
<simpson> Hm. I'm reading stage-1.nix to try to grok it. I think that lassulus may be right; certainly a lot of effort appears to have been spent to *try* to not just copy the secrets into the Nix store.
<CMCDragonkai> simpson: if that is true, then you could not use `./pathtosomething` but it would have to be like a string `"./pathtosomething"`
<CMCDragonkai> otherwise nix evaluation will bring that stuff into it
<simpson> Yeah, probably.
<gchristensen> > toString ./.
<{^_^}> "/var/lib/nixbot/state/nixpkgs"
<CMCDragonkai> which bootloaders supports secrets?
<CMCDragonkai> it says unless the bootloader supports it
spacefrogg has quit [Quit: Gone.]
aw has quit [Quit: Quitting.]
<CMCDragonkai> why would a bootloader not support secrets?
aw has joined #nixos
<lassulus> if you have it without a seperate /boot partition it would reside in the /nix/store and secrets would not be supported I guess
<lassulus> so maybe some configurations of grub
spacefrogg has joined #nixos
<CMCDragonkai> ```
<CMCDragonkai> nixos/modules/system/boot/stage-1.nix
<CMCDragonkai> 131: boot.loader.supportsInitrdSecrets = true;
<CMCDragonkai> nixos/modules/system/boot/loader/systemd-boot/systemd-boot.nix
<CMCDragonkai> ♖ ag 'supportsInitrdSecrets' (master) pts/10 14:44:02
<CMCDragonkai> 518: boot.loader.supportsInitrdSecrets = mkOption
<CMCDragonkai> 139: ${optionalString (!config.boot.loader.supportsInitrdSecrets)
<CMCDragonkai> ```
<CMCDragonkai> only 1 bootloader has that set to true
<CMCDragonkai> systemd-boot
<CMCDragonkai> all other ones is false
kapil_ has joined #nixos
alex_giusi_tiri has quit [Quit: Leaving.]
lord| has quit [Quit: https://i.imgur.com/xacQ09F.mp4]
<CMCDragonkai> attempting to package dracut... requires patchShebangs on its configure script, it's not autotools, also requires pkg-config, but cannot find `libkmod`
<CMCDragonkai> Perhaps you should add the directory containing `libkmod.pc'
<CMCDragonkai> Package libkmod was not found in the pkg-config search path.
<CMCDragonkai> to the PKG_CONFIG_PATH environment variable
<CMCDragonkai> No package 'libkmod' found
<CMCDragonkai> dracut needs pkg-config and libkmod >= 23.
<CMCDragonkai> [nix-shell:~/Projects/dracut]$ ./configure
jmeredith has joined #nixos
lord| has joined #nixos
<{^_^}> [nixpkgs] @dtzWill opened pull request #77859 → xlayoutdisplay: 1.1.0 -> 1.1.1 → https://git.io/JvTlN
felixfoertsch has joined #nixos
felixfoertsch23 has quit [Ping timeout: 260 seconds]
tsrt^ has joined #nixos
<CMCDragonkai> my progress building dracut: https://github.com/NixOS/nixpkgs/issues/77858
<{^_^}> #77858 (by CMCDragonkai, 8 minutes ago, open): Packaging dracut
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/2628f20267d (from 2 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
szicari has quit [Ping timeout: 258 seconds]
<{^_^}> [nixpkgs] @dtzWill opened pull request #77860 → elfinfo: 0.7.6 -> 1.0.0 → https://git.io/JvT80
<Ankhers> I am trying to build something and I am getting an error about not being able to find libclang.so. Fair enough, I make a shell.nix with stdenv.mkDerivation and pass llvmPackages.libclang into the buildInputs. I enter the nix-shell and when attempting to build it, I still get the error that it is unable to find libclang.so. The error says I can use LIBCLANG_PATH variable to point to it, but I really do not know how to do that with a nix
<Ankhers> shell. And do I really need to do something like that?
<NoctisLabs> So when a package is installed as a user in configuration.nix, where do I view their place on the filesystem? Basically looking for the user version of /run/current-system
<NoctisLabs> I think I found it, /etc/profiles/per-user?
cjpbirkbeck has quit [Quit: Quitting now.]
ShortFrog has joined #nixos
<{^_^}> [nixpkgs] @veprbl merged pull request #77718 → texlive: touchup documentation → https://git.io/JvU3e
<{^_^}> [nixpkgs] @veprbl pushed commit from @bhipple to master « texlive: touchup documentation (#77718) »: https://git.io/JvT8M
ShortFrog has left #nixos [#nixos]
<{^_^}> [nixpkgs] @dtzWill opened pull request #77861 → sxiv: 25 -> 26, minor cleanup → https://git.io/JvT8d
<CMCDragonkai> if im using wrapProgram/makeWrapper, how do I wrap the script's PATH such that it also points to itself?
mexisme_ has quit [Ping timeout: 260 seconds]
<CMCDragonkai> so it can call a script in the same bin directory/ or even call itself?
NoctisLabs has quit [Quit: WeeChat 2.7]
tjg1 has quit [Quit: DON'T KEEP CALM AND FUCK THIS. FUCK THAT. FUCK YOU. FUCK OFF.]
tjg1 has joined #nixos
<{^_^}> [nixpkgs] @dtzWill opened pull request #77862 → broot: 0.11.8 -> 0.11.9, verifyCargoDeps → https://git.io/JvT4T
NoctisLabs has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #77863 → bashSnippets: 1.17.3 -> 1.23.0 → https://git.io/JvT4L
mexisme_ has joined #nixos
thomashoneyman has joined #nixos
<thomashoneyman> I think I'm fundamentally misunderstanding something about imports
<thomashoneyman> If I use `pkgs.fetchFromGitHub` on something like this: https://github.com/moretea/yarn2nix/blob/9e7279edde2a4e0f5ec04c53f5cd64440a27a1ae/default.nix#L2
<thomashoneyman> then i would expect to be able to something like
<thomashoneyman> `yarn2nix = import (pkgs.fetchFromGitHub { ...url, rev, etc. }) { inherit pkgs; nodejs = pkgs.nodejs-10_x; };`
<{^_^}> [nixpkgs] @dtzWill opened pull request #77864 → lcdf-typetools: init at 2.108 → https://git.io/JvT4c
<thomashoneyman> because the `default.nix` accepts `pkgs` and `nodejs` as arguments
mexisme_ has quit [Ping timeout: 272 seconds]
<thomashoneyman> so if I pass in `nodejs = nodejs-10_x` i would expect Node 10.x.x to be used
<thomashoneyman> and if i pass in `nodejs = nodejs-11_x` then I expect Node 11.x.x to be used
<thomashoneyman> ...if I'm on the right track with that understanding then I must be doing something else wrong
<thomashoneyman> because that's not what i'm seeing
<thomashoneyman> am i misunderstanding what goes in the curly braces for `import`?
<thomashoneyman> is it not arguments to the package i've fetched from GitHub in this instance?
endformationage has quit [Ping timeout: 240 seconds]
tcecil has joined #nixos
takeda has joined #nixos
<wedens[m]> it is
<NoctisLabs> I've installed soundfont-fluid, I see it in the nix store, but I can't actually find it anywhere else in the current running system.
<{^_^}> [nixpkgs] @r-ryantm opened pull request #77865 → bitwarden_rs-vault: 2.12.0 -> 2.12.0b → https://git.io/JvT4g
<wedens[m]> thomashoneyman: I think you should also override "yarn"
Supersonic112 has joined #nixos
Supersonic has quit [Disconnected by services]
Supersonic112 is now known as Supersonic
<tcecil> Hey, noob question: if a package doesn't build using the unstable channel, should I file a ticket?
dsx has quit [Quit: dsx]
kamadorueda has quit [Ping timeout: 260 seconds]
mac10688 has joined #nixos
<ryantm> tcecil: Yes.
kvda has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<DigitalKiwi> tired: file a ticket wired: file a PR :D
kvda has joined #nixos
<tcecil> Haha, ok, thanks!
<thomashoneyman> to verify i'm not going crazy does anyone know how to see what packages a derivation depends on?
<thomashoneyman> there's like a --requisites command or something
<{^_^}> [nixpkgs] @dtzWill opened pull request #77866 → hfsutils: init at 3.2.6-14 → https://git.io/JvT4N
kvda has quit [Client Quit]
<thomashoneyman> ah!
<thomashoneyman> nix-store --query --requisites
<thomashoneyman> ok, weird, doing `import ... { nodejs = pkgs.nodejs-10_x; }` produces the same output as `{ nodejs = pkgs.nodejs-11_x; }` produces the same output as `{ nodejs = nodejs-12_x }`...
<thomashoneyman> that seems like switching it is not having an effect
<thomashoneyman> it's always Node 10 for some reason
<{^_^}> [nixpkgs] @dtzWill opened pull request #77867 → hfsprogs: 332.25 -> 540.1.linux3 → https://git.io/JvTBJ
<{^_^}> [nixpkgs] @CMCDragonkai opened pull request #77868 → WIP: dracut: init at 049 → https://git.io/JvTBT
<keithy[m]> when building in nix repl no output of the build is shown. It is suggested that nix-store -r does show output of build, but it doesnt either, I know it is in the logs, but home all the docs are wrong?
<keithy[m]> including nix-store --help
tcecil has quit [Remote host closed the connection]
takeda has quit [Ping timeout: 258 seconds]
domogled has joined #nixos
<keithy[m]> ref /nix/store/9qgbyi54qgrbcaq6iqd6xm6p67r53rwf-foo.drv
<keithy[m]> * ref /nix/store/9qgbyi54qgrbcaq6iqd6xm6p67r53rwf-foo.drv/nix/store/9qgbyi54qgrbcaq6iqd6xm6p67r53rwf-foo.drv
<{^_^}> nix-pills#106 (by willbush, 48 weeks ago, open): pill 7.2: declare -xp shows no ouput in nix repl
<keithy[m]> * when building in nix repl no output of the build is shown. It is suggested that nix-store -r does show output of build, but it doesnt either, I know it is in the logs, but howclme all the docs are wrong?
<keithy[m]> * when building in nix repl no output of the build is shown. It is suggested that nix-store -r does show output of build, but it doesnt either, I know it is in the logs, but how come all the docs are wrong?
ee194350 has quit [Ping timeout: 240 seconds]
ee194350 has joined #nixos
dckc has quit [Ping timeout: 260 seconds]
dsx has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #77870 → coz: 0.2.0 -> 0.2.1 → https://git.io/JvTBt
kvda has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #77871 → cpp-utilities: 5.0.1 -> 5.1.0 → https://git.io/JvTB3
dckc has joined #nixos
typetetris has quit [Read error: Connection reset by peer]
typetetris has joined #nixos
dani- has quit [Read error: Connection reset by peer]
dani- has joined #nixos
eri has quit [Ping timeout: 260 seconds]
the-kenny has quit [Ping timeout: 268 seconds]
ddellacosta has quit [Ping timeout: 258 seconds]
the-kenny has joined #nixos
dckc has quit [Ping timeout: 260 seconds]
mexisme_ has joined #nixos
dckc has joined #nixos
power-fungus has joined #nixos
domogled has quit [Quit: domogled]
Rusty1 has quit [Quit: Konversation terminated!]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #77872 → epoxy: 1.5.3 -> 1.5.4 → https://git.io/JvTBV
isHavvy has joined #nixos
bvdw has quit [Read error: Connection reset by peer]
Havvy has quit [Ping timeout: 240 seconds]
bvdw has joined #nixos
alexherbo21 has joined #nixos
kvda has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
alex`` has quit [Ping timeout: 240 seconds]
alexherbo2 has quit [Ping timeout: 272 seconds]
alexherbo21 is now known as alexherbo2
kvda has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #77873 → fsmon: 1.5 -> 1.6.1 → https://git.io/JvTBy
alex`` has joined #nixos
orivej has joined #nixos
zeta_0 has quit [Quit: rcirc on GNU Emacs 26.3]
chagra_ has joined #nixos
kvda has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
xensky_ has quit [Ping timeout: 252 seconds]
ebzzry has quit [Ping timeout: 240 seconds]
xensky_ has joined #nixos
drakonis has quit [Quit: WeeChat 2.6]
ebzzry has joined #nixos
<{^_^}> [nixpkgs] @tbenst opened pull request #77874 → <!-- Nixpkgs has a lot of new incoming Pull Requests, but not enough people to review this constant stream. Even if you … → https://git.io/JvTRo
twjt[m] has joined #nixos
<DigitalKiwi> that's an interesting PR title
<{^_^}> [nixpkgs] @r-ryantm opened pull request #77875 → hpx: 1.3.0 -> 1.4.0 → https://git.io/JvTRy
growpotkin has quit [Quit: ZNC 1.7.5 - https://znc.in]
orivej has quit [Ping timeout: 260 seconds]
growpotkin has joined #nixos
NoctisLabs has quit [Quit: WeeChat 2.7]
ee194350 has quit [Ping timeout: 272 seconds]
ebzzry has quit [Ping timeout: 265 seconds]
ee194350 has joined #nixos
<{^_^}> [nixpkgs] @7c6f434c merged pull request #77821 → [19.09] flashplayer: 32.0.0.293 -> 32.0.0.314 → https://git.io/JvUxH
<{^_^}> [nixpkgs] @7c6f434c pushed 2 commits to release-19.09: https://git.io/JvT0J
palo1 has joined #nixos
<{^_^}> [nix] @xzfc opened pull request #3325 → nix-shell: clean up the tmpDir and escape variables → https://git.io/JvT0q
mac10688 has quit [Ping timeout: 260 seconds]
h0m1 has quit [Quit: WeeChat 2.7]
palo has quit [Ping timeout: 260 seconds]
palo1 is now known as palo
h0m1 has joined #nixos
ebzzry has joined #nixos
rauno has quit [Ping timeout: 245 seconds]
kai_w_ has joined #nixos
growpotkin has quit [Quit: ZNC 1.7.5 - https://znc.in]
naivesheep has joined #nixos
human has joined #nixos
page_ has joined #nixos
glasserc_ has joined #nixos
dbe has quit [*.net *.split]
dozn has quit [*.net *.split]
joepie91 has quit [*.net *.split]
manveru has quit [*.net *.split]
CMCDragonkai1 has quit [*.net *.split]
johanot has quit [*.net *.split]
kalbasit has quit [*.net *.split]
jackdk has quit [*.net *.split]
zertox has quit [*.net *.split]
otti0815 has quit [*.net *.split]
johnny101 has quit [*.net *.split]
ciil has quit [*.net *.split]
kai_w has quit [*.net *.split]
alexbakker has quit [*.net *.split]
naominitel has quit [*.net *.split]
Ralith_ has quit [*.net *.split]
mupf has quit [*.net *.split]
awaz has quit [*.net *.split]
SOO7 has quit [*.net *.split]
drewc has quit [*.net *.split]
silver_hook has quit [*.net *.split]
jerryaldrichiii has quit [*.net *.split]
spacekookie has quit [*.net *.split]
lvmond has quit [*.net *.split]
rixed has quit [*.net *.split]
lockshaw has quit [*.net *.split]
bsima has quit [*.net *.split]
nurelin_ has quit [*.net *.split]
naiveshe- has quit [*.net *.split]
lpsmith_ has quit [*.net *.split]
drozdziak1 has quit [*.net *.split]
page has quit [*.net *.split]
umachan has quit [*.net *.split]
kisonecat has quit [*.net *.split]
skatista has quit [*.net *.split]
monokrome has quit [*.net *.split]
hodapp has quit [*.net *.split]
j4m3s__ has quit [*.net *.split]
heath has quit [*.net *.split]
akaWolf has quit [*.net *.split]
superbaloo has quit [*.net *.split]
DigitalKiwi has quit [*.net *.split]
glasserc has quit [*.net *.split]
Athas has quit [*.net *.split]
Enzime has quit [*.net *.split]
Niall has quit [*.net *.split]
freusque has quit [*.net *.split]
kgz has quit [*.net *.split]
clever has quit [*.net *.split]
craige has quit [*.net *.split]
sigtrm has quit [*.net *.split]
wolke has quit [*.net *.split]
acertain has quit [*.net *.split]
immae has quit [*.net *.split]
phI||Ip has quit [*.net *.split]
plp_ has quit [*.net *.split]
juhoh has quit [*.net *.split]
mightybyte has quit [*.net *.split]
johnny101 has joined #nixos
otti0815 has joined #nixos
jlpeters has quit [Ping timeout: 240 seconds]
heatm1s3r has quit [Ping timeout: 268 seconds]
pepesza has quit [Ping timeout: 268 seconds]
jlpeters has joined #nixos
heatm1s3r has joined #nixos
page_ is now known as page
mupf has joined #nixos
<dminuoso> Why is nixos.ghc still 8.6.5? :<
pepesza has joined #nixos
kgz has joined #nixos
<fgaz> I guess some big package cannot build with 8.8 yet
<fgaz> I wish patchelf had a --remove-rpath-element option
<dminuoso> fgaz: Mmm, is that the same attribute that nixpkgs needing GHC pulls in?
<fgaz> instead I have to remove an element from it by ugly string manipulation
<dminuoso> Thing is, I dont build my haskell packages with nix - I just use cabal v2
mexisme has joined #nixos
<fgaz> dminuoso: well you can just use haskell.compiler.ghc881
<fgaz> or soon ghc882 I guess
<{^_^}> [nixpkgs] @r-ryantm opened pull request #77876 → jumpapp: 1.0 -> 1.1 → https://git.io/JvTEJ
<dminuoso> fgaz: Ohh. I see. :)
<fgaz> I too would like the default to be 8.8 but I guess there's a reason it's still 8.6
<dminuoso> fgaz: I dont quite fully understand how the haskell ecosystem in Nix works yet, somehow I thought that the user-usable GHC would be different..
<dminuoso> And the more I think about it, there's absolutely no reason it should be.
<fgaz> nah, it mostly works the same as other distros if you only install cabal+ghc from nix
philr has joined #nixos
<fgaz> if you want to use nix for haskell libraries too then it's another story
<dminuoso> Right
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/39700a65ef7 (from 3 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
thomashoneyman has quit [Quit: Connection closed for inactivity]
olmer has joined #nixos
<{^_^}> [nixpkgs] @Holi0317 opened pull request #77877 → ibus-rime: Init at 1.4.0 → https://git.io/JvTEG
<{^_^}> [nixpkgs] @r-ryantm opened pull request #77878 → labelImg: 1.6.0 -> 1.8.1 → https://git.io/JvTEZ
xkapastel has joined #nixos
<olmer> I need help with installing grub to my efi partition. I had this working before, but I lost the related configuration files. All it does right now is fail to find the disk.
<olmer> If I run strings on EFI/NixOS-efi/grubx64.efi near the end it trees to a search.fs_uuid to a nonexistent UUID.
Makaveli7 has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #77879 → leatherman: 1.9.1 -> 1.10.0 → https://git.io/JvTER
nixnewbie has joined #nixos
<olmer> I have a feeling it should be installing a grub folder onto that partition and that uuid should be of that eff partition. Right now I am booting up via a live USB on unstable and am using nixos-install to test my changes.
remirol has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #77880 → libamqpcpp: 4.1.3 -> 4.1.5 → https://git.io/JvTE2
lorimer has quit [Ping timeout: 240 seconds]
dansho has joined #nixos
m0rphism has joined #nixos
<dansho> ,locate libgmp.so.10
<{^_^}> Found in packages: gmp5, gmpxx, julia, julia_07, julia_11
joepie91 has joined #nixos
dbe has joined #nixos
dozn has joined #nixos
zertox has joined #nixos
jackdk has joined #nixos
ciil has joined #nixos
alexbakker has joined #nixos
clever has joined #nixos
freusque has joined #nixos
DigitalKiwi has joined #nixos
acertain has joined #nixos
naominitel has joined #nixos
lpsmith_ has joined #nixos
heath has joined #nixos
craige has joined #nixos
awaz has joined #nixos
skatista has joined #nixos
lvmond has joined #nixos
SOO7 has joined #nixos
silver_hook has joined #nixos
superbaloo has joined #nixos
kalbasit has joined #nixos
monokrome has joined #nixos
nurelin_ has joined #nixos
jerryaldrichiii has joined #nixos
Ralith_ has joined #nixos
Niall has joined #nixos
manveru has joined #nixos
j4m3s__ has joined #nixos
mightybyte has joined #nixos
juhoh has joined #nixos
hodapp has joined #nixos
plp_ has joined #nixos
rixed has joined #nixos
kisonecat has joined #nixos
lockshaw has joined #nixos
Athas has joined #nixos
drozdziak1 has joined #nixos
drewc has joined #nixos
sigtrm has joined #nixos
umachan has joined #nixos
akaWolf has joined #nixos
wolke has joined #nixos
johanot has joined #nixos
spacekookie has joined #nixos
phI||Ip has joined #nixos
bsima has joined #nixos
immae has joined #nixos
rauno has joined #nixos
Makaveli7 has quit [Quit: WeeChat 2.7]
Sigma has quit [Ping timeout: 240 seconds]
swistak35 has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #77881 → libde265: 1.0.4 -> 1.0.5 → https://git.io/JvTEo
Sigma has joined #nixos
swistak35 has joined #nixos
Tucky has joined #nixos
xO1 has joined #nixos
<{^_^}> Channel nixos-unstable advanced to https://github.com/NixOS/nixpkgs/commit/2628f20267d (from 6 hours ago, history: https://channels.nix.gsc.io/nixos-unstable)
Makaveli7 has joined #nixos
CRTified has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @colemickens opened pull request #77882 → v4l2loopback: 0.12.2 -> 0.12.3 → https://git.io/JvTEH
lsix has joined #nixos
dansho has quit [Quit: Leaving]
<{^_^}> [nixpkgs] @colemickens opened pull request #77883 → home-assistant: upgrade to 0.104.1, add support for zwave/zha adapters, add various python modules for components → https://git.io/JvTE7
<{^_^}> [nixpkgs] @colemickens opened pull request #77884 → plex-mpv-shim: init at 1.7.0 → https://git.io/JvTE5
hyper_ch2 has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #77885 → luigi: 2.8.0 -> 2.8.11 → https://git.io/JvTEb
CRTified has joined #nixos
Palpares has quit [Remote host closed the connection]
Palpares has joined #nixos
<{^_^}> [nixpkgs] @kampka opened pull request #77886 → pcsclite: 1.8.25 -> 1.8.26 → https://git.io/JvTEA
fusion809 has quit [Read error: Connection reset by peer]
fusion809 has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #77887 → magnetico: 0.8.1 -> 0.9.0 → https://git.io/JvTue
<{^_^}> [nixpkgs] @kraem opened pull request #77888 → facetimehd: unstable-2016-10-09 -> unstable-2019-12-10 for kernels > 4.8 → https://git.io/JvTuU
<{^_^}> [nixpkgs] @colemickens closed pull request #72503 → notekit: init at unstable-FIXME → https://git.io/Jeglf
erictapen has joined #nixos
olmer has quit [Remote host closed the connection]
chloekek has joined #nixos
erictapen has quit [Quit: leaving]
Makaveli7 has quit [Ping timeout: 240 seconds]
ee194350 has quit [Ping timeout: 265 seconds]
ee194350 has joined #nixos
niso has quit [Remote host closed the connection]
Makaveli7 has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #77889 → nix-bundle: 0.2.0 -> 0.3.0 → https://git.io/JvTua
fendor_ has joined #nixos
lukash_|away is now known as lukash_
thc202 has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #77890 → notejot: 1.5.8 -> 1.6.0 → https://git.io/JvTu6
power-fungus has quit [Ping timeout: 258 seconds]
gagbo has joined #nixos
<{^_^}> [nixpkgs] @kampka closed pull request #77886 → pcsclite: 1.8.25 -> 1.8.26 → https://git.io/JvTEA
hyper_ch2 has quit [Remote host closed the connection]
civodul has joined #nixos
hyper_ch2 has joined #nixos
zupo has joined #nixos
dkibi has joined #nixos
<{^_^}> [nixpkgs] @MasseR opened pull request #77892 → networking.services: Add vpnc module → https://git.io/JvTu7
ng0 has quit [Quit: leaving]
power-fungus has joined #nixos
ng0 has joined #nixos
ng0 has joined #nixos
Makaveli7 has quit [Quit: WeeChat 2.7]
free_beard has joined #nixos
Makaveli7 has joined #nixos
Acilim has joined #nixos
<{^_^}> [nixpkgs] @Mic92 merged pull request #75561 → quartus: init at 19.1.0.670 → https://git.io/JeHZv
<{^_^}> [nixpkgs] @Mic92 pushed 4 commits to master: https://git.io/JvTz3
__monty__ has joined #nixos
meck has quit [Quit: ZNC 1.7.5 - https://znc.in]
meck has joined #nixos
zupo has quit [Ping timeout: 272 seconds]
meck has quit [Client Quit]
zupo has joined #nixos
power-fungus has quit [Quit: Leaving]
meck has joined #nixos
<Taneb> I've just been annoyed by https://github.com/NixOS/hydra/issues/394 on my local Hydra server
<{^_^}> hydra#394 (by domenkozar, 3 years ago, open): Cancel button is not available on jobsets with 1 evaluation
<{^_^}> [nixpkgs] @r-ryantm opened pull request #77894 → pidgin-carbons: 0.1.3 -> 0.2.2 → https://git.io/JvTzH
<{^_^}> [nixpkgs] @r-ryantm opened pull request #77895 → pipreqs: 0.4.9 -> 0.4.10 → https://git.io/JvTzN
inferencerules_ has quit [Quit: ZNC 1.7.5 - https://znc.in]
<{^_^}> [nixpkgs] @mmahut pushed 2 commits to master: https://git.io/JvTzh
<{^_^}> [nixpkgs] @mmahut merged pull request #77873 → fsmon: 1.5 -> 1.6.1 → https://git.io/JvTBy
<{^_^}> [nixpkgs] @mmahut merged pull request #77657 → blitz: remove package → https://git.io/JvJKd
<{^_^}> [nixpkgs] @mmahut pushed 2 commits to master: https://git.io/JvTgJ
ramses_ has joined #nixos
Shoubit has quit [Quit: Leaving]
<{^_^}> [nixpkgs] @zimbatm merged pull request #77870 → coz: 0.2.0 -> 0.2.1 → https://git.io/JvTBt
<{^_^}> [nixpkgs] @zimbatm pushed commit from @r-ryantm to master « coz: 0.2.0 -> 0.2.1 (#77870) »: https://git.io/JvTgT
<{^_^}> Channel nixos-19.09-small advanced to https://github.com/NixOS/nixpkgs/commit/e2b3f8b87e1 (from 3 hours ago, history: https://channels.nix.gsc.io/nixos-19.09-small)
<ramses_> Hey guys, I'm having a system which has issues mounting the root fs. Is there a way to get to an initramfs shell to debug the issue? I thought on other distros that in this case you get dropped into one automatically
<ramses_> I get the prompt asking to type "r" or "*" to either reboot or retry. Retrying obviously doesn't help
Chiliparrot has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #77896 → pwndbg: 2019.01.25 -> 2019.12.09 → https://git.io/JvTgq
<{^_^}> [nixpkgs] @primeos merged pull request #77849 → [19.09] signal-desktop: 1.29.4 -> 1.29.5 (backport) → https://git.io/JvTG8
<{^_^}> [nixpkgs] @primeos pushed 2 commits to release-19.09: https://git.io/JvTg3
drewr has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #77897 → qtstyleplugin-kvantum-qt4: 0.11.2 -> 0.14.1 → https://git.io/JvTgn
<{^_^}> [nixpkgs] @r-ryantm opened pull request #77898 → quickder: 1.2-6 -> 1.3.0 → https://git.io/JvTg4
<wedens[m]> ramses_: boot.shell_on_fail ?
<wedens[m]> (that's kernel param)
<__monty__> I was gonna suggest adding `init=/bin/sh` to the kernel line but that's not gonna help without `/` : s
<wedens[m]> there is also `single` for single user mode (not sure how/if it works without root though)
<makefu> __monty__: it may even work, because /bin/sh is already available in initrd
<wedens[m]> my preferred solution to such problems is to use live usb and sort it out there
o1lo01ol1o has joined #nixos
<__monty__> makefu: Ah, TIL. I have no idea how booting works tbh. I know clever talked me through a kernel issue using sh as init though.
<ramses_> wedens[m] I would prefer a live usb too, but I don't have physical access... I am exploring my options. I don't even know what's the issue at this point, I'll have to debug it by given instructions over the phone to a network admin without linux skills...
<ramses_> I will look at the different options given here and see where it leads me, thanks!
inferencerules has joined #nixos
<__monty__> ramses_: Oof, speaking from experience that's gonna be *really* hard.
<{^_^}> [nixpkgs] @r-ryantm opened pull request #77899 → rebar: 2.5.1 -> 2.6.4 → https://git.io/JvTgw
kleisli has quit [Ping timeout: 268 seconds]
kisonecat has quit [Quit: ZNC 1.7.5 - https://znc.in]
psyanticy has joined #nixos
kisonecat has joined #nixos
<tilpner> ramses_: I don't want to lead you in the wrong direction, but perhaps you can build a live system and instruct the network admin to write it to a usb drive and boot the server off of it?
<tilpner> ramses_: The live system would come with ssh preconfigured for your key, and you could have a look around yourself, as opposed to infuriating debugging-via-phone
<ramses_> tilpner: you have any guide on how to do this? That would be a very interesting option
<ramses_> Can I do this starting from a configuration.nix file?
<tilpner> ramses_: Again, if you see an easier way to do this, feel free to ignore me. If NixOS is your hammer, some screws begin to look like nails :/
<tilpner> I'll check for docs, but yes, you start with a configuration.nix
<tilpner> Ideally, you can reuse the current config, if you had NixOS installed on it previously. If the network config is tricky, you need it to work on the first try
nakkle has quit [Ping timeout: 240 seconds]
<tilpner> I hope the server has a public ipv4 address, that would make things easier for you
<ramses_> tilpner no I like this idea! I didn't know this could be easily done
<tilpner> You probably want to verify the ISO with at least a VM before sending it over
<ramses_> We don't have public IPs but we use reverse ssh tunnels to access our server. I can just include our current modules in the live disc though and it should work
nakkle has joined #nixos
tmaekawa has joined #nixos
<ramses_> These servers are deployed in very remote areas in different parts of the world, so the situation is a bit particular
<tilpner> ramses_: That should be fine, if you can test it before
<{^_^}> [nixpkgs] @r-ryantm opened pull request #77900 → scream-receivers: 3.3 -> 3.4 → https://git.io/JvTg9
<DigitalKiwi> (instructions applicable in numerous instances)
<tilpner> DigitalKiwi: If you are suggesting themelios for ramses_s problem, what advantages would it have over building an ISO as described in the wiki link above?
<tilpner> (I don't see any, but I'm not familiar with themelios)
<DigitalKiwi> the second link is probably what's in the wiki
<tilpner> It's fairly close
<keithy[m]> I am working on using NixPkgs on top of Fedora CoreOS, the latter being self updating, might that be a useful option?
<keithy[m]> The installation (including disk formatting) is specified using an ignition file (instead of confiuration.nix) which is embeddable in an iso for installation on bare metal. (FCOS went stable 2 a few days ago)
nakkle has quit [Ping timeout: 272 seconds]
tmaekawa has quit [Ping timeout: 268 seconds]
rleppink has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #77901 → sentencepiece: 0.1.84 -> 0.1.85 → https://git.io/JvTgp
dozn has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #77902 → sewer: 0.7.0 -> 0.7.3 → https://git.io/JvT2J
domogled has joined #nixos
<DigitalKiwi> tilpner: themelios is cool check it out
dozn has joined #nixos
fendor_ has quit [Ping timeout: 268 seconds]
ramses_ has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #77903 → seyren: 1.1.0 -> 1.5.0 → https://git.io/JvT2O
lucc has joined #nixos
xkapastel has quit [Quit: Connection closed for inactivity]
<DigitalKiwi> if you want
<lucc> Hello people! I am trying to configure a regular backup with rsync in a systemd unit via systemd.user.services. Currentlý I have systemd.user.services.backup = { script = "/my/rsync/script.bash"; path = with pkgs; [bash rsync openssh x11_ssh_askpass];};
Guest92090 has quit [Ping timeout: 272 seconds]
<the_pumpkin_man[> Hello, I am trying to get dnscrypt-proxy work on NixOS, so I just enable the service in the configuration.nix and reboot. Problem : it isn"t working because I got this weird error in the dnscrypt-proxy's logs : `[INFO] [INFO] Refetching server certificates[ERROR] Suspicious certificate received
<the_pumpkin_man[> 7 11:44:52 2020 [ERROR] No useable certificates found
<the_pumpkin_man[> [ERROR] No useable certificates found
<the_pumpkin_man[> [ERROR] Suspicious certificate received
<the_pumpkin_man[> * Hello, I am trying to get dnscrypt-proxy work on NixOS, so I just enable the service in the configuration.nix and reboot. Problem : it isn"t working because I got this weird error in the dnscrypt-proxy's logs : `[INFO] [INFO] Refetching server certificates
Shoubit has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #77904 → sickgear: 0.20.0 -> 0.21.5 → https://git.io/JvT2C
lucc has quit [Ping timeout: 272 seconds]
nakkle has joined #nixos
<{^_^}> [nixpkgs] @zowoq opened pull request #77905 → fuse-overlayfs: 0.7.3 -> 0.7.4 → https://git.io/JvT2E
dm9 has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #77906 → snabb: 2018.01.2 -> 2019.11 → https://git.io/JvT2i
<{^_^}> Channel nixpkgs-19.09-darwin advanced to https://github.com/NixOS/nixpkgs/commit/d7292e785e4 (from 58 minutes ago, history: https://channels.nix.gsc.io/nixpkgs-19.09-darwin)
iyzsong has joined #nixos
page has quit [Ping timeout: 265 seconds]
page has joined #nixos
myskran has joined #nixos
sigmundv has joined #nixos
myskran has quit [Ping timeout: 240 seconds]
genesis has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #77907 → syncthingtray: 0.10.4 -> 0.10.5 → https://git.io/JvTan
Chiliparrot has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
mexisme_ has quit [Ping timeout: 252 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #77908 → tesseract: 3.05.00 -> 4.1.1 → https://git.io/JvTa2
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/b8d0312b5fe (from 2 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
waleee-cl has joined #nixos
fendor_ has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #77909 → todoist: 0.14.0 -> 0.15.0 → https://git.io/JvTaS
kai_w_ has quit [Quit: Konversation terminated!]
fendor_ has quit [Ping timeout: 268 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #77910 → trompeloeil: 35 -> 36 → https://git.io/JvTaA
vidbina_ has joined #nixos
kaliumxyz has joined #nixos
<{^_^}> [nixpkgs] @Mic92 merged pull request #77896 → pwndbg: 2019.01.25 -> 2019.12.09 → https://git.io/JvTgq
<{^_^}> [nixpkgs] @Mic92 pushed 2 commits to master: https://git.io/JvTVv
<{^_^}> [nixpkgs] @r-ryantm opened pull request #77911 → tt-rss-theme-feedly: 2.0.0 -> 2.3.1 → https://git.io/JvTVf
gxt has joined #nixos
bvdw has quit [Read error: Connection reset by peer]
bvdw has joined #nixos
fendor_ has joined #nixos
iyzsong-x has joined #nixos
iyzsong has quit [Ping timeout: 265 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #77912 → urh: 2.8.1 -> 2.8.2 → https://git.io/JvTVm
Shoubit has quit [Quit: Leaving]
<{^_^}> Channel nixos-19.09-small advanced to https://github.com/NixOS/nixpkgs/commit/d7292e785e4 (from 2 hours ago, history: https://channels.nix.gsc.io/nixos-19.09-small)
chagra_ has quit [Ping timeout: 268 seconds]
jgeerds__ has joined #nixos
chagra_ has joined #nixos
<{^_^}> [nixpkgs] @erikarvstedt opened pull request #77913 → tesseract: 4.1.0 -> 4.1.1 → https://git.io/JvTV4
<{^_^}> [nixpkgs] @r-ryantm opened pull request #77914 → video2midi: 0.3.9.6 -> 0.4.0.1 → https://git.io/JvTVg
mexisme has quit [Quit: WeeChat 2.7]
thelounge52 has joined #nixos
thelounge61 has joined #nixos
thelounge52 has quit [Client Quit]
<thelounge61> Hello everybody! I'm trying to get Nixos 20.03 up and running on a Dell XPS 7390, there seem to be some issues with hardware video acceleration. Apps that use it (vscode, chrome e.g.) rarely update themselfes. Anybody heard of that?
Chiliparrot has joined #nixos
orivej has joined #nixos
<the_pumpkin_man[> thelounge61: NixOS 20.03 ? Are you coming from the future ?
thelounge61 has quit [Client Quit]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #77915 → vkquake: 1.03.0 -> 1.04.1 → https://git.io/JvTVi
<dtz> well, if he's using 5.4 then yes I have an idea O:).
fendor_ has quit [Ping timeout: 268 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #77916 → wakatime: 13.0.2 -> 13.0.3 → https://git.io/JvTV9
<{^_^}> [nixpkgs] @hedning opened pull request #77917 → gtk3: fix missing header file on darwin → https://git.io/JvTVH
fendor_ has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #77918 → wavemon: 0.9.0 -> 0.9.1 → https://git.io/JvTVF
thelounge533 has joined #nixos
<thelounge533> 19.09 didn't want to boot on the machine :)
<thelounge533> I got unstable installed, but this flickering/missing updates are annoying
<{^_^}> [nixpkgs] @alyssais merged pull request #77859 → xlayoutdisplay: 1.1.0 -> 1.1.1 → https://git.io/JvTlN
<{^_^}> [nixpkgs] @alyssais pushed commit from @dtzWill to master « xlayoutdisplay: 1.1.0 -> 1.1.1 »: https://git.io/JvTVj
<thelounge533> I added the configs here, but without any luck https://nixos.wiki/wiki/Intel_Graphics
<{^_^}> [nixpkgs] @r-ryantm opened pull request #77919 → xmrig: 5.4.0 -> 5.5.1 → https://git.io/JvTwe
<infinisil> thelounge533: What kind of flickering?
<infinisil> thelounge533: You might want to add things from https://github.com/NixOS/nixos-hardware for your model
<thelounge533> I added that config as well 👍
fusion809 has quit [Remote host closed the connection]
<thelounge533> The flickering is only occational, lines seem to move a bit
<thelounge533> But the mostly missing rendering of some apps is pretty weird
fusion809 has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #77920 → xsecurelock: 1.6.0 -> 1.7.0 → https://git.io/JvTwk
<adisbladis> thelounge533: Flickering or tearing?
<thelounge533> A flickering tearing? Does that make sense?
<thelounge533> It shows some tearing in a flickering manner
<adisbladis> thelounge533: Either way, you may want to enable the intel driver option TearFree and/or run a compositor
stolyaroleh has joined #nixos
<thelounge533> Do you have a link for me?
<infinisil> The TearFree thing should be in nixos-hardware
<adisbladis> thelounge533: What window manager or desktop are you running?
<adisbladis> Most DEs come with their own compositor
<thelounge533> adisbladis gnome3
<{^_^}> [nixpkgs] @Infinisil merged pull request #70234 → zfsnap: init at 2.0.0-beta3 → https://git.io/JenpK
<{^_^}> [nixpkgs] @Infinisil pushed 2 commits to master: https://git.io/JvTwm
<adisbladis> thelounge533: Right, comes with it's own so nothing you have to enable yourself
<adisbladis> thelounge533: Then I suggest looking at the TearFree option
<thelounge533> adisbladis This is the config i am importing https://github.com/NixOS/nixos-hardware/blob/master/dell/xps/13-7390/default.nix
<adisbladis> Sadly I don't know much about gnome/mutter so can't help you there
<{^_^}> [nixpkgs] @r-ryantm opened pull request #77921 → zfs-replicate: 1.1.11 -> 1.1.14 → https://git.io/JvTwR
andreas303 has quit [Remote host closed the connection]
<thelounge533> Thank you anyway adisbladis!
thelounge533 has quit [Quit: The Lounge - https://thelounge.chat]
andreas303 has joined #nixos
<{^_^}> [nixpkgs] @flokli merged pull request #77662 → nixos/test: added verbose output for failed tests → https://git.io/JvJXd
<{^_^}> [nixpkgs] @flokli pushed 2 commits to master: https://git.io/JvTwK
<{^_^}> [nixpkgs] @alyssais opened pull request #77922 → squashfs-tools-ng: 0.7 -> 0.8 → https://git.io/JvTwP
ebzzry has left #nixos ["WeeChat 2.3"]
<{^_^}> [nixpkgs] @alyssais closed pull request #77908 → tesseract: 3.05.00 -> 4.1.1 → https://git.io/JvTa2
werner291 has joined #nixos
iyzsong-x has quit [Quit: ZNC 1.7.1 - https://znc.in]
<{^_^}> [nixpkgs] @ehmry merged pull request #77860 → elfinfo: 0.7.6 -> 1.0.1 → https://git.io/JvT80
<{^_^}> [nixpkgs] @ehmry pushed commit from @dtzWill to master « elfinfo: 0.7.6 -> 1.0.1 »: https://git.io/JvTwH
nixnewbie has quit [Read error: Connection reset by peer]
nixnewbie has joined #nixos
free_beard has quit [Remote host closed the connection]
<qyliss> Is there somewhere I can set XDG_CACHE_HOME in NixOS configuration to have it apply to systemd user services?
reyman[m] has joined #nixos
Shoubit has joined #nixos
Chiliparrot has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
<qyliss> Got it -- it's DefaultEnvironment in systemd.user.extraConfig
dellie__ has joined #nixos
gustavderdrache has joined #nixos
zupo has quit [Ping timeout: 265 seconds]
delli3_ has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @alyssais merged pull request #77913 → tesseract: 4.1.0 -> 4.1.1 → https://git.io/JvTV4
<{^_^}> [nixpkgs] @alyssais pushed commit from @erikarvstedt to master « tesseract: 4.1.0 -> 4.1.1 »: https://git.io/JvTrl
zupo has joined #nixos
nixnewbie has quit [Remote host closed the connection]
lsix has quit [Ping timeout: 260 seconds]
lsix has joined #nixos
fendor has joined #nixos
fendor_ has quit [Read error: Connection reset by peer]
<{^_^}> [nixpkgs] @Mic92 merged pull request #75946 → Merge pull request #75946 from davidtwco/computecpp-init → https://git.io/Je5Pf
<{^_^}> [nixpkgs] @Mic92 pushed 2 commits to master: https://git.io/JvTrH
dalto5 has joined #nixos
ng0 has quit [Quit: leaving]
<{^_^}> [nixpkgs] @Mic92 merged pull request #77917 → Merge pull request #77917 from hedning/fix-gtk-3.24.13-darwin → https://git.io/JvTVH
<{^_^}> [nixpkgs] @Mic92 pushed 2 commits to staging-next: https://git.io/JvTr5
ng0 has joined #nixos
Makaveli7 has quit [Quit: WeeChat 2.7]
<dalto5> So....I am trying to install vivaldi with codecs and widevine support. I took a look at the default.nix for the package and it looks like it supports that via setting. I looked at some sample configuration.nix files to see how this might be done. I tried this in my configuration.nix: https://pastebin.com/raw/w2B2R3BL but that didn't work. Can
<dalto5> anyone point me in the right direction?
Rusty1 has joined #nixos
Chiliparrot has joined #nixos
Makaveli7 has joined #nixos
<{^_^}> [nixpkgs] @ryantm merged pull request #77871 → cpp-utilities: 5.0.1 -> 5.1.0 → https://git.io/JvTB3
<{^_^}> [nixpkgs] @ryantm pushed 2 commits to master: https://git.io/JvTok
<{^_^}> [nixpkgs] @ryantm merged pull request #77907 → syncthingtray: 0.10.4 -> 0.10.5 → https://git.io/JvTan
<{^_^}> [nixpkgs] @ryantm pushed 2 commits to master: https://git.io/JvToI
eoli3n has quit [Quit: WeeChat 2.7]
<{^_^}> [nixpkgs] @peterhoeg merged pull request #77695 → usb-modeswitch: fix configurable patch → https://git.io/JvUeo
<{^_^}> [nixpkgs] @peterhoeg pushed 2 commits to master: https://git.io/JvToL
<wedens[m]> dalto5: try doing vivaldi.override { enableWidevine = true; proprietaryCodecs = true; } instead of using nixpkgs.config
<{^_^}> [nixpkgs] @ryantm merged pull request #77876 → jumpapp: 1.0 -> 1.1 → https://git.io/JvTEJ
<{^_^}> [nixpkgs] @ryantm pushed 2 commits to master: https://git.io/JvTol
<dalto5> wedens[m] I tried that first, but wasn't sure how to use it in context. If I put that in inside of the systemPackages list I get an error that the entry is not of type packages. If I put it outside, I get a syntax error.
<{^_^}> [nixpkgs] @vxid closed pull request #74864 → uw-ttyp0: init at 1.3 → https://git.io/JeMP2
Makaveli7 has quit [Quit: WeeChat 2.7]
rauno has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @Synthetica9 opened pull request #77923 → various: fix version formatting → https://git.io/JvTo6
<dalto5> wedens[m] Thanks! I was missing the parens
<{^_^}> [nixpkgs] @rht opened pull request #77924 → signal-desktop: 1.29.5 -> 1.29.6 → https://git.io/JvToX
<dalto5> I have another beginner question I have been struggling with. When there is two versions of the same application installed it creates a collision. If I want to explicitly make one version "win" the collision, is there a way to do that?
<{^_^}> [nixpkgs] @peterhoeg merged pull request #77905 → fuse-overlayfs: 0.7.3 -> 0.7.4 → https://git.io/JvT2E
<{^_^}> [nixpkgs] @peterhoeg pushed 2 commits to master: https://git.io/JvToM
alexherbo29 has joined #nixos
lucc has joined #nixos
alex`` has quit [Ping timeout: 260 seconds]
alexherbo2 has quit [Ping timeout: 265 seconds]
alexherbo29 is now known as alexherbo2
<wedens[m]> what do you mean by "collision"?
alex`` has joined #nixos
remirol is now known as lorimer
<dalto5> When you have two packages with the same name installed from two different channels.
<wedens[m]> install only one of them then? :)
fendor has quit [Ping timeout: 265 seconds]
<dalto5> What do you do when one of them is pulled in as a dependency from another package/service?
ddellacosta has joined #nixos
<wedens[m]> it shouldn't cause any conflicts (most of the time). do you have any specific example?
lucc has quit [Quit: WeeChat 2.6]
<dalto5> I think last time it happened when was I wanted to try the version of kodi from nixos-unstable but something was bringing kodi in from 19.09. I ended up with both installed.
fendor has joined #nixos
<wedens[m]> you probably enabled kodi service from default channel and explicitly installed kodi package from ustable
<wedens[m]> in this case you should use overlay to make service use kodi from unstable
<dalto5> OK, I will try that next time the situation arises. Thanks again for the advice!
<{^_^}> [nixpkgs] @ryantm merged pull request #77863 → bashSnippets: 1.17.3 -> 1.23.0 → https://git.io/JvT4L
<{^_^}> [nixpkgs] @ryantm pushed 2 commits to master: https://git.io/JvTKw
<{^_^}> [nixpkgs] @ryantm merged pull request #77912 → urh: 2.8.1 -> 2.8.2 → https://git.io/JvTVm
<{^_^}> [nixpkgs] @ryantm pushed 2 commits to master: https://git.io/JvTKK
ixxie has joined #nixos
Guest92090 has joined #nixos
waleee-cl has quit [Quit: Connection closed for inactivity]
dalto5 has quit [Remote host closed the connection]
ixxie has quit [Ping timeout: 268 seconds]
ixxie has joined #nixos
ixxie has quit [Ping timeout: 268 seconds]
domogled has quit [Ping timeout: 258 seconds]
eoli3n has joined #nixos
fendor has quit [Ping timeout: 268 seconds]
eoli3n_ has joined #nixos
justanotheruser has quit [Ping timeout: 240 seconds]
sigmundv has quit [Read error: Connection reset by peer]
sigmundv has joined #nixos
wavirc22 has joined #nixos
fendor has joined #nixos
myskran has joined #nixos
brano543 has joined #nixos
<brano543> Hello. Can anyone help me with generating systemd files on non-nixos distribution? I would like to get systemd service file automatically generated for Postgresql.
Acilim has quit [Quit: Leaving]
<brano543> I have found there is a recipe for that here https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/databases/postgresql.nix. I have tried this approach with eval (https://unix.stackexchange.com/questions/523454/nixos-use-services-on-non-nixos-os-eventually-with-only-user-rights), however I don't understand how one is supposed to pass
<brano543> configuration parameters, eg. cfg.dataDir.
<{^_^}> [nixpkgs] @dtzWill merged pull request #72120 → swift: 5.0.2 -> 5.1.1 → https://git.io/Jeufd
<{^_^}> [nixpkgs] @dtzWill pushed 4 commits to master: https://git.io/JvT6V
wavirc22 has quit [Ping timeout: 258 seconds]
wavirc22 has joined #nixos
<{^_^}> [nixpkgs] @leotaku opened pull request #77947 → cbatticon: Add wrapGAppsHook to nativeBuildInputs → https://git.io/JvT6i
<{^_^}> [nixpkgs] @bjornfor pushed commit from @r-ryantm to master « trompeloeil: 35 -> 36 »: https://git.io/JvT6X
<{^_^}> [nixpkgs] @bjornfor merged pull request #77910 → trompeloeil: 35 -> 36 → https://git.io/JvTaA
ng0_ has joined #nixos
ng0_ has quit [Changing host]
ng0_ has joined #nixos
rleppink` has joined #nixos
<{^_^}> [nixpkgs] @mroi closed pull request #68346 → swift: 5.0.2 -> 5.0.3 → https://git.io/JeTv3
justanotheruser has joined #nixos
ng0 has quit [Ping timeout: 272 seconds]
rleppink has quit [Ping timeout: 258 seconds]
<{^_^}> [nixpkgs] @rawkode opened pull request #77948 → pulumi: 1.4.0 -> 1.8.1 → https://git.io/JvT6b
<{^_^}> [nixpkgs] @primeos merged pull request #77924 → signal-desktop: 1.29.5 -> 1.29.6 → https://git.io/JvToX
<{^_^}> [nixpkgs] @primeos pushed 2 commits to master: https://git.io/JvT6N
jonreeve[m] has joined #nixos
<{^_^}> [nixpkgs] @veprbl merged pull request #77631 → gildas: 20191201_a -> 20200101_a → https://git.io/JvJnV
<{^_^}> [nixpkgs] @veprbl pushed 2 commits to master: https://git.io/JvT6x
<wedens[m]> brano543: nixos modules are not really supposed to be used on non-nixos
<{^_^}> [nixpkgs] @primeos opened pull request #77949 → [19.09] signal-desktop: 1.29.5 -> 1.29.6 (backport) → https://git.io/JvTie
eoli3n has quit [Quit: WeeChat 2.7]
<brano543> wedens[m]: what I need to achieve is that the service files get automatically generated and placed to system directories so that systemctl can find it. I wanted to automate this step.
mmlb has quit [Ping timeout: 258 seconds]
mmlb has joined #nixos
<Ankhers> Does anyone know how I can get libclang into a nix shell? Just adding llvmPackages.libclang to stdenv.mkDerivation's buildInputs does not seem to work.
human is now known as Enzime
<LnL> that should work
<DigitalKiwi> have you had this problemf or like a day or was that someone else
<LnL> or clang-unwrapped.lib
<simpson> Ankhers: Which stdenv were you using again? Was this a GCC-and-clang situation, or did you want a clang-only stdenv?
<{^_^}> [nixpkgs] @dtzWill merged pull request #77862 → broot: 0.11.8 -> 0.11.9, verifyCargoDeps → https://git.io/JvT4T
<{^_^}> [nixpkgs] @dtzWill pushed 2 commits to master: https://git.io/JvTig
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/e40e48d29a4 (from 64 minutes ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
endgame is now known as edgegame
edgegame is now known as endgame
<Ankhers> simpson: I'm fine with clang-only, but clangStdenv also does not seem to work. I had it working (accidentally) at one point because I installed llvmPackages.libclang using home manager and adding LD_LIBRARY_PATH to my rc file. Once I removed it, it stopped working.
<LnL> oh boy
<Ankhers> For what it is worth, I am trying to do a bit of rust development. The error I am getting is https://gist.github.com/ankhers/9f96bb33f34ad41041520ae7092f68d8. I included the simple shell.nix file I am using.
<LnL> whatever you're using might just be looking in the wrong place, since --prefix for clang.out and clang.lib are different
<simpson> Oh, interesting. I bet that there's some Rust-specific things that can be done to make this easier.
<LnL> have you tried the LIBCLANG_PATH?
<LnL> problem is that llvm-config --prefix = clang.out not clang.lib
siiky has joined #nixos
prasket has joined #nixos
<LnL> actually it's llvm not even clang
prasket has left #nixos [#nixos]
<Ankhers> I don't really know how to set LIBCLANG_PATH here without doing it manually. There must be a way to do it from my shell.nix?
justanotheruser has quit [Ping timeout: 268 seconds]
f0x has quit [Ping timeout: 240 seconds]
joepie91 has quit [Ping timeout: 268 seconds]
<Ankhers> DigitalKiwi: Unfortunately that was me.
<LnL> Ankhers: just add LIBCLANG_PATH = "${libclang}/lib";
<LnL> or the full path to the .so, depending on what it needs
Tucky has quit [Quit: WeeChat 2.7]
<Ankhers> LnL: That did it. Thank you so much!
<o1lo01ol1o> I'm getting Aborted: foo.nar file does not exist in binary cache in hydra
<o1lo01ol1o> what execatly would be telling the queue-runner to look for foo.nar?
<o1lo01ol1o> (it doesn't exist in the cache)
hyper_ch2 has quit [Remote host closed the connection]
justanotheruser has joined #nixos
<__monty__> Hmm, what do I pass to nix-store -qR? If I pass a tab-completed path from my store I get "path ... is not valid."
drakonis has joined #nixos
<buckley310> does nixos-unstable take zfs snapshots during upgrades now?
<infinisil> buckley310: Nope
<gchristensen> buckley310: what makes you ask that?
<infinisil> Well, I didn't check, but I'm 99.9% sure the answer is no
<gchristensen> seems like that one would require an RFC :P
<buckley310> i have a few random snapshots i didnt take.
<buckley310> names are just 64 random hex characters
<gchristensen> can you show us `zfs get all dataset@snapshot`?
<the_pumpkin_man[> ```[INFO] Refetching server certificates[ERROR] Suspicious certificate received [ERROR] No useable certificates found```
<the_pumpkin_man[> * Hello, I am trying to get dnscrypt-proxy work on NixOS, so I just enable the service in the configuration.nix and reboot. Problem : it isn't working because I got this weird error in the dnscrypt-proxy's logs :
<buckley310> oh wait, im dumb, they are subvolumes, not snapshots.
<aanderse> haven't put any thought into this yet, but decided someone in here may have done the same thing so i'd ask first: any good way to keep nixops target machines channels in sync with nixops master servers channel?
dckc has left #nixos ["Leaving"]
<infinisil> aanderse: (replace ../external/nixpkgs with <nixpkgs>)
<buckley310> looks like maybe podman or docker created the volumes....
<aanderse> infinisil: yeah, that looks great. thanks!
drakonis has quit [Ping timeout: 248 seconds]
<jonreeve[m]> Is it possible to have both Python and Haskell packages in the same environment? I can build a Python environment with pkgs.python3.buildEnv.override, and I can build a Haskell environment with `pkgs.stdenv.mkDerivation { ... shellHook = "eval $(egrep ^export ${ghc}/bin/ghc)";`, but how can I combine the two?
<infinisil> the_pumpkin_man[: According to https://github.com/NixOS/nixpkgs/pull/72815#issuecomment-554149846 the original module hasn't been functional for a while, but that PR adds the new version, though I didn't get around to reviewing it (yet?)
<infinisil> jonreeve[m]: Look into pkgs.mkShell with the inputsFrom argument
<simpson> jonreeve[m]: If you use python.withPackages, you can build a Python package and put it in the same environment as your Haskell derivation. Then put the shellHook on top.
<simpson> ...Also, what infinisil said; I don't know mkShell but it looks useful.
<the_pumpkin_man[> Oh ok, thanks, then I gonna wait for it being updated, if it happens some day
brano543 has quit [Remote host closed the connection]
nakkle has quit [Ping timeout: 272 seconds]
laikq has joined #nixos
<{^_^}> [nixpkgs] @FRidh pushed 236 commits to staging-next: https://git.io/JvTPF
<fgaz> What is the policy with bundled binary blobs? I just found out that the mindustry package that got merged days ago depends on the github.com/anuken/arc library which bundles precompiled copies of SDL: https://github.com/Anuken/Arc/tree/b77767039334b2658f44d69e72d1ef6bc84f95b0/backends/backend-sdl/libs/linux64
reyman[m] is now known as sreybastien[m]
<gchristensen> ew
<infinisil> fgaz: I'd patch it to use the nix-built ones
<fgaz> should I reach out to upstream? somehow patch arc (which is pulled through gradle :-/ )? just tolerate it?
<fgaz> infinisil: yeah... I think i'll try that but it'llbe difficult
<gchristensen> it'd be nice to patch upstream to easily support swapping our own in
<gchristensen> ...and then swap our own in.
<fgaz> gradle2nix would probably make the patch easier, but it still does not work with mindustry :-/
<{^_^}> [nixpkgs] @primeos merged pull request #77949 → [19.09] signal-desktop: 1.29.5 -> 1.29.6 (backport) → https://git.io/JvTie
<{^_^}> [nixpkgs] @primeos pushed 2 commits to release-19.09: https://git.io/JvTPj
<fgaz> gchristensen, infinisil: thanks, I think I'll open an issue ans see if the dev is willing to change that
<gchristensen> thanks
<lordcirth_> mindustry is great, a package would be nice
<fgaz> lordcirth_: it's already in
<fgaz> :)
Nheryva has joined #nixos
philr has quit [Ping timeout: 272 seconds]
laikq has quit [Remote host closed the connection]
laikq has joined #nixos
opthomasprime has joined #nixos
ng0_ is now known as ng0
<{^_^}> [nixpkgs] @flokli opened pull request #77950 → nixos/buildkite-agent: move to v3 → https://git.io/JvTXt
<jonreeve[m]> infinisil: Thanks. Although I can't quite seem to get it to work. Am I missing something here? https://gist.github.com/JonathanReeve/98dc517ef74ba0ed6323eea524bc67fe
<infinisil> No idea without the error
<infinisil> jonreeve[m]: Oh nevermind, you're forgetting some ()'s
<infinisil> > :p [ lib.id 10 lib.id 20 ]
<{^_^}> [ <LAMBDA> 10 <LAMBDA> 20 ]
<infinisil> > :p [ (lib.id 10) (lib.id 20) ]
<{^_^}> [ 10 20 ]
<infinisil> But still, always post the error
<jonreeve[m]> Hm it's `error: value is a function while a set was expected, at /nix/store/3ncjqs079xp7isfxsq2rfbsxhrk0ax3n-nixpkgs-20.03pre203529.e8f2764fe8d/nixpkgs/pkgs/build-support/mkshe
<jonreeve[m]> ll/default.nix:14:40`
<jonreeve[m]> Which seems strange to me, since that's an error in nixpkgs, right? And not my shell.nix?
<infinisil> See what I wrote above
<schmittlauch[m]> Looks like the 19.09 channel is broken again, it hasn't advanced for 3 days.
<jonreeve[m]> Do you know where I'm missing parens?
<infinisil> schmittlauch[m]: Seems like a build succeeded a couple hours ago: https://hydra.nixos.org/job/nixos/release-19.09/tested
<infinisil> jonreeve[m]: [ (python3.withPackages (...)) (haskellPackages.ghcWithPackages (...)) ]
<jonreeve[m]> Ah cool
<schmittlauch[m]> infinii: Also saw that, so what needs to happen for the nixpkgs tarball to be available? Is the job just executed so seldomly?
<schmittlauch[m]> infinisil ^
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
laikq has quit [Quit: Leaving]
<{^_^}> [nixpkgs] @gebner merged pull request #77881 → libde265: 1.0.4 -> 1.0.5 → https://git.io/JvTEo
<{^_^}> [nixpkgs] @gebner pushed 2 commits to staging: https://git.io/JvTXg
fusion809 has quit [Remote host closed the connection]
Synthetica has joined #nixos
yobj has quit [Remote host closed the connection]
<aanderse> infinisil: hmm... that seems to pass the path over, but not copy the actual channel
knupfer has joined #nixos
<fgaz> EW EW EW. libgdx also includes binary blobs D:
takeda has joined #nixos
<fgaz> See https://github.com/libgdx/libgdx/tree/master/backends On every backend there's a libs directory with .jars inside
yobj has joined #nixos
<fgaz> So _that's_ why java games based on it aren't in many distros
<gchristensen> should probably drop it and punt it to AUR
<jonreeve[m]> infinisil: What's strange is that this shell build succeeds, and drops me into a shell, but then I can't import any package, e.g. `import Control.Lens` in Haskell, or `import colormath` in Python. https://gist.github.com/JonathanReeve/98dc517ef74ba0ed6323eea524bc67fe
<fgaz> Well, other than the fact that gradle's an absolute nightmare
drakonis has joined #nixos
<infinisil> jonreeve[m]: Oh, haskell does its thing with .env
<infinisil> jonreeve[m]: Try using (haskellPackages.ghcWithPackages ...).env instead
<infinisil> schmittlauch[m]: Not sure, but I think it shouldn't take long for the channel to be updated now
<{^_^}> [nixpkgs] @gebner opened pull request #77951 → fish: fix systemctl completion → https://git.io/JvTXx
<infinisil> aanderse: What's NIX_PATH set to now?
<aanderse> infinisil (@freenode_infinisil:matrix.org): well just the environment.etc.nixpkgs.source should be copying it over
<amanjeev> I have a weird issue. I have two machines running NixOS same version. My config is identical except for the "hardware-configuration" of course. which means that I have same git package installed on both machines. But on one machine "git send-meail" works and on the other I get "no such command" error from git.
<infinisil> aanderse: Ohh, yeah I think that doesn't work because the path to a channel is just /nix/var/nix/profiles/per-user/root/channels or so
<aanderse> the path is copied as a string, but the actual path was not copied
<Taneb> amanjeev: I presume you mistyped "git send-email" only in your message and not either of the two machines?
<infinisil> aanderse: Yeah, so try removing the toString
<infinisil> Though not sure if that actually helps
<jonreeve[m]> infinisil: Hm here's where I'm at now: https://gist.github.com/JonathanReeve/98dc517ef74ba0ed6323eea524bc67fe I'm getting error: value is a function while a set was expected, at shell.nix:48:42
<infinisil> aanderse: Or alternatively use `source = <nixpkgs>` directly, or `source = "${<nixpkgs>}"`. One of those *has* to work! (I think)
chloekek has quit [Quit: WeeChat 2.6]
<infinisil> jonreeve[m]: Only use .env for the haskell one, not the python on
<infinisil> e
<infinisil> jonreeve[m]: Oh and your parens are wrong
<infinisil> jonreeve[m]: It should be (haskellPackages.ghcWithPackages (ps: with ps; [ lens ] )).env, not (haskellPackages.ghcWithPackages (ps: with ps; [ lens ] ).env)
erasmas has joined #nixos
<jonreeve[m]> infinisil: It tells me `attribute .env missing` when I try that
<infinisil> (you can't access attributes of a function after all, (ps: ...) is a function)
lsix has quit [Quit: WeeChat 2.6]
<jonreeve[m]> (With `(haskellPackages.ghcWithPackages (ps: with ps; [ lens ] )).env`)
<infinisil> Oh, that's stupid of me, those are packages themselves, not things one would put in a shell.nix
<infinisil> jonreeve[m]: Okay scratch that .env again and replace `inputsFrom` with `buildInputs`
<infinisil> Would've been as simple as that
<jonreeve[m]> infinisil: Sweet! It works! Thanks!
<infinisil> Phew! :D
civodul has quit [Quit: ERC (IRC client for Emacs 26.3)]
<infinisil> The inputsFrom you'd use if you have two nix-builds for two packages and you want an environment where you can build both of them
<amanjeev> Taneb: Sorry I mistyped it here on IRC. "git send-email" is what I use on both machines.
fendor has quit [Ping timeout: 268 seconds]
<{^_^}> [nixpkgs] @flokli merged pull request #77920 → xsecurelock: 1.6.0 -> 1.7.0 → https://git.io/JvTwk
<{^_^}> [nixpkgs] @flokli pushed 2 commits to master: https://git.io/JvT16
apaul1729 has joined #nixos
<Taneb> amanjeev: do 'git --version' and 'which git' print the same thing on both machines?
<dsx> Hi chat!
<dsx> Is there template engine available?
<amanjeev> Taneb: 2.23.1 on both
<dsx> Or (replaceStrings … (readfile …)) should be enough?
waleee-cl has joined #nixos
gagbo has quit [Ping timeout: 268 seconds]
<xa0[m]> oh, hi Taneb
<xa0[m]> long time no see
<Taneb> xa0[m]: didn't recognize you! Didn't expect to see you here
<xa0[m]> :D
<xa0[m]> likewise, though I should have expected to see someone i know here
vidbina_ has quit [Ping timeout: 268 seconds]
<infinisil> dsx: What's your goal?
<dsx> infinisil: in a config file, I need to include another file generated with pkgs.writeTextFile
<dsx> Config itself is long and fragile, so keeping it in some config.nix makes it hard to edit
<dsx> And this include is the only variable there is.
<dsx> (replaceStrings … (readfile …)) works just fine but I thought maybe there are more civilized way to do it
<dsx> * ways
<immae> dsx: substitute* would maybe be easier to use than replaceStrings
<infinisil> dsx: The standard way to do that is to use @placeholder@ and then `pkgs.substituteAll`
<dsx> > […] where varName is any environment variable […]
<{^_^}> error: syntax error, unexpected $undefined, at (string):274:2
<infinisil> E.g. `pkgs.substituteAll { src = ./file; placeholder = "foo"; }` I think
<dsx> Where environment comes from?
<dsx> Is it a current scope?
wildtrees has joined #nixos
<dsx> Ah
growpotkin has joined #nixos
<clever> dsx: the attributes passed to pkgs.substituteAll
<dsx> I see now
<dsx> The option value `services.bird2.config' in `[…]' is not of type `strings concatenated with "\n"'.
<dsx> I guess not in this case
sigmundv has quit [Ping timeout: 260 seconds]
<dsx> But still pkgs.substituteAll is cool
<dsx> Thanks infinisil and clever!
kenjis1 has joined #nixos
knupfer has quit [Quit: knupfer]
sn3rd has joined #nixos
Chiliparrot has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
alexherbo24 has joined #nixos
alexherbo2 has quit [Ping timeout: 260 seconds]
alexherbo24 is now known as alexherbo2
alex`` has quit [Ping timeout: 268 seconds]
<{^_^}> Channel nixos-19.09-small advanced to https://github.com/NixOS/nixpkgs/commit/aa1151c0d9b (from 84 minutes ago, history: https://channels.nix.gsc.io/nixos-19.09-small)
Neo-- has joined #nixos
<{^_^}> [nixpkgs] @nlewo merged pull request #77612 → psi-plus: 1.4.904 -> 1.4.984 → https://git.io/JvJqc
<{^_^}> [nixpkgs] @nlewo pushed 2 commits to master: https://git.io/JvTMQ
alex`` has joined #nixos
sn3rd has quit [Ping timeout: 260 seconds]
slack1256 has joined #nixos
zeta_0 has joined #nixos
rleppink` has quit [Ping timeout: 268 seconds]
slack1256 has quit [Remote host closed the connection]
shyim has joined #nixos
<{^_^}> [nixops] @paluh opened pull request #1220 → Update nixops-hetzner version → https://git.io/JvTDU
<shyim> Hey, have someone an example how to use kubernetes module?
<lewo> shyim: did you take a look at the test?
<shyim> thanks <3
endformationage has joined #nixos
<lewo> hm, it seems i have some connectivity issues with the binary cache (50KB/s)
kim0 has joined #nixos
bvdw has quit [Read error: Connection reset by peer]
bvdw has joined #nixos
<lewo> (but it works well from another location)
alexherbo23 has joined #nixos
justan0theruser has joined #nixos
Jackneill has quit [Remote host closed the connection]
knupfer has joined #nixos
alex`` has quit [Ping timeout: 265 seconds]
alexherbo2 has quit [Ping timeout: 268 seconds]
alexherbo23 is now known as alexherbo2
justanotheruser has quit [Ping timeout: 268 seconds]
<kalbasit> is there a way to force `nix copy --to s3://` to upload a closure and all dependencies even if they already exist?
<gchristensen> why, kalbasit?
<kalbasit> gchristensen: Our CI image is crashing with a segmentation fault. We think it might be a corrupt binary that's causing it
<gchristensen> oh wow
alex`` has joined #nixos
<kalbasit> We're not really sure why it's happening
<gchristensen> have you compared the NAR of what you want to upload, and the NAR of what is being fetched?
<kalbasit> gchristensen: how to do that? I know how to download the NAR, unsure how to get one locally
o1lo01ol1o has quit [Remote host closed the connection]
<gchristensen> nix dump-path /nix/store/foo... will output (stdout) a NAR for that path
<kalbasit> Ah, got it. I can script it then. Thank you! This should help!
kleisli has joined #nixos
ng0_ has joined #nixos
ng0_ has joined #nixos
ng0_ has quit [Changing host]
<gchristensen> kalbasit: nix dump-path /nix/store/... | nix-store --restore ./tmp-nar-extraction
<gchristensen> will extract the NAR in to ./tmp-nar-extraction . do that once for each NAR and diffoscope
<kalbasit> but that does it for the local nix store correct?
<gchristensen> nix dump-path outputs the NAR for a local store path
ng0 has quit [Ping timeout: 272 seconds]
<kalbasit> I see what you mean now
<kalbasit> that's very helpful, thank you!
<gchristensen> for a cached store path: /nix/store/lb3hli8d9536g45mndwfwyi6fpny0blh-bash-interactive-4.4-p23 -> curl https://cache.nixos.org/lb3hli8d9536g45mndwfwyi6fpny0blh.narinfo | grep URL
<kalbasit> Yep, I got already a script that does that in order to calculate the download time for the entire closure.
<kalbasit> gchristensen: A second question: I'm trying to setup a local cache server that serves as a proxy to cache.nixos.org. I found https://git.shackspace.de/rz/stockholm/blob/5782a4de2e5b5f4843a421bac7456e83790950d1/krebs%2F3modules%2Fcachecache.nix#L139
<kalbasit> gchristensen: I'm not sure I understand how does he serve it via HTTPS though
<kalbasit> if I do *whatever* domain instead of cache.nixos.org
<kalbasit> the signature will not be valid, am I assuming correctly?
<gchristensen> sorry, I can't look in to that now
<kalbasit> gchristensen: no worries
<kalbasit> maybe someone else has setup a local cache proxy for cache.nixos.org?
<kalbasit> https://nixos.wiki/wiki/FAQ/Private_Cache_Proxy does not go far enough to say what the hostname of the server fed to --binary_caches and how to get signature to be verified correctly.
logzet_ has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
<{^_^}> [nixpkgs] @worldofpeace merged pull request #77294 → nixos/systemd-lib: don't fail on systemd.packages duplicates → https://git.io/JveBv
<{^_^}> [nixpkgs] @worldofpeace pushed 2 commits to master: https://git.io/JvTDS
slack1256 has joined #nixos
<{^_^}> [nixpkgs] @mrkkrp closed pull request #77831 → Re-organize the buildkite agent module → https://git.io/JvTfq
acarrico has quit [Remote host closed the connection]
joepie91 has joined #nixos
f0x has joined #nixos
<{^_^}> [nixpkgs] @worldofpeace merged pull request #77890 → notejot: 1.5.8 -> 1.6.0 → https://git.io/JvTu6
<{^_^}> [nixpkgs] @worldofpeace pushed 2 commits to master: https://git.io/JvTyJ
lovesegfault has quit [Ping timeout: 272 seconds]
mog has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @worldofpeace merged pull request #77947 → cbatticon: Add wrapGAppsHook to nativeBuildInputs → https://git.io/JvT6i
<{^_^}> [nixpkgs] @worldofpeace pushed 2 commits to master: https://git.io/JvTyt
o1lo01ol1o has joined #nixos
gustavderdrache has quit [Quit: Leaving.]
slack1256 has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @peti pushed 657 commits to haskell-updates: https://git.io/JvTyc
o1lo01ol1o has quit [Ping timeout: 268 seconds]
knupfer has quit [Read error: Connection reset by peer]
UndefinedIsNotAF has joined #nixos
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage-packages.nix: automatic Haskell package set update »: https://git.io/JvTy8
mog has joined #nixos
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « all-cabal-hashes: update to Hackage at 2020-01-17T18:23:06Z »: https://git.io/JvTyR
<{^_^}> [nixpkgs] @worldofpeace merged pull request #77811 → yle-dl: add setuptools dependency → https://git.io/JvUAk
<{^_^}> [nixpkgs] @worldofpeace pushed 2 commits to master: https://git.io/JvTyz
<rnhmjoj> do you have any idea why nix would not be using remote builders for some specific derivation?
<qyliss> is it marked preferLocalBuild?
<symphorien> System features ?
<rnhmjoj> qyliss: i don't think so. it's (an overrriden) wine
<aanderse> <infinisil "aaron: Or alternatively use `sou"> exactly what i thought too. until i tried them all. and none worked. so then i mentioned to you in hopes you know more than i do on the matter :)
<{^_^}> [nixpkgs] @worldofpeace pushed 2 commits to master: https://git.io/JvTyQ
<{^_^}> [nixpkgs] @Ma27 pushed to master « mautrix-whatsapp: 2020-01-07 -> 2020-01-12 »: https://git.io/JvTyF
lukash_ is now known as lukash_|away
<{^_^}> [nixpkgs] @worldofpeace pushed 2 commits to release-19.09: https://git.io/JvTSe
<{^_^}> [nixpkgs] @worldofpeace merged pull request #77923 → various: fix version formatting → https://git.io/JvTo6
<{^_^}> [nixpkgs] @worldofpeace pushed 4 commits to master: https://git.io/JvTSv
Nheryva has quit [Quit: Leaving]
<{^_^}> [nixpkgs] @peti pushed 2 commits to haskell-updates: https://git.io/JvTSq
ng0_ is now known as ng0
niten has joined #nixos
szicari has joined #nixos
<{^_^}> [nixpkgs] @worldofpeace merged pull request #77803 → openxray: fix build → https://git.io/JvUH8
<{^_^}> [nixpkgs] @worldofpeace pushed 2 commits to master: https://git.io/JvTSC
<{^_^}> [nixpkgs] @Infinisil opened pull request #77952 → dockerTools.*: Assertion against building for non-Linux → https://git.io/JvTSu
<{^_^}> [nixpkgs] @Ma27 pushed to master « cargo-make: 0.26.0 -> 0.26.1 »: https://git.io/JvTSz
sigmundv has joined #nixos
<{^_^}> Channel nixpkgs-19.09-darwin advanced to https://github.com/NixOS/nixpkgs/commit/aa1151c0d9b (from 3 hours ago, history: https://channels.nix.gsc.io/nixpkgs-19.09-darwin)
dm9 has quit [Quit: WeeChat 2.7]
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « pandoc: fix build for ghc-8.6.x and ghc-8.8.x »: https://git.io/JvTS1
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « pandoc: fix build for ghc-8.6.x and ghc-8.8.x »: https://git.io/JvTSD
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage-packages.nix: automatic Haskell package set update »: https://git.io/JvTS9
shibboleth has joined #nixos
<{^_^}> [nixpkgs] @dtzWill closed pull request #77856 → cbatticon: wrapGAppsHook to fix icon issue in service → https://git.io/JvTlI
johnw has quit [Ping timeout: 272 seconds]
<pikajude> does anyone know where the option definition for nixops vbox comes from?
<pikajude> i couldn't find anything in the nixops repo, nixpkgs repo, or nixos (even though it's dead)
shibboleth has quit [Excess Flood]
<{^_^}> [nixpkgs] @peti pushed 2 commits to haskell-updates: https://git.io/JvT9v
shibboleth has joined #nixos
hexa- has quit [Quit: WeeChat 2.7]
lovesegfault has joined #nixos
hexa- has joined #nixos
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « haskell-dhall: update overrides for the new release »: https://git.io/JvT9q
<aanderse> pikajude: what option specifically are you looking for?
gustavderdrache has joined #nixos
<aanderse> should be in the nixops repo...
<pikajude> want to know if folders can be shared
<pikajude> it's not, i think it's in nixpkgs virtualbox-guest.nix?
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage2nix: update list of broken packages »: https://git.io/JvT9m
<pikajude> my assumption is that the string vcpu is passed directly to vbox somewhere
<pikajude> since i can't find a single reference to it
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage-packages.nix: automatic Haskell package set update »: https://git.io/JvT9O
<{^_^}> [nixpkgs] @peti closed pull request #64895 → haskellPackages.glpk-hs: fix for ghc-8.6 → https://git.io/fjXhn
<{^_^}> [nixpkgs] @jonringer merged pull request #73262 → dotnet-sdk: Allow multiple packages → https://git.io/Jew2z
<{^_^}> [nixpkgs] @jonringer pushed 7 commits to master: https://git.io/JvT9s
Shouou has joined #nixos
<Shouou> How am I supposed to specify dependencies with haskell.lib.buildStackProject? Do I still pass in a ghc.withPackages? Do I add ghc as an argument that stack passes in, which maybe has the appropriate libraries? Something else? I assume not buildInputs.
<pikajude> thanks LnL
<pikajude> where did that go in master?
<aanderse> oh yeah maybe they split the nixops backends into a different repo or something at some point?
<LnL> pikajude: dunno, it's gone
<pikajude> wack
mexisme_ has joined #nixos
ee194350 has quit [Ping timeout: 272 seconds]
<LnL> ah "Deletion of files to be moved to other repos" sounds promising
<pikajude> i wonder where it got moved
ee194350 has joined #nixos
<aanderse> yeah there was that talk about splitting out the backends
<aanderse> sounded promising
<aanderse> don't recall the details of what happened there though
<aanderse> maybe #nixops
<pikajude> oh, what
<pikajude> amazing
<pikajude> thanks everyone
euandreh has joined #nixos
mexisme_ has quit [Ping timeout: 245 seconds]
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/a1628d98056 (from 67 minutes ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
<gchristensen> I think there is more todo on making the split-up really trivial to use, but I think it is really good stuff
ngyj has joined #nixos
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « haskell-ormolu: fix override for ghc-lib-parser »: https://git.io/JvT9a
apaul1729 has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @peti pushed 20 commits to haskell-updates: https://git.io/JvT9V
<{^_^}> [nixpkgs] @gebner merged pull request #77951 → fish: fix systemctl completion → https://git.io/JvTXx
<{^_^}> [nixpkgs] @gebner pushed 2 commits to master: https://git.io/JvT9w
justan0theruser is now known as justanotheruser
<{^_^}> [nixpkgs] @peti pushed 11 commits to haskell-updates: https://git.io/JvT9Q
johnw has joined #nixos
euandreh has quit [Remote host closed the connection]
euandreh has joined #nixos
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage2nix: update list of broken packages »: https://git.io/JvTHv
lovesegfault has quit [Ping timeout: 268 seconds]
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage2nix: update list of broken packages »: https://git.io/JvTHL
lovesegfault has joined #nixos
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage-packages.nix: automatic Haskell package set update »: https://git.io/JvTHq
Forkk has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
sreybastien[m] has quit [Quit: authenticating]
kolaente_ has joined #nixos
psyanticy has quit [Quit: Connection closed for inactivity]
<{^_^}> [nixpkgs] @peti pushed 13 commits to haskell-updates: https://git.io/JvTHl
<{^_^}> [nixpkgs] @dywedir merged pull request #77726 → bs-platform: don't build a development binary → https://git.io/JvUGR
<{^_^}> [nixpkgs] @dywedir pushed 2 commits to master: https://git.io/JvTH4
<{^_^}> [nixpkgs] @peti pushed 9 commits to haskell-updates: https://git.io/JvTHR
<{^_^}> [nixpkgs] @peti merged pull request #77812 → Update Haskell package set (plus other fixes) → https://git.io/JvUAI
<{^_^}> [nixpkgs] @peti pushed 12 commits to master: https://git.io/JvTHu
opthomasprime has quit [Remote host closed the connection]
drakonis has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @gebner pushed to release-19.09 « fish: fix systemctl completion »: https://git.io/JvTHw
Guest92090 has quit [Ping timeout: 260 seconds]
cosimone has joined #nixos
gustavderdrache has quit [Quit: Leaving.]
dansho has joined #nixos
dansho has quit [Client Quit]
eri has joined #nixos
tpanum has quit [Read error: Connection reset by peer]
meh has joined #nixos
tpanum has joined #nixos
meh has quit [Remote host closed the connection]
multipkg has joined #nixos
janneke has quit [Quit: janneke quits Mes'sing]
civodul has joined #nixos
janneke has joined #nixos
tjg1 has quit [Quit: DON'T KEEP CALM AND FUCK THIS. FUCK THAT. FUCK YOU. FUCK OFF.]
Forkk has joined #nixos
zupo has joined #nixos
tjg1 has joined #nixos
janneke_ has joined #nixos
janneke has quit [Read error: Connection reset by peer]
tjg1 has quit [Client Quit]
tjg1 has joined #nixos
Guest92090 has joined #nixos
drakonis has joined #nixos
kolaente_ has quit [Quit: WeeChat 2.6]
vidbina_ has joined #nixos
zeta_0 has quit [Quit: rcirc on GNU Emacs 26.3]
<ngyj> I have a program I build with a simple makefile and gcc (called with buildPhase), there's one external dependency (cryptopp, a c++ library). Compiling isn't a problem, but I can't run the binary because it can't find the .so (I also checked with ldd, and indeed it can't find it). Am I supposed to patchelf it myself or is this some other way with nix to manage this? On nixpkgs, most programs that depend on cryptopp don't seem to do anything special...
leotaku has quit [Ping timeout: 272 seconds]
bvdw has quit [Quit: bvdw]
bvdw has joined #nixos
chloekek has joined #nixos
multipkg has quit [Ping timeout: 260 seconds]
leotaku has joined #nixos
socksy has joined #nixos
<socksy> hi, I would like to update my nix system with `nixos-rebuild switch --upgrade`, but tdesktop (telegram) is failing to build. Is there any way I can get it to skip telegram but keep the binary i have currently?
<jeaye> Every time I start a nix shell, I see `bash: warning: setlocale: LC_ALL: cannot change locale (en_US.UTF-8)`. Any quick fix for that?
mDuff has joined #nixos
<socksy> i would normally just keep the one on my use profile installed with `nix-env -iA`, but that's obviously failing too rn :\
<ajs124> socksy: you can nix-env -i it from a nixpkgs checkout of when it was working
<{^_^}> [nixpkgs] @volth opened pull request #77953 → nixos/traceroute: init → https://git.io/JvT7S
erictapen has joined #nixos
<socksy> ajs124: exactly what I was thinking, but the weird thing is that it hasn't actually changed since november, and I have that version. There's no binary cache so it's trying to build it again from scratch
<ajs124> you can find the failing commit with git bisect run, if noone has done that yet
justanotheruser has quit [Quit: WeeChat 2.6]
<socksy> you mean to fix the package?
<socksy> or to run the same package build process with an older, working commit?
<ajs124> to find a working commit. or rather, to find the commit that broke the build
<ajs124> It should be between 7184df and 6f5454
<socksy> oh! I didn't understand what you mean at all. That's cool
<socksy> so the fact it failed to build is the same reason there's no binary cache
<ajs124> Actually, tdesktop seems to build fine on current master (63f515a3df7a44699d8d41ae2bb23084d9226522). As in, it's in the binary cache.
<ajs124> which commit are you on? do you use any overlays?
<socksy> overlaying efivar, keepass, i3lock-color, i3lock-fancy and lumo
<{^_^}> Channel nixos-19.09-small advanced to https://github.com/NixOS/nixpkgs/commit/09aa1b23bb5 (from 79 minutes ago, history: https://channels.nix.gsc.io/nixos-19.09-small)
zupo has quit [Ping timeout: 268 seconds]
<socksy> one sec, need to google how to find out what commit I'm on...
domogled has joined #nixos
zupo has joined #nixos
<socksy> ok I think I'm getting things mixed up with what commit I'm on. I'm using the unstable channel to do my updates, which trivially according to https://releases.nixos.org/nixos/unstable/nixos-20.03pre209574.2628f20267d/git-revision is 2628f20267d0c917772abc4c0a7c35788a740b31
<socksy> but I'm not sure if that's what you're meaning
domogled has quit [Client Quit]
<ajs124> That commit gives me /nix/store/dmh77g0wd37grnysmd0h72jmqqi40mjm-telegram-desktop-1.8.15, same as master. Which makes sense, because unstable shouldn't be too far behind master.
philr has joined #nixos
<socksy> so, perhaps I could add e.g. the stable release to my nix channels, nix-env -iA stable.tdesktop, and it should work?
<socksy> (sorry I am of course trying it out, but trying to get a working mental model)
<socksy> ok that at least seems to be downloading stuff from cache.nixos.org, which is a good sign
<{^_^}> [nixpkgs] @primeos merged pull request #77850 → signal-desktop: use autoPatchelfHook, wrap properly → https://git.io/JvTZm
<{^_^}> [nixpkgs] @primeos pushed commit from @worldofpeace to master « signal-desktop: use autoPatchelfHook, wrap properly (#77850) »: https://git.io/JvT5R
rauno has joined #nixos
vidbina_ has quit [Ping timeout: 258 seconds]
<socksy> ok! that all seems to work (had a bunch of garbage to collect first...). Thanks for your help @ajs124: I appreciate it!
<{^_^}> [nixpkgs] @flokli opened pull request #77954 → python3.pkgs.binwalk 2.1.1 -> 2.2.0 → https://git.io/JvT55
<Raito_Bezarius> I'm packging some stuff and I get the warning "avoid dumping very large paths blabla"
<Raito_Bezarius> I wonder if what does that mean really (?)
<Raito_Bezarius> I'm just passing a path as src
<Raito_Bezarius> Also I want to have some Hydra jobs, I'm unsure if I should have a tarball job?
<Raito_Bezarius> This is an Android repo w/o autoconf tools
<{^_^}> [nixpkgs] @7c6f434c merged pull request #77918 → wavemon: 0.9.0 -> 0.9.1 → https://git.io/JvTVF
<{^_^}> [nixpkgs] @7c6f434c pushed 2 commits to master: https://git.io/JvT5p
<Raito_Bezarius> It's rather using some Node.js/Gradle tooling to build itself in multiple stages
<Raito_Bezarius> I'm trying to get some non-Git tarball first I suppose
orivej has quit [Ping timeout: 265 seconds]
myskran has quit [Ping timeout: 260 seconds]
<Raito_Bezarius> Also, it sounds like pkg.releaseTools.sourceTarball relies on some Makefile dist rule being available
dongcarl has joined #nixos
ambro718 has joined #nixos
knupfer has joined #nixos
<{^_^}> [nixpkgs] @marsam merged pull request #77916 → wakatime: 13.0.2 -> 13.0.3 → https://git.io/JvTV9
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JvTds
o1lo01ol1o has joined #nixos
<{^_^}> [nixops] @AmineChikhaoui merged pull request #1220 → Update nixops-hetzner version → https://git.io/JvTDU
<{^_^}> [nixops] @AmineChikhaoui pushed 2 commits to master: https://git.io/JvTdn
<{^_^}> [nixops] @AmineChikhaoui merged pull request #1219 → Fix Travis build: Travis creates /etc/nix for us → https://git.io/JvJjh
<{^_^}> [nixops] @AmineChikhaoui pushed 2 commits to master: https://git.io/JvTdc
emily has quit [Quit: Updating details, brb]
emily has joined #nixos
socksy has quit [Remote host closed the connection]
myskran has joined #nixos
o1lo01ol1o has quit [Remote host closed the connection]
o1lo01ol1o has joined #nixos
o1lo01ol1o has quit [Remote host closed the connection]
o1lo01ol1o has joined #nixos
justanotheruser has joined #nixos
<{^_^}> Channel nixos-19.09 advanced to https://github.com/NixOS/nixpkgs/commit/692a8cabbcc (from 22 hours ago, history: https://channels.nix.gsc.io/nixos-19.09)
ddellacosta has quit [Quit: WeeChat 2.2]
<{^_^}> [nixpkgs] @primeos merged pull request #77701 → gns3: Fix python package not being pinned → https://git.io/JvUUg
<{^_^}> [nixpkgs] @primeos pushed commit from @Alan01252 to master « gns3: Fix python package not being pinned (#77701) »: https://git.io/JvTFJ
erasmas has quit [Quit: leaving]
<{^_^}> [nixpkgs] @ericdallo opened pull request #77955 → clojure-lsp: 20200114T225020 -> 20200117T215443 → https://git.io/JvTFU
ddellacosta has joined #nixos
acarrico has joined #nixos
wolfshappen has quit [Quit: bye]
zeta_0 has joined #nixos
<{^_^}> [nixpkgs] @marsam merged pull request #77797 → postgresqlPackages.timescaledb: 1.5.1 -> 1.6.0 → https://git.io/JvUMY
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JvTFY
__monty__ has quit [Quit: leaving]
o1lo01ol1o has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @ajs124 opened pull request #77956 → zopfli: 1.0.2 -> 1.0.3 → https://git.io/JvTFP
kenjis1 has quit [Ping timeout: 260 seconds]
doublex_ has joined #nixos
ddellacosta has quit [Ping timeout: 268 seconds]
<emily> I'm trying to find a Nix autoformatter I vaguely remember being linked on IRC a while ago; so far I've found nixfmt, canonix, format-nix, and nixpkgs-fmt, of which none sound like the name I can remember.. did I just hallucinate it or does anyone know of another option I'm not aware of?
o1lo01ol1o has joined #nixos
<gchristensen> nix-community's nixpkgs-fmt is pretty great
<adisbladis> Indeed it is <3
<noonien> hello!
<adisbladis> \o
<noonien> i've got a rpi3, on which i have ubuntu, and nix installed
<noonien> i want to run in a nix-shell for which i have a shell.nix
<noonien> is it possible to build the neccesary packages on my computer and then move copy the derivations to the rpi?
<erictapen> noonien: hey, yes it is, but you'd need to cross compile, as your computer probably doesn't have the same architecture as your rpi.
ngyj_ has joined #nixos
<noonien> yes,, i do
<noonien> nixpkgs has the target in pkgsCross afaik
<noonien> but i don't know how to put them together
<adisbladis> noonien: Building things native ie non-cross results in different hashes than cross-built packages
<noonien> oh, right, because it's a different stdenv :(
gustavderdrache has joined #nixos
knupfer has quit [Ping timeout: 260 seconds]
ngyj has quit [Ping timeout: 240 seconds]
acarrico has quit [Ping timeout: 268 seconds]
<{^_^}> [nixpkgs] @Ma27 pushed to master « wabt: 1.0.12 -> 1.0.13 »: https://git.io/JvTbB
<noonien> hmm, even building it in qemu might be faster than the actual rpi
<adisbladis> noonien: Though once you've cross-built you can just run `nix copy` on the store path
<noonien> yes, but how would i use those derivations in a nix-shell on the rpi?
<erictapen> noonien: I can't think of a way where nix-shell works with cross-built packages, but you could still run the programs, so maybe there is another way for you to put the copied store path in your PATH?
<noonien> except hardcoding the actual nix store pathhs :D
<clever> noonien: if your running nix-shell on the rpi, and doing arm development, it will want a native built copy, not a cross-built copy
<noonien> yeah, as erictapen suggested, that makes sense
<noonien> is it possible to use qemu?
<noonien> are there any tools to help? i don't mind setting up qemu myself, but would rather not
o1lo01ol1o has quit [Ping timeout: 272 seconds]
o1lo01ol_ has joined #nixos
hyper_ch has quit [Quit: ZNC 1.7.5 - https://znc.in]
hyper_ch has joined #nixos
o1lo01ol_ has quit [Remote host closed the connection]
o1lo01ol1o has joined #nixos
zeta_0 has quit [Quit: rcirc on GNU Emacs 26.3]
<erictapen> noonien: regarding qemu: maybe this wiki article helps? https://nixos.wiki/wiki/NixOS_on_ARM/QEMU
slack1256 has joined #nixos
<noonien> oh, awesome, thank you! :D
<{^_^}> [nixpkgs] @matthewbauer pushed 4 commits to master: https://git.io/JvTbS
<erictapen> noonien: and regarding a possible solution without qemu (afaik compiling on qemu will be very slow): I'd replace nix-shell with a buildEnv built on my laptop. this way you only need to put one store path in your PATH and can still use multiple programs.
<noonien> hmm, interesting
<{^_^}> [nixpkgs] @matthewbauer merged pull request #76349 → shellFor: Refactor for consistency and cross → https://git.io/JeFPz
<noonien> hmm, this takes me back to cross-compiling a shell.nix
<erictapen> sort of
<noonien> afair nix-build had some options to use pkgsCross
<noonien> so i don't have to make a special .nix
<erictapen> noonien: mh I don't think nix-build knows anything about cross compiling. that is logic that lives in nixpkgs.
<noonien> hmm, actually, yeah, you are right
<noonien> i think i can figure it out, thank you!
<erictapen> noonien: you're welcome
ambro718 has quit [Quit: Konversation terminated!]
mexisme_ has joined #nixos
lorimer has quit [Read error: Connection reset by peer]
lorimer has joined #nixos
o1lo01ol1o has quit [Remote host closed the connection]
o1lo01ol1o has joined #nixos
mexisme_ has quit [Ping timeout: 268 seconds]
iz16 has quit [Ping timeout: 246 seconds]
iz16 has joined #nixos
chloekek has quit [Ping timeout: 268 seconds]
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<Raito_Bezarius> Is there any way to perform a merge between two source directories which are derivations results?
<Raito_Bezarius> (in the standard lib I mean)
<{^_^}> Channel nixpkgs-19.09-darwin advanced to https://github.com/NixOS/nixpkgs/commit/09aa1b23bb5 (from 3 hours ago, history: https://channels.nix.gsc.io/nixpkgs-19.09-darwin)
<Raito_Bezarius> symlinkJoin seems like to do the deed
NoctisLabs has joined #nixos
<{^_^}> [nixpkgs] @snicket2100 opened pull request #77957 → ums: 6.2.2 -> 9.1.0 → https://git.io/JvTNg
erictapen has quit [Ping timeout: 268 seconds]
<NoctisLabs> I'm having a problem, when I install fluid-soundfont my applications aren't seeing it - and I'm not seeing it either in /run/current-system/sw.
remirol has joined #nixos
<NoctisLabs> I'm kind of a NixOS noob so I'm probably missing something simple, but this used to work last I tried ~4 months ago.
ixxie has joined #nixos
lorimer has quit [Ping timeout: 268 seconds]
civodul has quit [Quit: ERC (IRC client for Emacs 26.3)]
v0|d has joined #nixos
<AmandaC_> 4Are you adding it to environment.systemPackages or `nix-env -i`?
ashkitten has quit [Quit: WeeChat 2.4]
cosimone has quit [Quit: Quit.]
myskran has quit [Ping timeout: 240 seconds]
<NoctisLabs> I tried systemPackages first, and then nix-env. So it's on both right now.
Rusty1 has quit [Remote host closed the connection]
<Raito_Bezarius> Hmm, is there any way to have a local build cache directory for nix-build invocations?
kleisli has quit [Ping timeout: 258 seconds]
<NoctisLabs> I see it in /home/nix/.nix-profile/share/soundfonts
ashkitten has joined #nixos