gchristensen changed the topic of #nixos to: NixOS stable: 18.09, beta: 19.03 https://discourse.nixos.org/t/nixos-19-03-feature-freeze/1950 || 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/nixcon2018
Dr8128 has quit [Client Quit]
erasmus is now known as EEEEEEEEERRRRRRA
<{^_^}> [nixpkgs] @taku0 opened pull request #57996 → thunderbird, thunderbird-bin: 60.5.2 -> 60.6.0 → https://git.io/fjfo1
EEEEEEEEERRRRRRA is now known as EEERRRRRRASMUS
romildo has joined #nixos
shibboleth has quit [Remote host closed the connection]
shibboleth has joined #nixos
<{^_^}> [nixpkgs] @Ekleog merged pull request #57425 → python37Packages.numpy-stl: 2.9.0 -> 2.10.0 → https://git.io/fhjlc
<{^_^}> [nixpkgs] @Ekleog pushed 2 commits to master: https://git.io/fjfoQ
hamishmack has joined #nixos
<matthewbauer> haslersn: Not much in end result. One will add it to the PATH while the other doesn't
Rusty1 has quit [Quit: Konversation terminated!]
mbrgm_ has joined #nixos
<matthewbauer> haslersn: I would recommend always putting them in the build inputs in all cases, however. Sometimes one binary will call another binary that is part of the package.
wfranzini has quit [Remote host closed the connection]
wfranzini has joined #nixos
mbrgm has quit [Ping timeout: 246 seconds]
mbrgm_ is now known as mbrgm
<elvishjerricco> How would I override the glibc that stdenv uses to set `installLocales = false;`?
shibboleth has quit [Quit: shibboleth]
Rusty1 has joined #nixos
rycwo has quit [Ping timeout: 252 seconds]
<{^_^}> [nixpkgs] @bernadinm opened pull request #57997 → terraform_0_11: 0.11.11 -> 0.11.13 → https://git.io/fjfoA
goibhniu has quit [Ping timeout: 255 seconds]
ddellacosta has quit [Ping timeout: 246 seconds]
alex`` has quit [Ping timeout: 252 seconds]
sigmundv has joined #nixos
<NemesisD> does anyone have any experience with nix-buffer for emacs? i'm trying to figure out a reasonable way to have emacs respect my project's environment if it has nix stuff
bemeurer has quit [Ping timeout: 255 seconds]
<jackdk> what language is your project in? I use .dir-locals.el files with dante, which knows how to respect shell.nix
<reallymemorable> is it ok to delete /tmp/hax
<reallymemorable> its a write protected file but there doesnt seem to be anything in it when i open it in nano
<clever> reallymemorable: ls -l /tmp/max
adetokunbo has quit [Quit: This computer has gone to sleep]
adetokunbo has joined #nixos
<reallymemorable> s---rwx--- 1 root nixbld 0 Feb 20 15:24 /tmp/hax
<clever> reallymemorable: thats not a file, thats a unix socket
adetokunbo has quit [Client Quit]
<reallymemorable> oh
adetokunbo has joined #nixos
<clever> reallymemorable: its safe to delete once you close the socat that had created it
<reallymemorable> I ran nix-garbage-collector and now my nixbuilders are having trouble connecting to my repos again
adetokunbo has quit [Client Quit]
<clever> reallymemorable: the hax socket requires an socat to be running, a GC is mostly unrelated
adetokunbo has joined #nixos
<clever> but the GC will clear the outputs, and require you to fetch things again, which does need the socket
<reallymemorable> this is what you pointed me to last time
adetokunbo has quit [Client Quit]
<clever> the socat in there must be running for the private fetch to work
adetokunbo has joined #nixos
<reallymemorable> sudo socat UNIX-LISTEN:/tmp/hax,fork,mode=0070,group=nixbld UNIX-CLIENT:$SSH_AUTH_SOCK
<reallymemorable> you mean that line?
<clever> yep
adetokunbo has quit [Client Quit]
<reallymemorable> yeah but when i run it
<reallymemorable> it just says
adetokunbo has joined #nixos
<reallymemorable> E "/tmp/hax" exists
<clever> you need to delete the old /tmp/hax when restarting it
<reallymemorable> so `rm hax`
<clever> yep
adetokunbo has quit [Client Quit]
adetokunbo has joined #nixos
<reallymemorable> hmmm operation not permitted i guess i have to edit permissions
<clever> root
<clever> sudo rm /tmp/hax
adetokunbo has quit [Client Quit]
adetokunbo has joined #nixos
<reallymemorable> ah yes
<reallymemorable> that works
<reallymemorable> then i do the next two lines?
<NemesisD> jackdk: in this case purescript. sometimes haskell
<reallymemorable> or just try to build my project?
<clever> reallymemorable: yeah
<clever> reallymemorable: socat must be running, ssh-config must exist, then you can build
adetokunbo has quit [Client Quit]
<reallymemorable> im still getting an access rights error when i run the third line
{^_^} has quit [Remote host closed the connection]
{^_^} has joined #nixos
<clever> reallymemorable: can you paste the exact error, and the cmd you ran?
doyougnu has joined #nixos
chreekat has quit [Ping timeout: 252 seconds]
<clever> reallymemorable: does `ssh-add -l` list an ssh key?
<reallymemorable> it says teh agent has no identities
<clever> reallymemorable: then thats why it doesnt work, you must run `ssh-add` to add an identity to the agent
<reallymemorable> i just did
chreekat has joined #nixos
<reallymemorable> and same error
<clever> reallymemorable: are you using fetchGitPrivate?
<reallymemorable> in configuration.nix?
<clever> reallymemorable: in whatever is accessing gitlab
<reallymemorable> thats the old protocol right?
<gchristensen> please don't use fetchGitPrivate o
<reallymemorable> yeah i remember we talked about this before
<reallymemorable> this is a legacy project
<clever> gchristensen: some people still need it, to fetch submodules
<reallymemorable> i cant do anything about it
<gchristensen> :(
<reallymemorable> apparently the engineers will be updating soon
<reallymemorable> but in the meantime i have to be able to build the project
<elvishjerricco> builtins.fetchGit really needs submodules...
<infinisil> Shouldn't be too hard to add support for that in Nix
<infinisil> Although..
<elvishjerricco> infinisil: It's a little hard because of the whole super repo thing
* infinisil looks at the fetchGit implementation
<ajs124> infinisil, while you're add it, can you add this, but in less extremely hacky: https://github.com/ajs124/nix/commit/e3e6c1a8afceae4750223e119319da5a5b62b01e
<reallymemorable> this is the contents of /tmp/ssh-config
<reallymemorable> StrictHostKeyChecking=no
<reallymemorable> UserKnownHostsFile /dev/null
<elvishjerricco> oof, it uses `git archive` too; notoriously difficult to make that export submodules as well
<infinisil> ajs124: I wish I could tell you that I knew C++..
sigmundv_ has joined #nixos
<reallymemorable> does that look correct?
<infinisil> elvishjerricco: Maybe just archive each submodule separately, then assemble together for the store path
<elvishjerricco> submodules are a really dumb, stapled-on feature in git with no viable alternative :/
<elvishjerricco> infinisil: Yea but finding where to put them is annoying, plus having to pack and unpack a bunch of times
<elvishjerricco> plus it's even harder when there are recursive submodules
<ajs124> elvishjerricco, you can just list them in a custom fetcher and reassable it, like infinisil said. That's how I use android's repo tool now.
timokau has joined #nixos
jluttine has quit [Ping timeout: 245 seconds]
<infinisil> elvishjerricco: git submodule --quiet foreach --recursive 'echo $sm_path'
<infinisil> Seems to work :o
<reallymemorable> can anyone help me?
chreekat has quit [Ping timeout: 252 seconds]
chreekat has joined #nixos
jluttine has joined #nixos
ninjin has quit [Ping timeout: 256 seconds]
ninjin has joined #nixos
timokau has quit [Ping timeout: 246 seconds]
mekeor has joined #nixos
jluttine has quit [Ping timeout: 272 seconds]
drakonis has quit [Read error: Connection reset by peer]
drakonis_ has joined #nixos
<{^_^}> [nixpkgs] @rkoe opened pull request #57998 → mkdocs 0.17.5 -> 1.0.4 → https://git.io/fjfKa
thc202 has quit [Ping timeout: 250 seconds]
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage-packages.nix: automatic Haskell package set update »: https://git.io/fjfKV
philippD has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
adetokunbo has joined #nixos
drakonis has joined #nixos
bemeurer has joined #nixos
<{^_^}> Channel nixos-19.03-small advanced to https://github.com/NixOS/nixpkgs/commit/91cb80e4397 (from 3 hours ago, history: https://channels.nix.gsc.io/nixos-19.03-small)
jluttine has joined #nixos
drakonis_ has quit [Ping timeout: 268 seconds]
zakkor has quit [Quit: Connection closed for inactivity]
filterfish has quit [Remote host closed the connection]
<bemeurer> What does $''' STUFF $''' mean in Nix?
boogiewoogie has quit [Remote host closed the connection]
<samueldr> bemeurer: could you give a more specific, more full example in context?
<bemeurer> From the home-manager manpages, on L12 of the gist
stepcut has joined #nixos
o1lo01ol1o has quit [Remote host closed the connection]
<simpson> Hm. My gdb fails to start; it gives the standard blurb, "munmap_chunk(): invalid pointer", then aborts. It does this even if run with no arguments. I don't have any kind of rc file.
rcshm has quit [Ping timeout: 250 seconds]
<samueldr> bemeurer: this isn't valid nix, I'm wondering what the intent was behind
o1lo01ol1o has joined #nixos
<bemeurer> samueldr: Hmm, maybe a typo?
<samueldr> and it looks like it should maybe be a multi-line string; the kind of string with a double-single-quote on each end
vk3wtf has quit [Ping timeout: 268 seconds]
<samueldr> maybe some manual escape gone wrong?
rcshm has joined #nixos
<samueldr> ah right
<samueldr> > '''''''
<infinisil> bemeurer: Yeah apparently somebody messed up the escaping
<infinisil> Bot was dead whoops
<samueldr> > '''''''
<{^_^}> "''"
<samueldr> it probably was conflated with escaping $ sequences
<samueldr> > ''''${}''
<{^_^}> "${}"
<samueldr> from the manual: Since ${ and '' have special meaning in indented strings, you need a way to quote them. $ can be escaped by prefixing it with '' (that is, two single quotes), i.e., ''$. '' can be escaped by prefixing it with ', i.e., '''. $ removes any special meaning from the following $. Linefeed, carriage-return and tab characters can be written as ''\n, ''\r, ''\t, and ''\ escapes any other character.
<infinisil> There should be a string escaping game, where you have some transformations (e.g. bash -> Nix -> Haskell), and you need to input correct syntax for it to end up as a specific target output :P
EEERRRRRRASMUS has quit [Read error: Connection reset by peer]
<samueldr> I'm already frustrated
fusion809 has joined #nixos
o1lo01ol1o has quit [Remote host closed the connection]
Fare has joined #nixos
chreekat has quit [Ping timeout: 252 seconds]
romildo has quit [Ping timeout: 252 seconds]
wfranzini has quit [Remote host closed the connection]
wfranzini has joined #nixos
silver has quit [Read error: Connection reset by peer]
chreekat has joined #nixos
drakonis1 has joined #nixos
rcshm has quit []
Supersonic has quit [Disconnected by services]
Supersonic112 has joined #nixos
Supersonic112 is now known as Supersonic
work_ has quit [Quit: Connection closed for inactivity]
o1lo01ol1o has joined #nixos
<{^_^}> [nixpkgs] @artemist opened pull request #58000 → Factorio → https://git.io/fjf6f
adetokunbo has quit [Quit: This computer has gone to sleep]
chreekat has quit [Remote host closed the connection]
reallymemorable has quit [Ping timeout: 272 seconds]
bgamari has quit [Remote host closed the connection]
<bemeurer> How do I escape '' in a Nix multiline string?
<bemeurer> Oh '''
<bemeurer> Jeez
slack1256 has quit [Remote host closed the connection]
chreekat has joined #nixos
romildo has joined #nixos
sigmundv_ has quit [Read error: Connection reset by peer]
bgamari has joined #nixos
<{^_^}> [nixpkgs] @lopsided98 opened pull request #58001 → linux_rpi: 1.20180919 -> 1.20190215 → https://git.io/fjf6u
drakonis_ has joined #nixos
reallymemorable has joined #nixos
timokau has joined #nixos
sigmundv has quit [Ping timeout: 255 seconds]
mekeor has quit [Quit: digital revolution = cryptoanarchism + cybercommunism]
countingsort has joined #nixos
ng0_ has joined #nixos
drakonis has quit [Ping timeout: 252 seconds]
drakonis has joined #nixos
buffet has quit [Ping timeout: 244 seconds]
romildo has quit [Quit: Leaving]
ng0 has quit [Ping timeout: 256 seconds]
sigmundv has joined #nixos
drakonis_ has quit [Ping timeout: 246 seconds]
timokau has quit [Ping timeout: 252 seconds]
stepcut has quit [Remote host closed the connection]
stepcut has joined #nixos
simukis has quit [Remote host closed the connection]
Orbstheorem has quit [Ping timeout: 252 seconds]
sigmundv has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @worldofpeace pushed 7 commits to master: https://git.io/fjf6r
<bemeurer> What's the bot to search for which package contains a certain file?
<bemeurer> (I'm looking for clangd and libclang.so)
stepcut has quit [Ping timeout: 246 seconds]
<jackdk> ,locate libclang.so
<{^_^}> Found in packages: rstudio, emscriptenfastcomp, llvmPackages.clang-unwrapped.lib
<jackdk> bemeurer^
stepcut has joined #nixos
<bemeurer> jackdk: Oh, thank you :)
<bemeurer> , locate clangd
<{^_^}> Invalid command syntax
<jackdk> ,locate clangd
<bemeurer> ,locate clangd
<bemeurer> Uh-oh
<{^_^}> Found in packages: jetbrains.clion, llvmPackages.clang-unwrapped
<{^_^}> Found in packages: jetbrains.clion, llvmPackages.clang-unwrapped
<jackdk> {^_^}++
<{^_^}> {^_^}'s karma got increased to 155
<bemeurer> :D
vk3wtf has joined #nixos
<bemeurer> jackdk: So I would write "${pkgs.llvmPackages.clang-unwrapped.lib}/lib/libclang.so"?
<jackdk> I.. suspect so? Why not try it and see what happens?
<{^_^}> [nixpkgs] @worldofpeace pushed to release-19.03 « wire-desktop: 3.6.2885 -> 3.7.2891 »: https://git.io/fjf6X
<jackdk> (I haven't been following scrollback and don't know what you're aiming to do)
<bemeurer> jackdk: How could I verify it in a nix-repl?
<bemeurer> jackdk: I'm porting my neovim config to home-manager
<bemeurer> Oh, wait
<bemeurer> I just realized I don't need these anymore :D
<jackdk> I don't know neovim nor home-manager
wfranzini has quit [Remote host closed the connection]
stepcut has quit [Ping timeout: 250 seconds]
wfranzini has joined #nixos
<jackdk> `:b (import <nixpkgs> {}).pkgs.llvmPackages.clang-unwrapped.lib` in a `nix repl` will build the derivation and show you where the output paths are
Orbstheorem has joined #nixos
ddellacosta has joined #nixos
o1lo01ol1o has quit [Remote host closed the connection]
kvda has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
i1nfusion has quit [Remote host closed the connection]
i1nfusion has joined #nixos
ikitat has quit [Ping timeout: 246 seconds]
chreekat has quit [Remote host closed the connection]
timokau has joined #nixos
chreekat has joined #nixos
timokau has quit [Ping timeout: 255 seconds]
o1lo01ol1o has joined #nixos
Myhlamaeus has quit [Ping timeout: 252 seconds]
Wulfsta has joined #nixos
o1lo01ol1o has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @veprbl merged pull request #58000 → Factorio: experimental 0.17.14 → 0.17.16 → https://git.io/fjf6f
<{^_^}> [nixpkgs] @veprbl pushed commit from @artemist to master « factorio: experimental 0.17.14 → 0.17.16 (#58000) »: https://git.io/fjf6j
pie___ has joined #nixos
cyraxjoe has quit [Ping timeout: 244 seconds]
rprije has quit [Read error: Connection reset by peer]
pie__ has quit [Ping timeout: 246 seconds]
rprije has joined #nixos
cyraxjoe has joined #nixos
<{^_^}> [nixpkgs] @ryantm opened pull request #58002 → apulse: 0.1.11.1 -> 0.1.12, cleanup → https://git.io/fjfif
doyougnu has quit [Ping timeout: 245 seconds]
<{^_^}> Channel nixos-19.03 advanced to https://github.com/NixOS/nixpkgs/commit/91cb80e4397 (from 6 hours ago, history: https://channels.nix.gsc.io/nixos-19.03)
rprije has quit [Read error: Connection reset by peer]
rprije has joined #nixos
ikitat has joined #nixos
vk3wtf has quit [Ping timeout: 252 seconds]
<{^_^}> [nixpkgs] @veprbl opened pull request #58003 → pythonPackages.pyhepmc: fix build → https://git.io/fjfiq
ikitat has quit [Ping timeout: 245 seconds]
kvda has joined #nixos
jackdk has quit [Ping timeout: 245 seconds]
Rusty1 has quit [Quit: Konversation terminated!]
oldandwise has joined #nixos
<{^_^}> [nixpkgs] @dtzWill closed pull request #57894 → ffsend: 0.2.36 -> 0.2.37 → https://git.io/fjvp0
<{^_^}> [nixpkgs] @dtzWill merged pull request #57970 → llvmPackages_8: rc5 -> 8.0.0 release! → https://git.io/fjfEZ
<{^_^}> [nixpkgs] @dtzWill pushed 4 commits to master: https://git.io/fjfis
<oldandwise> i have a Samsung Wifi USB dongle (which i tested working when inserted in another linux laptop). But it's causing my nixos wpa_supplicant to shutdown and i lost wifi. `lsusb` and `dmesg` can see it, somehow it felt like it is conflicting my existing wlp3s0. Logs shows https://termbin.com/kxqs
timokau has joined #nixos
vk3wtf has joined #nixos
endformationage has quit [Ping timeout: 272 seconds]
johnw has quit [Ping timeout: 246 seconds]
johnw has joined #nixos
timokau has quit [Ping timeout: 244 seconds]
abathur has quit [Quit: abathur]
jasongrossman has quit [Quit: ERC (IRC client for Emacs 26.1)]
<{^_^}> Channel nixos-19.03-small advanced to https://github.com/NixOS/nixpkgs/commit/41c989c1419 (from 2 hours ago, history: https://channels.nix.gsc.io/nixos-19.03-small)
agander has joined #nixos
jasongrossman has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #58004 → atlassian-cli: 7.8.0 -> 8.0.0 → https://git.io/fjfiR
kvda has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
vk3wtf has quit [Ping timeout: 252 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #58005 → audit: 2.8.4 -> 2.8.5 → https://git.io/fjfi2
rauno has quit [Remote host closed the connection]
tmaekawa has joined #nixos
chreekat has quit [Remote host closed the connection]
kvda has joined #nixos
edouard has joined #nixos
troydm has quit [Ping timeout: 250 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #58006 → autorandr: 1.7 -> 1.8 → https://git.io/fjfiw
Fare has quit [Ping timeout: 246 seconds]
chreekat has joined #nixos
wfranzini has quit [Remote host closed the connection]
edouard has quit []
timokau has joined #nixos
drakonis_ has joined #nixos
romanofski has quit [Ping timeout: 252 seconds]
drakonis has quit [Ping timeout: 245 seconds]
<{^_^}> Channel nixos-unstable advanced to https://github.com/NixOS/nixpkgs/commit/373488e6f4c (from 2 days ago, history: https://channels.nix.gsc.io/nixos-unstable)
drakonis1 has quit [Ping timeout: 252 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #58007 → bacula: 9.4.1 -> 9.4.2 → https://git.io/fjfiP
oldandwise has quit [Ping timeout: 246 seconds]
mkoenig has quit [Ping timeout: 245 seconds]
timokau has quit [Ping timeout: 246 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #58008 → babl: 0.1.60 -> 0.1.62 → https://git.io/fjfiX
mkoenig has joined #nixos
samrose has quit [Ping timeout: 250 seconds]
samrose has joined #nixos
chreekat has quit [Remote host closed the connection]
noonien has quit [Quit: Connection closed for inactivity]
chreekat has joined #nixos
drakonis_ has quit [Read error: Connection reset by peer]
drakonis_ has joined #nixos
Myhlamaeus has joined #nixos
mkoenig has quit [Remote host closed the connection]
reallymemorable has quit [Ping timeout: 250 seconds]
palo1 has joined #nixos
vincentpants has joined #nixos
<vincentpants> guys. hello. I've never been on here. I'm falling in love with nixos but I can't figure out how the hell to explicitly install a specific package version number.
palo has quit [Ping timeout: 246 seconds]
palo1 is now known as palo
kvda has quit [Ping timeout: 244 seconds]
<{^_^}> [nixpkgs] @Mic92 opened pull request #58009 → glibcLocales: also build C.UTF-8 → https://git.io/fjfix
freeman42x has quit [Ping timeout: 252 seconds]
<vincentpants> my system is stuck with opendht 1.7.4 , but the nixpkgs repo says 1.8.0, and this is making all my shit break
<vincentpants> ^ clarification*
drakonis has joined #nixos
bemeurer has quit [Ping timeout: 252 seconds]
<{^_^}> [nixpkgs] @worldofpeace pushed commit from @mat8913 to release-19.03 « flatpak: Fix bubblewrap paths for icon-validator »: https://git.io/fjfPf
drakonis_ has quit [Ping timeout: 252 seconds]
bemeurer has joined #nixos
<{^_^}> [nixpkgs] @Mic92 merged pull request #57994 → Python language server 0.25.0 → https://git.io/fjfrV
<{^_^}> [nixpkgs] @Mic92 pushed 3 commits to master: https://git.io/fjfPU
<{^_^}> [nixpkgs] @r-ryantm opened pull request #58010 → bitlbee: 3.5.1 -> 3.6 → https://git.io/fjfPT
dnlkrgr has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #58011 → bluez-alsa: 1.3.1 -> 1.4.0 → https://git.io/fjfPm
ikitat has joined #nixos
ddellacosta has quit [Ping timeout: 246 seconds]
ikitat has quit [Ping timeout: 246 seconds]
<{^_^}> [nixpkgs] @Izorkin opened pull request #58012 → nixos/zsh: move zsh setopt → https://git.io/fjfPY
<{^_^}> [nixpkgs] @Mic92 opened pull request #58013 → radare2-cutter: 1.7.2 -> 1.8.0 → https://git.io/fjfP3
<Izorkin> Mic92: please check commit)
<Mic92> vincentpants: Try an unstable channel.
<{^_^}> [nixpkgs] @jagajaga merged pull request #58002 → apulse: 0.1.11.1 -> 0.1.12, cleanup → https://git.io/fjfif
rauno has joined #nixos
<{^_^}> [nixpkgs] @jagajaga pushed 2 commits to master: https://git.io/fjfPs
Myhlamaeus has quit [Ping timeout: 252 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #58014 → bowtie2: 2.3.4.3 -> 2.3.5 → https://git.io/fjfPc
<{^_^}> [nixpkgs] @r-ryantm opened pull request #58015 → brltty: 5.6 -> 6.0 → https://git.io/fjfPl
<vincentpants> greping now. thank you Mic92
raduom has quit [Read error: Connection reset by peer]
agent13 is now known as sam_d
chreekat has quit [Remote host closed the connection]
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/bb7e9e46a0d (from 2 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
knupfer has joined #nixos
chreekat has joined #nixos
timokau has joined #nixos
knupfer has quit [Remote host closed the connection]
timokau has quit [Ping timeout: 245 seconds]
knupfer has joined #nixos
hyper_ch2 has joined #nixos
<{^_^}> [nixpkgs] @Mic92 merged pull request #56011 → tt-rss-theme-feedly: Package additional themes → https://git.io/fhdtn
<{^_^}> [nixpkgs] @Mic92 pushed 2 commits to master: https://git.io/fjfPg
knupfer has quit [Ping timeout: 264 seconds]
<{^_^}> [nixpkgs] @Mic92 pushed commit from @dasJ to release-19.03 « tt-rss-theme-feedly: Package additional themes »: https://git.io/fjfP2
<{^_^}> [nixpkgs] @Mic92 merged pull request #58013 → radare2-cutter: 1.7.2 -> 1.8.0 → https://git.io/fjfP3
<{^_^}> [nixpkgs] @Mic92 pushed 2 commits to master: https://git.io/fjfPa
agander_ has joined #nixos
agander__ has joined #nixos
agander has quit [Ping timeout: 252 seconds]
agander has joined #nixos
agander_ has quit [Ping timeout: 245 seconds]
regulus_ has quit [Ping timeout: 246 seconds]
agander__ has quit [Ping timeout: 246 seconds]
agander_ has joined #nixos
<{^_^}> Channel nixos-19.03-small advanced to https://github.com/NixOS/nixpkgs/commit/6f2fc318379 (from 58 minutes ago, history: https://channels.nix.gsc.io/nixos-19.03-small)
jbgi has joined #nixos
agander has quit [Ping timeout: 246 seconds]
infinee has joined #nixos
chreekat has quit [Ping timeout: 245 seconds]
regulus_ has joined #nixos
<{^_^}> [nixpkgs] @Mic92 merged pull request #58006 → autorandr: 1.7 -> 1.8 → https://git.io/fjfiw
<{^_^}> [nixpkgs] @Mic92 pushed 2 commits to master: https://git.io/fjfPK
wfranzini has joined #nixos
Ariakenom has joined #nixos
Glider_IRC_ has joined #nixos
chreekat has joined #nixos
Glider_IRC__ has quit [Ping timeout: 252 seconds]
reinhardt has joined #nixos
<{^_^}> [nixpkgs] @Mic92 merged pull request #57997 → terraform_0_11: 0.11.11 -> 0.11.13 → https://git.io/fjfoA
<{^_^}> [nixpkgs] @Mic92 pushed 2 commits to master: https://git.io/fjfPP
<{^_^}> [nixpkgs] @dywedir merged pull request #57971 → newsboat: 2.14 -> 2.14.1 → https://git.io/fjfEd
<{^_^}> [nixpkgs] @dywedir pushed 2 commits to master: https://git.io/fjfPX
Makaveli7 has joined #nixos
<{^_^}> [nixpkgs] @Mic92 pushed commit from @bernadinm to release-19.03 « terraform_0_11: 0.11.11 -> 0.11.13 »: https://git.io/fjfP1
<{^_^}> [nixpkgs] @r-ryantm opened pull request #58016 → cbc: 2.9.9 -> 2.10.0 → https://git.io/fjfP9
dnlkrgr has quit [Ping timeout: 246 seconds]
dnlkrgr has joined #nixos
ng0_ has quit [Quit: Alexa, when is the end of world?]
<{^_^}> [nixpkgs] @dotlambda opened pull request #58017 → home-assistant: 0.89.2 -> 0.90.0 → https://git.io/fjfP5
m0rphism has joined #nixos
agander_ has quit [Ping timeout: 245 seconds]
chreekat has quit [Ping timeout: 250 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #58018 → cflow: 1.5 -> 1.6 → https://git.io/fjfPb
timokau has joined #nixos
jbgi has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @dotlambda opened pull request #58019 → qutebrowser: 1.6.0 -> 1.6.1 → https://git.io/fjfPh
timokau has quit [Ping timeout: 246 seconds]
chreekat has joined #nixos
jbgi has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #58020 → chkrootkit: 0.52 -> 0.53 → https://git.io/fjfXe
johanot has joined #nixos
zupo has joined #nixos
Makaveli7 has quit [Quit: Leaving]
vincentpants has quit [Ping timeout: 272 seconds]
<{^_^}> [nix] @lheckemann opened pull request #2739 → manual: include builtins.* for globally available builtins → https://git.io/fjfXL
Anton-Latukha has joined #nixos
chreekat has quit [Remote host closed the connection]
timokau has joined #nixos
periklis has joined #nixos
linarcx has joined #nixos
chreekat has joined #nixos
civodul has joined #nixos
<{^_^}> [nixpkgs] @dotlambda merged pull request #57904 → python.pkgs.mecab-python3: fix build → https://git.io/fjfUp
<{^_^}> [nixpkgs] @dotlambda pushed 3 commits to master: https://git.io/fjfX3
<johanot> anyone who knows PyPi in here? I get https://gist.github.com/johanot/83fa971937a92609c8be24f96b39e5c7 when trying to download click version 6.7 - even though it is clearly there in "Release history".
<{^_^}> [nixpkgs] @dotlambda pushed 2 commits to release-19.03: https://git.io/fjfXs
timokau has quit [Ping timeout: 250 seconds]
<bricewge> I don't understand why `nix-shell --pure -p tomb --command "tomb -h"` fail but `nix-shell --pure -p tomb zsh --command "zsh -c tomb -h"` works correctly...
<bricewge> Is it possible there is an issue with `wrapProgram` there?
Makaveli7 has joined #nixos
linarcx has quit [Ping timeout: 245 seconds]
<johanot> bricewge: how does it fail exactly?
<sphalerite> bricewge: apparently tomb wants to use pinentry, but doesn't have it as a hardcoded dependency
vincentpants has joined #nixos
<bricewge> It returns `tomb [E] Missing required dependency pinentry. Please install it.` but not with zsh
<{^_^}> [nixpkgs] @dotlambda merged pull request #57926 → python.pkgs.hglib: use patch to specify hg path → https://git.io/fjfOO
<sphalerite> bricewge: this makes sense, since users are likely to want to use different pinentries, e.g. the gtk one etc
<{^_^}> [nixpkgs] @dotlambda pushed to master « python.pkgs.hglib: use patch to specify hg path (#57926) »: https://git.io/fjfXc
linarcx has joined #nixos
<sphalerite> bricewge: but the --pure means that /run/current-system/bin (if on nixos) and ~/.nix-profile/bin aren't on your $PATH
<sphalerite> bricewge: presumably zsh sources some file that puts ~/.nix-profile/bin on the PATH anyway.
reinhardt has quit [Ping timeout: 255 seconds]
<sphalerite> bricewge: but the solution, I'd say, is not to use --pure :)
<{^_^}> [nixpkgs] @dotlambda pushed to release-19.03 « python.pkgs.hglib: use patch to specify hg path (#57926) »: https://git.io/fjfXW
<linarcx> Hi guys. I'm creating a python package but get this error when i want to build it: `error: anonymous function at /home/linarcx/nixpkgs/pkgs/tools/networking/persepolis/default.nix:1:1 called without required argument 'buildPythonApplication', at /home/linarcx/nixpkgs/lib/customisation.nix:69:12`
<sphalerite> linarcx: use python[3]Packages.callPackage rather than plain callPackage
<bricewge> Actually I'm trying to fix the tomb package, and even adding pinentry to bindInputs doesn't change this.
<linarcx> sphalerite: Why?
<sphalerite> bricewge: you'd need to wrap it to add pinentry to $PATH. But IMO this isn't a packaging bug.
<sphalerite> bricewge: also, I'd *append* pinentry to the PATH so if the user has their own pinentry installed that still gets preferred
<sphalerite> linarcx: because pkgs.callPackage will only "fill in the blanks" with attributes from pkgs, but buildPythonApplication lives in pythonPackages and python3Packages
<bricewge> sphalerite: It's already added to the PATH
<linarcx> sphalerite: Ah, thank you.
<sphalerite> bricewge: oh, so it is. That's odd.
goibhniu has joined #nixos
<bricewge> sphalerite: And `nix-shell --pure -p tomb zsh --command "zsh -fc tomb -h"` shoudn't use the nix-profile and it have the same outcome
agander_ has joined #nixos
<bricewge> Yes I know that's why I'm asking here, I don't really understand what's going on here
linarcx has quit [Ping timeout: 252 seconds]
<bricewge> What's odd is if I change the interpreter of the wrapper from bash to zsh it works (still being in `nix-shell --pure`)
<sphalerite> potentially related to the line in tomb `path+=( /sbin /usr/sbin )`..?
<sphalerite> I wouldn't be surprised if this was related to tomb being written in zhs
<sphalerite> zsh
<bricewge> Maybe I d'ont know what it does it's saying "MAGIC"...
linarcx has joined #nixos
Makaveli7 has quit [Quit: Leaving]
<bricewge> It looks like it, do you know another package written in zsh where I can learn from
Makaveli7 has joined #nixos
obadz has quit [Ping timeout: 246 seconds]
reinhardt has joined #nixos
linarcx has quit [Ping timeout: 255 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #58021 → cpptest: 1.1.2 -> 2.0.0 → https://git.io/fjfXw
domogled has joined #nixos
domogled has quit [Client Quit]
domogled has joined #nixos
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #58022 → crispyDoom: 5.4 -> 5.5.1 → https://git.io/fjfXX
<{^_^}> [nixpkgs] @johanot opened pull request #58023 → pythonPackages.elasticsearch-curator: pass "click" dependency in version 6.7 → https://git.io/fjfXM
thc202 has joined #nixos
i1nfusion has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @nlewo opened pull request #58024 → openstackImage: set the / fsType to reenable root FS resizing → https://git.io/fjfXH
i1nfusion has joined #nixos
tmaekawa has quit [Ping timeout: 272 seconds]
domogled1 has joined #nixos
domogled has quit [Ping timeout: 255 seconds]
domogled1 is now known as domogled
<{^_^}> Channel nixos-19.03-small advanced to https://github.com/NixOS/nixpkgs/commit/60e937361d8 (from 2 hours ago, history: https://channels.nix.gsc.io/nixos-19.03-small)
grizwako has quit [Read error: No route to host]
grizwako_ has joined #nixos
janneke has quit [Quit: janneke quits Mes'sing]
janneke has joined #nixos
regulus_ has quit [Ping timeout: 245 seconds]
rauno has quit [Ping timeout: 240 seconds]
regulus_ has joined #nixos
vincentpants has quit [Ping timeout: 245 seconds]
timokau has joined #nixos
vk3wtf has joined #nixos
sinner has joined #nixos
sinner is now known as Guest30775
<{^_^}> [nixpkgs] @Mic92 merged pull request #57996 → thunderbird, thunderbird-bin: 60.5.2 -> 60.6.0 → https://git.io/fjfo1
Guest44467 has quit [Ping timeout: 245 seconds]
<{^_^}> [nixpkgs] @Mic92 pushed 3 commits to master: https://git.io/fjf1l
chreekat has quit [Ping timeout: 245 seconds]
timokau has quit [Ping timeout: 252 seconds]
periklis has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @Mic92 merged pull request #58009 → glibcLocales: also build C.UTF-8 → https://git.io/fjfix
<{^_^}> [nixpkgs] @Mic92 pushed 2 commits to staging: https://git.io/fjf1B
rauno has joined #nixos
<{^_^}> [nixpkgs] @Mic92 pushed to staging-19.03 « glibcLocales: also build C.UTF-8 »: https://git.io/fjf1E
periklis has joined #nixos
<{^_^}> [nixpkgs] @Mic92 merged pull request #57993 → Added vim-tmux-navigator plugin to tmux-plugins → https://git.io/fjfrR
<{^_^}> [nixpkgs] @Mic92 pushed 2 commits to master: https://git.io/fjf1g
timeyyy has joined #nixos
ksixty has quit [Remote host closed the connection]
vincentpants has joined #nixos
<{^_^}> [nixpkgs] @Mic92 merged pull request #58020 → chkrootkit: 0.52 -> 0.53 → https://git.io/fjfXe
<{^_^}> [nixpkgs] @Mic92 pushed 2 commits to master: https://git.io/fjf1w
<{^_^}> [nixpkgs] @Mic92 merged pull request #57439 → python37Packages.pyroute2: 0.5.3 -> 0.5.4 → https://git.io/fhj4D
<{^_^}> [nixpkgs] @Mic92 pushed 2 commits to master: https://git.io/fjf1r
<{^_^}> [nixpkgs] @contrun opened pull request #58025 → cassandra 3.11.3 -> 3.11.4 → https://git.io/fjf1K
<linarcx[m]> Guys. i have an issue to build a python package locally. can anyone help me:
<{^_^}> [nixpkgs] @Mic92 merged pull request #58003 → pythonPackages.pyhepmc: fix build → https://git.io/fjfiq
<{^_^}> [nixpkgs] @Mic92 pushed 2 commits to master: https://git.io/fjf1P
<timeyyy> Hi, Fairly new to Nix, here. I'm testing it out just the package manager and am having trouble installing glibcLocales, I tried with the channels nixpkgs-unstable and nixospkgs-unstable. So `nix-env -iA nixos.glibcLocales` -> `error: expression does not evaluate to a derivation (or a set or list of those)`
<srhb> timeyyy: You're using Nix on some other OS?
neminis has quit [Quit: WeeChat 2.2]
<{^_^}> [nixpkgs] @Mic92 pushed commit from @veprbl to release-19.03 « pythonPackages.pyhepmc: fix build »: https://git.io/fjf1M
<srhb> timeyyy: I'm a git confused with the error you're getting. Can you pastebin the output of nix-channel --list ?
chreekat has joined #nixos
<{^_^}> [nixpkgs] @dywedir pushed to master « maintainers: update email for dywedir »: https://git.io/fjf1D
<timeyyy> Yes I'm using nix on mac.
lukego has joined #nixos
<srhb> timeyyy: I would expect you to use either nix-env -iA nixpkgs-unstable.glicLocales or nix-env -iA nixospkgs-unstable.glibcLocales
<timeyyy> nix-channel --list -> https://pastebin.com/T9jXZw0r
<srhb> timeyyy: That said, I feel like the problem is probably that you're on Mac
<srhb> timeyyy: What does this say: nix eval -f '<nixpkgs>' stdenv.hostPlatform.libc
__monty__ has joined #nixos
rycwo has joined #nixos
<timeyyy> nix eval -f '<nixpkgs>' stdenv.hostPlatform.libc -> "libSystem"
kvda has joined #nixos
<srhb> timeyyy: Right, that's the problem. Here's the definition of glibcLocales: glibcLocales = if stdenv.hostPlatform.libc == "glibc" then callPackage ../development/libraries/glibc/locales.nix { } else null;
<srhb> So essentially, it is null on Darwin.
<timeyyy> Ok, Thanks for the help
jasongrossman has quit [Quit: ERC (IRC client for Emacs 26.1)]
<timeyyy> Is there an equivalent? I'm experience a bug that other people have solved with this gist https://gist.github.com/peti/2c818d6cb49b0b0f2fd7c300f8386bc3. But it involves using glibclocales :/
jasongrossman has joined #nixos
__Sander__ has joined #nixos
ilmu has quit [Ping timeout: 246 seconds]
civodul has quit [Ping timeout: 240 seconds]
drakonis has quit [Remote host closed the connection]
winem_ has joined #nixos
<srhb> timeyyy: Sorry, I don't know how Darwin works really. :)
countingsort is now known as buffet
chreekat has quit [Ping timeout: 244 seconds]
kvda has quit [Ping timeout: 268 seconds]
vincentpants has quit [Ping timeout: 246 seconds]
chreekat has joined #nixos
<lukego> I can't find working values for my LC_* locale variables on my NixOS box. It's really wearing me down with errors like: git: loadlocale.c:129: _nl_intern_locale_data: Assertion `cnt < (sizeof (_nl_value_type_LC_TIME) / sizeof (_nl_value_type_LC_TIME[0]))' failed
<timeyyy> srhb: No worries, Thanks for helping me out!
<lukego> I've googled and chased a bunch of semi-related Issues but never come upon a solution. Does anybody know one?
<lukego> The nearest I've come is setting LC_ALL=en which gives me warnings instead of errors: /nix/store/a9i0a06gcs8w9fj9nghsl0b6vvqpzpi4-bash-4.4-p23/bin/bash: warning: setlocale: LC_ALL: cannot change locale (en)
orivej_ has quit [Ping timeout: 246 seconds]
adetokunbo has joined #nixos
alex`` has joined #nixos
sigmundv has joined #nixos
Jetien has joined #nixos
ilmu has joined #nixos
<das_j> Is tehre anything special when overriding systemd in an overlay? I get an infitite recursion while evaluating the attribute 'buildInputs' of the derivation 'util-linux-2.32.1'
<{^_^}> [nixpkgs] @DanielFabian opened pull request #58027 → Add gfxpayload to Grub → https://git.io/fjfME
<das_j> Ah, utillinux = super.utillinuxMinimal; did the trick
ThatDocsLady_ has joined #nixos
tv has quit [Ping timeout: 250 seconds]
vincentpants has joined #nixos
<linarcx[m]> Guys. When i want to build a python package locally, i get this error:
<linarcx[m]> `FileNotFoundError: [Errno 2] No such file or directory: 'setup.py'`
tv has joined #nixos
<__monty__> Sounds like the package is missing its setup.py.
Makaveli7 has quit [Quit: Leaving]
rprije has quit [Ping timeout: 255 seconds]
Ridout has quit [Quit: Lost terminal]
<teto> linarcx[m]: did you update the sha256 ? the setup.py exists on github so maybe you fetch the wrong src ?
<{^_^}> [nixpkgs] @tilpner opened pull request #58029 → godot: 3.0.6 -> 3.1 → https://git.io/fjfM5
rauno has quit [Remote host closed the connection]
infinee has quit [Quit: WeeChat 2.3]
timeyyy has quit [Quit: Page closed]
<das_j> What was the command to prepare a shell with all dependencies of a package?
<gchristensen> nix-shell -A hello
<{^_^}> [nixpkgs] @clefru opened pull request #58030 → Create texmf-local directory separate from texmf-dist. → https://git.io/fjfMp
<das_j> gchristensen: Thanks :)
<das_j> btw, is there a way to reload the expression apart from restarting the shell?
init_6 has joined #nixos
mekeor has joined #nixos
<{^_^}> [nixpkgs] @dotlambda opened pull request #58031 → elasticsearch-curator: add top-level package using older click → https://git.io/fjfDv
<mekeor> i configured gitlab through nix on my server. any idea why i get "invalid login or password" error when i try to login with the initial-root-email and -password which i set in the configuration?
simukis has joined #nixos
<mekeor> oh. services.gitlab.initialRootPassword is described as "Initial password of the root account if this is a new install". how can i force the configured inital-root-password to be reapplied? could i maybe simply delete /var/gitlab/ or so?
jbgi has quit [Ping timeout: 255 seconds]
periklis has quit [Ping timeout: 246 seconds]
<{^_^}> [nix] @edolstra merged pull request #2739 → manual: include builtins.* for globally available builtins → https://git.io/fjfXL
<{^_^}> [nix] @edolstra pushed 2 commits to master: https://git.io/fjfDc
vincentpants has quit [Ping timeout: 246 seconds]
<{^_^}> [nixpkgs] @ciil opened pull request #58032 → atlassian-confluence: 6.14.1 -> 6.14.2 → https://git.io/fjfDB
boogiewoogie has joined #nixos
timor has joined #nixos
<boogiewoogie> hey, when trying to enter a nix-shell on a simple default.nix, e.g. "hello" https://github.com/NixOS/nixpkgs/blob/45456fecc74f70476c583d4144019a1a9f48267e/pkgs/applications/misc/hello/default.nix#L15, I'm getting "error: cannot auto-call a function that has an argument without a default value ('stdenv')". what's going on?
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/9dcc876b37c (from 2 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
<therealwaphire[m> samueldr: solaar still doesn't work
<therealwaphire[m> same permission denied error.. do I need to the udev file to enable the access for the group plugdev?
rycwo has quit [Ping timeout: 272 seconds]
ng0 has joined #nixos
davidar_ has quit [Quit: Connection closed for inactivity]
<{^_^}> [nixpkgs] @zimbatm opened pull request #58033 → nixos/httpd: always test the generated configuration → https://git.io/fjfDo
jasongrossman has quit [Remote host closed the connection]
vidbina has joined #nixos
simukis has quit [Quit: simukis]
vincentpants has joined #nixos
silver has joined #nixos
<{^_^}> Channel nixos-19.03-small advanced to https://github.com/NixOS/nixpkgs/commit/b81f43c9c7a (from 2 hours ago, history: https://channels.nix.gsc.io/nixos-19.03-small)
vk3wtf has quit [Ping timeout: 258 seconds]
<{^_^}> [nixpkgs] @Mic92 opened pull request #58034 → [backport] thunderbird: 60.5.1 -> 60.6.0 → https://git.io/fjfD5
rauno has joined #nixos
agander_ has quit [Ping timeout: 255 seconds]
Fare has joined #nixos
vincentpants has quit [Ping timeout: 252 seconds]
boogiewoogie has quit [Remote host closed the connection]
pie_ has joined #nixos
balsoft has joined #nixos
<{^_^}> [nixpkgs] @dotlambda opened pull request #58035 → pythonPackages: multiple fixes → https://git.io/fjfyv
aanderse-work has joined #nixos
johanot has quit [Read error: Connection reset by peer]
boogiewoogie has joined #nixos
acarrico has quit [Ping timeout: 245 seconds]
<aanderse-work> zimbatm: you around?
Maxdamantus has quit [Ping timeout: 246 seconds]
jasongrossman has joined #nixos
Maxdamantus has joined #nixos
<gchristensen> I'm running diffoscope in a very minimal nixos-container environment, and I get the error "setupterm: could not find terminfo database". diffoscope is a python program. anyone know the fix?
johann__ has joined #nixos
<{^_^}> [nixpkgs] @worldofpeace merged pull request #57985 → shades-of-gray-theme: 1.1.5 -> 1.1.6 → https://git.io/fjfVC
<{^_^}> [nixpkgs] @worldofpeace pushed 2 commits to master: https://git.io/fjfyT
agander_ has joined #nixos
rauno has quit [Ping timeout: 252 seconds]
civodul has joined #nixos
drakonis has joined #nixos
<betaboon> gchristensen: maybe due to https://salsa.debian.org/reproducible-builds/diffoscope/blob/master/diffoscope/logging.py and $TERM not being set ?
<gchristensen> hrm. I don't have a TERM :)
<gchristensen> its a systemd service
<betaboon> gchristensen: hm but according to docu it should fallback to (80,24) - https://docs.python.org/3/library/shutil.html#shutil.get_terminal_size
waleee has joined #nixos
<gchristensen> hmm
<gchristensen> nice!
<sphalerite> bug report time!!
<{^_^}> [nixpkgs] @volth opened pull request #58036 → nixos/programs.captive-browser: init → https://git.io/fjfy3
rauno has joined #nixos
Rusty1 has joined #nixos
<gchristensen> first, I'm putting a TERM=xterm in my env :P
rycwo has joined #nixos
Jackneill has quit [Ping timeout: 245 seconds]
jbgi has joined #nixos
rauno has quit [Ping timeout: 240 seconds]
Jackneill has joined #nixos
pmiddend has joined #nixos
<pmiddend> I'd like to use a newer version of "pylint" in my shell.nix. I was able to adapt the src attribute using overrideAttrs. But it needs a newer version of "astroid", too. How do I force that?
Fare has quit [Ping timeout: 272 seconds]
<betaboon> pmiddend: `.override { astroid = ...; }`
rauno has joined #nixos
rycwo has quit [Ping timeout: 252 seconds]
agander__ has joined #nixos
<pmiddend> betaboon: Thanks!
linarcx has joined #nixos
Neo-- has joined #nixos
agander_ has quit [Ping timeout: 246 seconds]
linarcx has quit [Ping timeout: 245 seconds]
linarcx has joined #nixos
mekeor has quit [Ping timeout: 252 seconds]
ilmu has quit [Ping timeout: 268 seconds]
vincentpants has joined #nixos
civodul has quit [Ping timeout: 240 seconds]
drakonis_ has joined #nixos
vidbina has quit [Ping timeout: 245 seconds]
drakonis_ has quit [Read error: Connection reset by peer]
<linarcx> Anyone can help me to create this package?
drakonis_ has joined #nixos
drakonis has quit [Ping timeout: 255 seconds]
drakonis_ has quit [Read error: Connection reset by peer]
drakonis_ has joined #nixos
rycwo has joined #nixos
<tilpner> linarcx: betaboon: Is that homepage really set correctly? It seems unrelated to me
drakonis_ has quit [Read error: Connection reset by peer]
drakonis has joined #nixos
<betaboon> tilpner: ?
<tilpner> betaboon: I looked at your gist, and the description and homepage don't match up
<tilpner> Did you copy that and forget to update the description?
<betaboon> tilpner: yeah good find. i just copied the derivation from his reddit-post, fixed it and didnt look at that :D
drakonis has quit [Read error: Connection reset by peer]
<linarcx> tilpner: I'll fix it.
drakonis has joined #nixos
<linarcx> betaboon: Thank you so much. it's build and run correctly. but there is a small issue. i can't see any .desktop entry to launch it from rofi for example.
<sphalerite> linarcx: you'll probably need to add your own. There's a convenience function makeDesktopItem in nixpkgs for that
<betaboon> linarcx: there is one in their git. they do some very weird things in their setup.py i dont feel like fixing that for you.
<{^_^}> [nixpkgs] @Twey opened pull request #58037 → NeoComp: init at 2019-03-12 → https://git.io/fjfSq
<{^_^}> [nixpkgs] @ciil opened pull request #58038 → atlassian-confluence: 6.14.1 -> 6.14.2 (19.03) → https://git.io/fjfSm
<betaboon> linarcx: just look for DATA_FILES in their setup.py
<betaboon> linarcx: but i realy have the feeling, that they misunderstood something about using setup.py ...
<linarcx> betaboon: I'll open an issue about this `setup.py` issues and notify them to fix it.
<betaboon> linarcx: for the .desktop file take a look at this: https://nixos.org/nixpkgs/manual/#install_data-data_files-problems
<linarcx> betaboon: Thank you soooo much :)
<{^_^}> [nixpkgs] @ciil opened pull request #58039 → atlassian-confluence: 6.11.1 -> 6.14.2 (18.09) → https://git.io/fjfSZ
<{^_^}> [nixpkgs] @globin merged pull request #58032 → atlassian-confluence: 6.14.1 -> 6.14.2 → https://git.io/fjfDB
<{^_^}> [nixpkgs] @globin pushed commit from @ciil to master « atlassian-confluence: 6.14.1 -> 6.14.2 »: https://git.io/fjfSC
vincentpants has quit [Ping timeout: 245 seconds]
vincentpants has joined #nixos
Makaveli7 has joined #nixos
vincentpants has quit [Ping timeout: 245 seconds]
<{^_^}> [nix] @lheckemann opened pull request #2741 → eval: improve type description for primops and applied primops → https://git.io/fjfSF
drakonis has quit [Read error: Connection reset by peer]
<gchristensen> sphalerite++
<{^_^}> sphalerite's karma got increased to 47
<sphalerite> yay karma!
hodor123456 has joined #nixos
ggpeti has joined #nixos
domogled has quit [Ping timeout: 246 seconds]
ggpeti has quit [Client Quit]
hooo has joined #nixos
hooo is now known as hio
balsoft has quit [Remote host closed the connection]
domogled has joined #nixos
rauno has quit [Remote host closed the connection]
rauno has joined #nixos
viric_ has joined #nixos
viric has quit [Read error: Connection reset by peer]
chreekat has quit [Ping timeout: 268 seconds]
fendor has joined #nixos
acarrico has joined #nixos
<{^_^}> [nixpkgs] @nyanloutre opened pull request #58040 → riot-web: 1.0.3 -> 1.0.5 → https://git.io/fjf9n
chreekat has joined #nixos
Izorkin has quit [Quit: ZNC 1.7.2 - https://znc.in]
Izorkin has joined #nixos
<catern> hmm. why doesn't nix-env -i 'gnupg-1.*' work to install gnupg 1?
nocoolnametom has quit [Quit: ZNC 1.7.1 - https://znc.in]
jcrben has quit [Quit: Ping timeout (120 seconds)]
<catern> is it not possible to have a glob in the version number?
nocoolnametom has joined #nixos
jcrben has joined #nixos
Wulfsta has quit [Quit: Page closed]
Erasmus has joined #nixos
zupo has joined #nixos
<{^_^}> [nixpkgs] @nyanloutre opened pull request #58041 → mautrix-telegram: 0.5.0 -> 0.5.1 → https://git.io/fjf9o
Makaveli7 has quit [Quit: Leaving]
<waleee> catern: it's not actually named gnupg-1.XX (and I'd go with "probably not" on the glob)
<dminuoso> If nix teaches one thing, it's how horrible some packages in this world are. With so much configuration magic trying to locate libraries or hardcoded paths..
<dminuoso> It's pretty awful. :(
chreekat has quit [Ping timeout: 244 seconds]
<slabity> I know globs work when updating. But I don't think they work for installing...
<slabity> Nor do I think that should work. Otherwise `nix-env -i '*'` would be an easy typo from `nix-env -u '*'`
domogled has quit [Ping timeout: 244 seconds]
ng0 has quit [Quit: Alexa, when is the end of world?]
reallymemorable has joined #nixos
<waleee> slabity: I'm amazed that some package managers allow globbing when installing or uninstalling
<{^_^}> [nixpkgs] @globin merged pull request #58038 → atlassian-confluence: 6.14.1 -> 6.14.2 (19.03) → https://git.io/fjfSm
<{^_^}> [nixpkgs] @globin pushed commit from @ciil to release-19.03 « atlassian-confluence: 6.14.1 -> 6.14.2 »: https://git.io/fjf9d
<{^_^}> [nixpkgs] @globin merged pull request #58039 → atlassian-confluence: 6.11.1 -> 6.14.2 (18.09) → https://git.io/fjfSZ
<{^_^}> [nixpkgs] @globin pushed commit from @ciil to release-18.09 « atlassian-confluence: 6.11.1 -> 6.14.2 »: https://git.io/fjf9F
<musicmatze> slabity: whoops, that certainly should not be allowed. Maybe file an issue for nix?
NickSeagull has joined #nixos
reallymemorable has quit [Ping timeout: 245 seconds]
<{^_^}> [nixpkgs] @illegalprime opened pull request #58042 → erlang: cross compile support → https://git.io/fjfHT
knupfer has joined #nixos
hodor123456 has quit [Ping timeout: 252 seconds]
knupfer has quit [Client Quit]
knupfer has joined #nixos
reallymemorable has joined #nixos
<dminuoso> Trying to make my first real derivation. How do I feed the path to a package to my builder script?
<{^_^}> [nixpkgs] @matthewbauer merged pull request #57814 → mg: use build system pkg-config → https://git.io/fjvR4
<{^_^}> [nixpkgs] @matthewbauer pushed 2 commits to master: https://git.io/fjfHt
chreekat has joined #nixos
<dminuoso> Do I just drop an attribute in the final derivation set and use how its fed into an environment variable?
domogled has joined #nixos
<clever> dminuoso: 90% of the time, you dont want to set the builder attr, you want to use a string like buildPhase = ''...'';
<dminuoso> clever: I see. Would I feed the dependencies by interpolating into the buildPhase string, or rather put them into the set and extract them via environment variables?
<clever> dminuoso: by putting them into the buildInputs list
<{^_^}> [nixpkgs] @r-ryantm opened pull request #58043 → cups-filters: 1.22.1 -> 1.22.2 → https://git.io/fjfHY
ixxie has joined #nixos
<dminuoso> clever: Mmm. How do I recover a specific element then? I mean say I want to feed some `${pkgs.foo}/lib` path to the build process. If I add `pkgs.foo` to my buildInputs, it seems a bit messy to dig it out again, doesn't it?
rycwo has quit [Ping timeout: 252 seconds]
Maxdamantus has quit [Ping timeout: 272 seconds]
<clever> dminuoso: if you add pkgs.foo to buildInputs, then it will be injected into the search path for gcc, and `gcc -lfoo` will find it automatically
<clever> dminuoso: so you dont need to know where ${pkgs.foo}/lib is
buffet has quit [Quit: WeeChat 1.0.1]
vincentpants has joined #nixos
<dminuoso> clever: Ah but Im not building with gcc. In my case I really do need to manually specify this ${pkgs.foo}/lib because of a really weird transitive dependency.
<dminuoso> It's a hacky ruby native library.
<clever> dminuoso: ah, then you probably want to just insert ${pkgs.foo}/lib somewhere in your buildPhase
<dminuoso> clever: I see, I think I can make that work. Thank you a lot. :)
buffet_ has joined #nixos
<{^_^}> [nixpkgs] @ryantm opened pull request #58044 → aravis: 0.5.13 -> 0.6.1, cleanup → https://git.io/fjfH4
hodor123456 has joined #nixos
orivej has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #58045 → cvs_fast_export: 1.45 -> 1.47 → https://git.io/fjfHB
<{^_^}> [nixpkgs] @illegalprime opened pull request #58046 → gpgme: cross compilation → https://git.io/fjfHR
hodor123456 has quit [Ping timeout: 252 seconds]
<{^_^}> [nixpkgs] @illegalprime opened pull request #58047 → libndctl: use buildPackages.which → https://git.io/fjfH0
ryantm has quit [Quit: leaving]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #58048 → dateutils: 0.4.5 -> 0.4.6 → https://git.io/fjfHu
chreekat has quit [Remote host closed the connection]
<slabity> musicmatze: What certainly shoult not be allowed? Globs in updating? `nix-env -u '*'`
ryantm has joined #nixos
ym555 has joined #nixos
<slabity> clever: I'm not sure what that means
zupo has quit [Ping timeout: 272 seconds]
Makaveli7 has joined #nixos
<clever> slabity: basically, get rid of nix-env -i, -u, and -e
endformationage has joined #nixos
<clever> so it only has --set and --rollback
* clever heads off to bed
<samrose> How are folks packaging nodejs apps that are otherwise managed with yarn?
<slabity> I think I've only used -i, -u, and -e
reallymemorable has quit [Ping timeout: 244 seconds]
* clever heads off to bed
<samrose> clever: you must be on other side of world. Good(night?)
<gchristensen> actually clever is not bound by normal rising and setting of the sun
<samrose> heh
<{^_^}> [nix] @edolstra merged pull request #2741 → eval: improve type description for primops and applied primops → https://git.io/fjfSF
<{^_^}> [nix] @edolstra pushed 2 commits to master: https://git.io/fjfH1
<{^_^}> [nixpkgs] @illegalprime opened pull request #58049 → spidermonkey_52: cross compilation → https://git.io/fjfHy
o1lo01ol1o has joined #nixos
vincentpants has quit [Ping timeout: 252 seconds]
i1nfusion has quit [Remote host closed the connection]
<dminuoso> samrose: Im playing with the thought of adding the JavaScript dependencies to the repository.
i1nfusion has joined #nixos
o1lo01ol1o has quit [Remote host closed the connection]
<dminuoso> Ive managed to get around yarns supposed determinism a few times already and wasted many hours debugging.
o1lo01ol1o has joined #nixos
reallymemorable has joined #nixos
adetokunbo has quit [Quit: This computer has gone to sleep]
reallymemorable has quit [Ping timeout: 245 seconds]
linarcx has quit [Ping timeout: 252 seconds]
<{^_^}> [nixpkgs] @worldofpeace opened pull request #58050 → libunity fix build → https://git.io/fjfHA
linarcx has joined #nixos
chreekat has joined #nixos
<{^_^}> [nixpkgs] @LinArcX opened pull request #58051 → persepolis: init at 3.1.0 → https://git.io/fjfQf
<{^_^}> [nixpkgs] @ryantm merged pull request #56708 → irssi: 1.1.2 -> 1.2.0 → https://git.io/fhAyf
<{^_^}> [nixpkgs] @ryantm pushed 2 commits to master: https://git.io/fjfQJ
<{^_^}> [nixpkgs] @illegalprime opened pull request #58052 → polkit: optional introspection and cross compilation fixes → https://git.io/fjfQU
Havvy has quit [Ping timeout: 252 seconds]
technoid- has joined #nixos
Havvy has joined #nixos
<{^_^}> [nixpkgs] @illegalprime opened pull request #58053 → libatasmart: add build time cc → https://git.io/fjfQq
technoidX has quit [Ping timeout: 255 seconds]
agander__ has quit [Ping timeout: 245 seconds]
<{^_^}> [nixpkgs] @illegalprime opened pull request #58054 → volume_key: cross compilation fixes → https://git.io/fjfQO
technoid- has quit [Remote host closed the connection]
technoid- has joined #nixos
linarcx has quit [Ping timeout: 268 seconds]
mekeor has joined #nixos
linarcx has joined #nixos
pmiddend has quit [Quit: WeeChat 2.4]
technoidX has joined #nixos
technoid- has quit [Read error: Connection reset by peer]
<slabity> fml my nix-build for an iso just maxed out 371GB of memory.
<slabity> Looks like an infinite recursion though :(
buffet_ has quit [Quit: ZNC 1.7.2 - https://znc.in]
buffet_ has joined #nixos
vidbina has joined #nixos
<gchristensen> wat
<LnL> you're the second person I think
<slabity> I made an issue yesterday: https://github.com/NixOS/nixpkgs/issues/57984
<{^_^}> #57984 (by Slabity, 19 hours ago, open): Building ISO takes excessive amounts of time+memory
<slabity> Just tried it on an EC2 m5a.24xlarge instance for shits and giggles to see if it would complete
<slabity> Maxed out 371GB of memory and used only a single core
<LnL> ah n/m same person then probably
buffet_ has quit [Client Quit]
reallymemorable has joined #nixos
<slabity> It finally crashed with a stack overflow
buffet_ has joined #nixos
<slabity> I wonder if something's wrong with grub2_efi
<{^_^}> [nixpkgs] @dtzWill opened pull request #58055 → zsh: don't export HISTFILE and friends → https://git.io/fjfQ2
<alj[m]> I can't get deploying to hetzner using nixops to work. someone here who can help me=?
<dminuoso> Haskell question. Do you folks still use cabal v1-* with nix? I'd much prefer to go v2-* since it makes getting newer library versions much easier to control.
<alj[m]> im getting the error "404 server not found"
<eyJhb> 4 restarts before systemd didn't fail booting. I. Love.This
technoidX has quit [Ping timeout: 245 seconds]
<{^_^}> [nixpkgs] @illegalprime opened pull request #58056 → nilfs-utils: force malloc(0) realloc(0) to be valid → https://git.io/fjfQo
vidbina has quit [Ping timeout: 245 seconds]
<{^_^}> [nixpkgs] @liff opened pull request #58057 → vimPlugins.nord-vim: init at 0.10.0 → https://git.io/fjfQi
reinhardt has quit [Quit: Leaving]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #58058 → dovecot: 2.3.4.1 -> 2.3.5 → https://git.io/fjfQM
<slabity> Is anyone aware of how to install a 32-bit EFI bootloader for a 64-bit system?
countingsort has joined #nixos
countingsort has quit [Client Quit]
<slabity> Overwriting grub2_efi with the pkgsi686Linux version in an overlay is not doable at the moment
<{^_^}> [nixpkgs] @illegalprime opened pull request #58059 → sdImage: use findmnt to get root device when resizing → https://git.io/fjfQH
buffet_ is now known as buffet
ddellacosta has joined #nixos
technoidX has joined #nixos
ThatDocsLady_ has quit [Read error: Connection reset by peer]
ThatDocsLady_ has joined #nixos
<{^_^}> [nixpkgs] @matthewbauer merged pull request #54625 → grub: Support 32bit EFI on 64bit platforms → https://git.io/fhKFx
<{^_^}> [nixpkgs] @matthewbauer pushed 2 commits to master: https://git.io/fjfQd
<matthewbauer> slabity: boot.load.grub.forcei686 was added in this pr: https://github.com/NixOS/nixpkgs/pull/54625
<{^_^}> #54625 (by FlorianFranzen, 7 weeks ago, merged): grub: Support 32bit EFI on 64bit platforms
<slabity> Wow. That is incredibly good timing. Literally merged a minute ago
<slabity> I guess I'll try it out and see if it works
mariel__ has joined #nixos
ThatDocsLady_ has quit [Read error: Connection reset by peer]
boothead_ has joined #nixos
<boothead_> Anyone got a test kubernetes set up locally? I'm getting: Available False MinimumReplicasUnavailable when setting up a simple service
<boothead_> I've got roles = ["master" "node"]; in my configuration.nix
vincentpants has joined #nixos
init_6 has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #58060 → dropbox-cli: 2018.11.28 -> 2019.02.14 → https://git.io/fjf7f
<{^_^}> Channel nixpkgs-18.09-darwin advanced to https://github.com/NixOS/nixpkgs/commit/15f08994517 (from 2 hours ago, history: https://channels.nix.gsc.io/nixpkgs-18.09-darwin)
<boothead_> kubectl get nodes shows my that there are: No resources found.
<gchristensen> do you have swap enabled, boothead_ ?
rauno has quit [Remote host closed the connection]
<disasm> I've deployed a change to hydra slaves to change max-jobs = 8 in nix.conf but my hydra slaves are still running a max of 4 jobs. Is there somewhere else that would limit the number of builds on a system?
<boothead_> gchristensen: yup by the looks of it I do
<disasm> boothead_: https://github.com/disassembler/devops-kubernetes is old but that's what I used for a meetup talk a couple years ago. Not sure how relevant it is anymore, but feel free to poke around.
<boothead_> disasm: how's it going? Congrats on the release :-)
<disasm> boothead_: pretty well, thanks!
<gchristensen> boothead_: kubernetes refuses to start with swap, unless you tell it you know they don't like swapm
<linarcx> Guys. how to list all icons and themes list in nixos?
<boothead_> gchristensen: orly... that's a bit nasty - which service do I need to restart when I swapoff then?
<boothead_> disasm: lots of config in there not in the nixos options...
<gchristensen> boothead_: you can just tell kubernetes you don't mind
agander__ has joined #nixos
<boothead_> gchristensen: got it, thanks :-)
<{^_^}> [nixpkgs] @Mic92 merged pull request #58060 → dropbox-cli: 2018.11.28 -> 2019.02.14 → https://git.io/fjf7f
<{^_^}> [nixpkgs] @Mic92 pushed 2 commits to master: https://git.io/fjf7s
imdoor_ has joined #nixos
slack1256 has joined #nixos
<yurb> I can have a python3.7 in a shell by runing nix-shell -p python37, but how to install it into the current profile?
<disasm> boothead_: like I said, not sure if it still works with latest nixpkgs or not. Took me a few hours to build that out for a demo, but nixops deploy to d.o gave me a 3 node cluster functioning that I did the whole demo from :)
Tucky has quit [Quit: WeeChat 2.2]
<boothead_> disasm: nice, thanks!
civodul has joined #nixos
erasmas has joined #nixos
agander__ has quit [Ping timeout: 245 seconds]
<slack1256> yurb: nix-env -iA nixos.python37
<yurb> thaks slack1256
<slack1256> although that will be a python37 interpreter with just base libraries, you should read the python documentation on nixpkgs on how to install/setup python environment on the fly
ilmu has joined #nixos
<yurb> slack1256: do you mean it won't have the standard library?
<slack1256> It will just have the standard library, but not for example matplotlib
<slack1256> to install a python with matplotlib you should use the following incarnation for example
hyper_ch2 has quit [Quit: Page closed]
<{^_^}> [nixpkgs] @srhb closed pull request #57978 → perlPackages.BusinessHours: 0.12 -> 0.13 → https://git.io/fjfgv
<slack1256> nix-shell -p 'python37.withPackages (pythonSet: with pythonSet; [ jupyter pillo matplotlib ];)'
<slack1256> s/pillo/pillow/
<yurb> thanks slack1256. Yeah, I saw that in the docs, and it's really amazing. In this case though I was looking at how to get just python3 interpreter in the main profile
<boothead_> disasm: gchristensen do you have the k8s dashboard working?
noonien has joined #nixos
vincentpants has quit [Ping timeout: 252 seconds]
<noonien> hello folks
<noonien> is there a tool similar to `alsa`(the command) on debian for nixos?
<{^_^}> Channel nixos-18.09-small advanced to https://github.com/NixOS/nixpkgs/commit/15f08994517 (from 2 hours ago, history: https://channels.nix.gsc.io/nixos-18.09-small)
<timor> noonien: What does the command `alsa` do?
<noonien> i sometimes get a lot of noise on my headphones are i leave my laptop idling, i usually solve it with `sudo sh -c 'rmmod -f snd_hda_intel; modprobe snd_hda_intel'`, but sometimes this makes my deadphones not work at all until a reboot
<buffet> noonien: isnt it contained in either alsa-{tools,utils}?
Fare has joined #nixos
<{^_^}> [nixpkgs] @eyJhb opened pull request #58061 → sweethome3d: 6.0 -> 6.1.2 → https://git.io/fjf7K
<timor> buffet: nix-locate sais it is not
Havvy has quit [Ping timeout: 245 seconds]
<jasongrossman> noonien: Is alsactl what you want?
Havvy has joined #nixos
<noonien> no, it's a script provided in debian distros
<noonien> i'm trying to find it again now
<noonien> it should be i this package: https://packages.ubuntu.com/cosmic/alsa-base
<noonien> i'm trying to find the source code
i1nfusion has quit [Remote host closed the connection]
i1nfusion has joined #nixos
Church- is now known as aleph-
<noonien> it might not be complete
<timor> noonien: that does not look like something that is available in nixpkgs....
drakonis has joined #nixos
<ryantm> noonien: It would be possible to package it. You'd have to substitute some of the paths.
__Sander__ has quit [Quit: Konversation terminated!]
<noonien> yeah, i've downloaded from the deb
<timor> ryantm: are you sure the assumptions it makes make sense under NixOS?
<noonien> did not seem to solve my issue anyway
<ryantm> timor: Not at all :-/
rardiol1 has joined #nixos
pseudonom has joined #nixos
<timor> noonien: Did you already search around for that issue? Seems like something someone else might have had....
<noonien> i did a reload, and headphones no longer work :(
<noonien> timor: yes, i did, couldn't find any solution
<noonien> it seems to be a common issues, some other laptops exhibit this
<linarcx> Hi. When i was in arch-linux i can simply jump between words in kitty terminal via: `Ctrl+Right` and `Ctrl+Left`, but in nixos it prints: `;5C` and `;5D`. why?
<noonien> there appears to be a patch in the kernel for each laptop: https://github.com/torvalds/linux/commit/e4c9fd10eb21376f44723c40ad12395089251c28
<timor> noonien: A quick search I did suggested fiddling with auto-power-off settings, or disabling some "loopback" channel in alsamixer...
Fare has quit [Ping timeout: 252 seconds]
<noonien> sometimes reloading the driver works, however, sometimes, like this time, the headphone port does not work anymore
vincentpants has joined #nixos
<noonien> the speakers do
<goibhniu> noonien: did you have a look at https://wiki.archlinux.org/index.php/PulseAudio/Troubleshooting?
<goibhniu> sometimes audio modules have particular options which can help
<pseudonom> Is `nix-collect-garbage` superlinear? I had a bunch of stale system profiles and `sudo nix-collect-garbage -d` has now been running for the past ~14 hours
<manveru> linarcx: different shell?
sigmundv has quit [Ping timeout: 252 seconds]
<jasongrossman> linarcx: I don't get that behaviour, so the problem can't be NixOS (or not only NixOS).
<linarcx> manveru: No. same shell.(zsh)
<noonien> goibhniu: i'll take a look now, i remember tinkering in alsamixer not solving anything in the past
<manveru> linarcx: behaviour here is that it deletes stuff...
<timor> pseudonom: What file system is your nix-store?
<linarcx> manveru: What's your shell and terminal-emulator?
<manveru> linarcx: i just tried it with kitty/zsh
<manveru> but same behaviour in Termite
<manveru> but i use vi keybinds
<Ralith> pseudonom: is it still producing output?
<manveru> linarcx: you can maybe look for solutions using `bindkey`
<linarcx> manveru: Let me try it.
imdoor_ has quit [Read error: Connection reset by peer]
<pseudonom> timor: ext4
<manveru> linarcx: i.e. `bindkey "^[5C" emacs-backward-word` maybe?
<betaboon> linarcx: just running `bindkey` gives you the current bindkeys.
<pseudonom> Ralith: Essentially all of that time, it's been hung on the last line of `deleting /nix/store/trash`. Which is normally what takes the longest for me
<betaboon> linarcx: running `cat` (yes without arguments) and then typing the key-combination in question gives you its symbols
<betaboon> linarcx: then use bindkey to configure stuff to your liking
<noonien> pretty weird, even though no sound is making its way to the headphones, when i mute/unmute them there's an audible clicking sound
<Ralith> pseudonom: that's when it does the bulk of the actual deletion, I think; you should be able to check for activity by looking at I/O stats or just watching `df`. Is it possible that your I/O is saturated?
<timor> pseudonom: We had that situation on a VM, using xfs. Eventually it finished, but it also took several hours. No idea whether that has anything to do with superlinearity, though....
<pseudonom> Ralith: df hasn't showed any additional space freed over that time. Let me try to find some more detailed IO stats
civodul has quit [Quit: ERC (IRC client for Emacs 26.1)]
<Ralith> pseudonom: `iotop` usually works okay
<pseudonom> timor: Interesting. Maybe it is linear in the amount of garbage and just really slow
<Ralith> I'm not sure how well it'll display metadata operations or deletes in general vs. reads/writes, but if your I/O is saturated then it'll display that at least
<Ralith> it's possible you're just hitting a pessimal case in your fs, yeah
rycwo has joined #nixos
<linarcx> manveru: Is it permanent?
<manveru> linarcx: bindkey isn't, you have to put it into your .zshrc
<linarcx> betaboon: Awesome tip. thank you. it's work now like a charm :)
<pseudonom> Ralith: Doesn't seem to be saturated. Read is at a constant 0 and write flips between 0 KB/s and ~ 120 KB/s
<linarcx> manveru: Thank you.
<Ralith> pseudonom: that seems quite suspicious, then
<Ralith> maybe poke around in /nix/store/trash and see what's going on in there?
<betaboon> pseudonom: maybe no more free inodes on the device ?
<betaboon> pseudonom: check `df -i`
<pseudonom> betaboon: There's a healthy number IFree
Ariakenom has quit [Ping timeout: 252 seconds]
rycwo has quit [Ping timeout: 268 seconds]
<pseudonom> There are 8669 things in /nix/store/trash. How naughty would it be to just try and delete those things manually?
<slabity> Just got NixOS running on an old windows tablet :D
<Ralith> man, that's hardly anything
<Ralith> sounds like something is very broken
<Ralith> if you're not interested in attaching a debugger and really getting your hands dirty, I wonder if killing and restarting the collection would help
<slabity> Ralith: Getting a 32-bit bootloader on a 64-bit system was kinda hard :(
<betaboon> slabity: hew was talking about pseudonoms problem
<slabity> betaboon: Yea, just jokin around
<betaboon> slabity: congrats for gettint it to run :D
<pseudonom> Ralith: That would be attaching GDB to the running process?
<slabity> Wanna see if I can get plasma mobile running on it...
<betaboon> pseudonom: have you tried strace to check if it is stuck at something ?
<pseudonom> betaboon: I have not
<reallymemorable> does anyone see what I'm doing wrong here? https://paste.ofcode.org/cSUtDkhZu4epwvgiQaRQyA
<pseudonom> I'll try that now
<reallymemorable> I understand that the gitFetch protocol im using is not the best
<reallymemorable> i have no choice
<reallymemorable> i am trying to figure out how to build my project regardless
i1nfusion has quit [Remote host closed the connection]
i1nfusion has joined #nixos
<pseudonom> betaboon: The only output I see from `strace -p <pid>` is `rt_sigtimedwait([HUP INT PIPE TERM WINCH], ` which does seem slightly suspicious?
<betaboon> pseudonom: hard to say with so little information ;)
ddellacosta has quit [Ping timeout: 252 seconds]
xantoz has quit [Ping timeout: 250 seconds]
<pseudonom> (That's for the actual command running as root. If I `strace` the original `sudo` invocation, it's `restart_syscall(<... resuming interrupted restart_syscall ...>`)
<pseudonom> Okay. I'll restart the command and try to strace the whole time
ddellacosta has joined #nixos
xantoz has joined #nixos
<pseudonom> (Perhaps mildly informative is that SIGTERM doesn't kill the process, only SIGKILL)
<{^_^}> [nixpkgs] @zimbatm closed pull request #58033 → nixos/httpd: always test the generated configuration → https://git.io/fjfDo
<slabity> Kind of a long-shot, but I don't suppose anyone knows how to get plasma mobile on NixOS?
dashkal has quit [Ping timeout: 245 seconds]
<pseudonom> Hmm. The problem now is that SIGKILLing the garbage collection process seems to have failed to clean up the lock so the process now hangs on `waiting for the big garbage collector lock...`
dashkal has joined #nixos
hakujin has joined #nixos
<pseudonom> Is it safe to just delete `/nix/var/nix/gc.lock`?
<hakujin> what's the correct way to GC hydra? I ran `nix-collect-garbage` on a box that was growing over 100G and it broke quite a bit of hydra's view of the world.
wfranzini has quit [Remote host closed the connection]
<tilpner> Really? I would expect Hydra to keep roots on everything it needs
<gchristensen> that is the proper way to go, hakujin
<gchristensen> I wonder if you did anything else?
<hakujin> oh hmm
<tilpner> What did it break?
<slack1256> What is the nixos way to enable systemd --user services?
<hakujin> jobs stopped building due to failures
<hakujin> I do have builds that depend on build products from other jobs, and I keep 5-10 builds per job, typically
<tilpner> hakujin: Does /nix/var/nix/gcroots/hydra look reasonable?
<qyliss^work> slack1256: systemd.user
<hakujin> tilpner: I think so, yeah.
<tilpner> hakujin: Can you tell what paths it deleted, that broke things?
<hakujin> tilpner: I rolled back when I hosed things. I can try it again though.
<tilpner> Don't expect much from me, I'm just making basic queries. I've yet to GC my Hydra
Thra11 has joined #nixos
pseudonom has quit [Remote host closed the connection]
<noonien> is there a way to test if the problem is in pulseaudio or alsa?
dashkal has quit [Ping timeout: 252 seconds]
<{^_^}> [nixpkgs] @illegalprime opened pull request #58063 → nss: cross compile support → https://git.io/fjf5D
obadz has joined #nixos
dashkal has joined #nixos
rcshm has joined #nixos
<suzu> how do i gc-root a nixops build?
linarcx has quit [Ping timeout: 245 seconds]
rycwo has joined #nixos
ilmu has quit [Ping timeout: 252 seconds]
linarcx has joined #nixos
boothead_ has quit [Ping timeout: 256 seconds]
<goibhniu> noonien: you can disable pulseaudio and see if you can reproduce the issue
<noonien> hmm, how can i disable pulseaudio? does this require a reboot?
irimi1 has joined #nixos
<goibhniu> noonien: systemctl --user mask pulseaudio.socket && systemctl --user stop pulseaudio
<goibhniu> no need to reboot
<dminuoso> What does inherit do inside a let binding? e.g.: let inherit (haskellPackages) disableTest; in ...
<{^_^}> [nixpkgs] @LinArcX opened pull request #58064 → la-capitaine-icon-theme: init at 0.6.1 → https://git.io/fjfdf
<gchristensen> dminuoso: that is the same as: let disableTest = haskellPackages.disableTest;
<goibhniu> noonien: I think you also need to run `pulseaudio -k`
<dminuoso> gchristensen: Mmm interesting. Is there a reason why this has no mention in the nix manual?
<gchristensen> it doesn't? :X
<dminuoso> gchristensen: Nope. :X
i1nfusion has quit [Remote host closed the connection]
<dminuoso> gchristensen: What do the parens mean there?
<gchristensen> inherit is mentioned, so is the inherit (...) ...
<dminuoso> Huh...
<gchristensen> its like `inherit (from) what`
<gchristensen> search inherit (src-set) a b c; in https://nixos.org/nix/manual/
i1nfusion has joined #nixos
Fare has joined #nixos
winem_ has quit [Ping timeout: 250 seconds]
<dminuoso> gchristensen: Ah its mentioned there indeed. Mmm.
<gchristensen> (though I'll take that as strong feedback that the organization about the language could be much improved :))
<{^_^}> [nixpkgs] @r-ryantm opened pull request #58065 → eagle: 9.1.2 -> 9.3.1 → https://git.io/fjfdI
pseudonom has joined #nixos
<pseudonom> Hmm. Just running the garbage collection command again seems to have more or less worked
<dminuoso> gchristensen: I wish that nix had been a subset of Haskell. :-P
<gchristensen> aye, but then I'd need to know Haskell!
<slack1256> I think you can use dhall to generate nix though
rycwo has quit [Ping timeout: 244 seconds]
<illegalprime> i borked my /nix when i moved it to another drive, any ideas what permissions I should set on /nix/var/nix/daemon-socket/socket ? i can run nix w/o root now
<slabity> illegalprime: srw-rw-rw-
Thra11 has quit [Quit: IRC for Sailfish 1.0-alpha]
<illegalprime> slabity: that's set correctly, who do you have it owned by? my error message is: error: cannot connect to daemon at '/nix/var/nix/daemon-socket/socket': Connection refused
<andi-> root
<slabity> illegalprime: It's a socket owned by root
<andi-> actually that file should be created by the nix-daemon.socket service IIRC
<illegalprime> andi-: maybe I should delete it and restart the daemon?
<andi-> just restart the service (& socket)
<slabity> Yea, bad things will happen if you try and just make it yourself
rcshm has quit []
<illegalprime> slabity: andi-: that worked! thanks a bunch!
agander_ has joined #nixos
pie_ has quit [Ping timeout: 244 seconds]
Fare has quit [Ping timeout: 252 seconds]
ilmu has joined #nixos
<{^_^}> [nixpkgs] @primeos opened pull request #58066 → dav1d: init at 0.2.1 → https://git.io/fjfd8
Myhlamaeus has joined #nixos
i1nfusion has quit [Remote host closed the connection]
<{^_^}> [nixops] @PsyanticY opened pull request #1117 → ec2 backend: Remove support for AMI resizing <nixos 15.09 → https://git.io/fjfdE
i1nfusion has joined #nixos
<linarcx> Guys. What is difference between `name` and `pname`?
<samueldr> when name is missing, the (newer) mkDerivation will use "${pname}-${version}" automatically for name
<samueldr> since 19.03
<samueldr> (and earlier in some parts of nixpkgs)
<samueldr> name is expected to have a version number appended for nix-env to work properly
<linarcx> samueldr: Ah, thank you.
erasmas has quit [Ping timeout: 272 seconds]
<reallymemorable> Does anyone have thouhgts on how I can address this issue? https://paste.ofcode.org/cSUtDkhZu4epwvgiQaRQyA
<reallymemorable> I'm really stuck on how to grant permissions to my nix builders
<reallymemorable> so they can build this project
<{^_^}> [nixpkgs] @r-ryantm opened pull request #58067 → enet: 1.3.13 -> 1.3.14 → https://git.io/fjfd2
erasmas has joined #nixos
<{^_^}> Channel nixos-18.09 advanced to https://github.com/NixOS/nixpkgs/commit/15f08994517 (from 4 hours ago, history: https://channels.nix.gsc.io/nixos-18.09)
amfl_ has joined #nixos
<{^_^}> [nixpkgs] @gmarmstrong closed pull request #49457 → clustergit: init at 2018-04-18 → https://git.io/fx5pA
amfl has quit [Ping timeout: 245 seconds]
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/6e982c4c328 (from 3 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
domogled has quit [Quit: domogled]
Fare has joined #nixos
waleee has quit [Quit: WeeChat 2.4]
irimi1 has quit [Remote host closed the connection]
Erasmus has quit [Quit: END-AUMF]
<linarcx> samueldr: It means that we always use `pname` instead of `name` in packages?
<{^_^}> [hydra] @grahamc merged pull request #644 → improve the error messages when invalid declarative jobsets are defined → https://git.io/fjf25
<{^_^}> [hydra] @grahamc pushed 2 commits to master: https://git.io/fjfdS
mariel__ has quit [Ping timeout: 252 seconds]
<samueldr> linarcx: I guess so, now though I'm not 100% positive
<samueldr> someone might jump in and explain why not otherwise, but I wouldn't see any reason not to when you know you're targetting a recent nixpkgs
<samueldr> (e.g. outside of nixpkgs)
Fare has quit [Ping timeout: 272 seconds]
Maxdamantus has joined #nixos
JosW has joined #nixos
freeman42x has joined #nixos
ym555 has quit [Quit: leaving...]
i1nfusion has quit [Remote host closed the connection]
ng0 has joined #nixos
knupfer has quit [Ping timeout: 252 seconds]
i1nfusion has joined #nixos
englishm has quit [Quit: Updating details, brb]
i1nfusion has quit [Remote host closed the connection]
knupfer has joined #nixos
englishm has joined #nixos
englishm has quit [Excess Flood]
i1nfusion has joined #nixos
englishm has joined #nixos
Erasmus has joined #nixos
<noonien> does alsa have a startup script that runs on boot?
reinhardt has joined #nixos
<slabity> noonien: I believe alsa starts up in the kernel
<mekeor> noonien: dunno but there is ~/.asoundrc
<{^_^}> [nixpkgs] @r-ryantm opened pull request #58068 → evolution-data-server: 3.30.5 -> 3.32.0 → https://git.io/fjfFc
<noonien> i'm having some headphone problems, and someone over at #alsa is suggesting that alsa might have a startup script, so reloading the proper module might not be enough
<slabity> noonien: Are you running PA?
<noonien> i've disabled it
<slabity> I'm guessing you're not using JACK either?
<noonien> no, i've only left alsa enabled, so i can debug my issue
<goibhniu> noonien: https://nixos.wiki/wiki/ALSA also has some tips, e.g. how to set the model for your audio card
Fare has joined #nixos
[Leary] has joined #nixos
fendor has quit [Ping timeout: 272 seconds]
<noonien> hmm, haven't thought of that, will look at it, thanks!
Lears has quit [Ping timeout: 268 seconds]
joebobjoe has joined #nixos
Myhlamaeus has quit [Ping timeout: 252 seconds]
Myhlamaeus has joined #nixos
<joebobjoe> nix is coded wrong
<joebobjoe> objc[3326]: +[__NSPlaceholderArray initialize] may have been in progress in another thread when fork() was called. We cannot safely call it or ignore it in the fork() child process. Crashing instead. Set a breakpoint on objc_initializeAfterForkError to debug.
<gchristensen> interesting
<gchristensen> joebobjoe: any chance you could submit a PR?
<joebobjoe> I bypassed it by setting an env var to tell obj runtime not to crash in that case but I'm scared nix could invoke undefined behavior
<joebobjoe> there is a PR
<gchristensen> link?
<joebobjoe> I don't know why it hasn't been resolved
<{^_^}> nix#2523 (by periklis, 19 weeks ago, open): darwin: nix-daemon crashes due to OBJC_DISABLE_INITIALIZE_FORK_SAFETY
<joebobjoe> the "solution" is to just set an env var disabling the crash and carrying on
<joebobjoe> but the runtime crashes nix for a reason
<gchristensen> oh I thought you said there was a PR fixing it
<joebobjoe> I mean issue sorry
<joebobjoe> I just woke up
<joebobjoe> maybe I can try to fix this myself
<joebobjoe> gotta read my open group
<samueldr> gchristensen: looks like LnL might have fixed that and it might have been backported to 2.2
<gchristensen> if you could, that would be really wonderful - we only have a few contributors to Nix for Darwin
<samueldr> oh, looks like it's only fixed by setting the environment variable, don't mind me
<LnL> the workaround is ready, just needs a 2.2 release
<joebobjoe> I wonder if it is darwin specific or if darwin just catches it and crashes and linux chugs on
<joebobjoe> curse workarounds. I want correction to the code to not be incorrect
ixxie has quit [Ping timeout: 244 seconds]
<joebobjoe> someone is calling non async signal safe code after forking but before execing
<gchristensen> hopefully you can help us with that :)
<joebobjoe> brb
fusion809 has quit [Remote host closed the connection]
<joebobjoe> probably the worse that would happen is deadlock
<joebobjoe> that is the same issue
<LnL> it's not a problem in practice since there's nothing objc related before forking
laalf has quit [Quit: ZNC 1.7.2 - https://znc.in]
<joebobjoe> well some objc object is being initialized in some thread
<LnL> but it would be better to get rid of objc entirely, we shouldn't need it at all
<joebobjoe> and it might be thread safe, but not async signal safe
<joebobjoe> ok I would like that
<joebobjoe> can I help
<joebobjoe> I really like nix better than brew now that I've switched
<gchristensen> awesome :D
<gchristensen> you can definitely help -- how can we help you help? :)
<joebobjoe> I might ask some questions on irc ;)
<LnL> that would be awesome, you can compare with /nix/store/dkjlfkrknmxbjmpfk3dg4q3nmb7m3zvk-nix-2.1.3
kai_w has joined #nixos
<LnL> _something_ changed, but not clear what or why we end up in that codepath now
ddellacosta has quit [Ping timeout: 272 seconds]
<LnL> and what's even more strange to me is that the threaded resolver seems to fix some of the cases but not everything
Ariakenom has joined #nixos
ddellacosta has joined #nixos
laalf has joined #nixos
rauno has joined #nixos
domogled has joined #nixos
chreekat has quit [Ping timeout: 268 seconds]
domogled has quit [Client Quit]
grizwako_ has quit [Read error: Connection reset by peer]
reallymemorable has quit [Quit: Lost terminal]
chreekat has joined #nixos
ixxie has joined #nixos
JosW|2 has joined #nixos
zupo has joined #nixos
arjen-jonathan has joined #nixos
JosW|2 has quit [Client Quit]
<matthewbauer> I suspect it has to do with us missing the objc runtime in corefoundation
<matthewbauer> Someone should try linking cf-private with curl
freeman42x has quit [Read error: Connection reset by peer]
JosW|2 has joined #nixos
vidbina has joined #nixos
freeman42x has joined #nixos
grizwako has joined #nixos
<matthewbauer> Also has anyone reproduced it on nixpkgs-18.09-darwin or nixpkgs-18.03-darwin?
ym555 has joined #nixos
JosW|2 has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/]
JosW has quit [Remote host closed the connection]
JosW has joined #nixos
Glider_IRC__ has joined #nixos
Glider_IRC_ has quit [Ping timeout: 255 seconds]
linarcx has quit [Quit: WeeChat 2.4]
goibhniu has quit [Ping timeout: 246 seconds]
reinhardt has quit [Quit: Leaving]
linarcx has joined #nixos
JosW has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/]
zupo_ has joined #nixos
zupo has quit [Ping timeout: 252 seconds]
<illegalprime> i built a nixos image but it didn't come equipped with a /nix/var/nix/profiles/per-user/root/channels so I had to nix-channel --update, is that avoidable?
hakujin has quit [Ping timeout: 244 seconds]
domogled has joined #nixos
vidbina has quit [Ping timeout: 245 seconds]
<{^_^}> [nixpkgs] @primeos merged pull request #58066 → dav1d: init at 0.2.1 → https://git.io/fjfd8
<{^_^}> [nixpkgs] @primeos pushed 2 commits to master: https://git.io/fjfb8
vidbina has joined #nixos
reinhardt has joined #nixos
reinhardt has quit [Remote host closed the connection]
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/fd26b05c07d (from 4 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
bohan has joined #nixos
<matthewbauer> illegalprime: this module should work for that: https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/installer/cd-dvd/channel.nix
Erasmus is now known as erasmus
vidbina has quit [Ping timeout: 268 seconds]
pointfourone has joined #nixos
hakujin has joined #nixos
linarcx has quit [Quit: WeeChat 2.4]
<yl[m]> LnL: do you have a link to the commit you mentioned in #57711
<{^_^}> https://github.com/NixOS/nixpkgs/pull/57711 (by kalbasit, 6 days ago, open): Go: 1.11.5 -> 1.11.6 and 1.12 -> 1.12.1
chreekat has quit [Remote host closed the connection]
Lears has joined #nixos
pointfourone has left #nixos ["Leaving"]
<yl[m]> thx
<yl[m]> LnL: You mentioned the cacert was added to the buildInputs on staging
<yl[m]> I'm looking for that one
<yl[m]> is that a stdenv change?
[Leary] has quit [Ping timeout: 252 seconds]
linarcx has joined #nixos
arjen-jonathan has quit [Ping timeout: 252 seconds]
<LnL> no, I changed cacert a while back to make it set those variables for you
<LnL> a lot of stuff changed with staging, but it seems like somebody removed the explicit variables since they are not needed anymore
<mbrgm> is there a way to parse yaml to nix datatypes using builtins?
Neo-- has quit [Ping timeout: 252 seconds]
<mbrgm> or do you have to employ an external script/binary?
linarcx has quit [Client Quit]
wolfman154 has joined #nixos
<wolfman154> Hello guys, I did not set a password for my user account when first installing nixos, now gnome is not letting me sign in through gdm, how do I sign in ?
erasmus has quit [Quit: END-AUMF]
<wolfman154> ?
<samueldr> wolfman154: if you set a root password (you probably did) you could ctrl+alt+f1 to a virtual terminal, login as root, then `passwd $username`
<LnL> yl[m]: oh it's the other way around, this isn't in staging https://github.com/NixOS/nixpkgs/commit/28435e47b149623dd55b83aee3b016063d9d391b
aanderse-work has quit [Ping timeout: 246 seconds]
<wolfman154> samueldr: thanks I’ll try it out now.
<wolfman154> samueldr++
linarcx has joined #nixos
<{^_^}> samueldr's karma got increased to 60
<LnL> yl[m]: so if you want to clean that you'll have to make a separate pr for master, 48-56 can be replaced with buildInputs = [ cacert ]; :)
<yl[m]> oh
<yl[m]> nice!
<yl[m]> let me try that!!
knupfer has quit [Ping timeout: 252 seconds]
vk3wtf has joined #nixos
domogled has quit [Ping timeout: 272 seconds]
slack1256 has quit [Remote host closed the connection]
vincentpants has quit [Ping timeout: 245 seconds]
<wolfman154> samueldr: its not working?
<LnL> yl[m]: SSL_CERT_FILE should also work for git
<samueldr> how is it not working?
<yl[m]> oh
i1nfusion has quit [Remote host closed the connection]
<yl[m]> looks like it's working!! Thank you!
<wolfman154> samueldr: it is not letting me sign in as root
<yl[m]> LnL: I'm still confused about buildInputs and nativeBuildInputs. I assume cacert is a nativeBuildInputs correct?
i1nfusion has joined #nixos
<samueldr> :/, it's possible that there was a bad password input while setting up the system, if you fail at inputting twice the same password (I often can't!) it will continue with a message, which is easy to miss
<wolfman154> samueldr: was I supposed to set a password when I first installed it?
<samueldr> wolfman154: I assume since it's a fresh system you have the iso still on hand?
<samueldr> wolfman154: likely yes
<samueldr> (a password for the root user that is)
<samueldr> if you still have the iso on hand, you can mount the partitions as they were when installing, do NOT re-run nixos-generate-config (not needed) you should directly be able to nixos-install; it should be basically a no-op (a bit of time needed to build the config) and then it should continue with asking with the root password;
<LnL> yl[m]: hmm, you're right only GIT_SSL_CAINFO and NIX_SSL_CERT_FILE seem to work for some reason
<samueldr> alternatively nixos-enter could be used
<wolfman154> samueldr: yes It ask me for a root password when installing but gdm isn’t letting it me sign in with root?
<samueldr> ah, gdm won't
<samueldr> login to a VT with root
<samueldr> (ctrl+alt+F1/F2)
<samueldr> it often happens that display managers won't allow root logins
chreekat has joined #nixos
<LnL> yl[m]: but better to update the hook then instead
<{^_^}> [nixpkgs] @kalbasit opened pull request #58071 → buildGoModule: remove cacert-related env vars in favor of cacert in b… → https://git.io/fjfbj
zupo_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
zakkor has joined #nixos
<{^_^}> #58071 (by kalbasit, 28 seconds ago, open): buildGoModule: remove cacert-related env vars in favor of cacert in buildInputs
<wolfman154> samueldr: ok from there how do I sign in as root
<zakkor> hi guys, i have the emacs service enabled but it doesn't seem to load ~/.emacs.d/init.el when it starts
<yl[m]> LnL: it works as expected, not sure if I need to add more variables to the hook
<yl[m]> I tried building jx, it worked well
<samueldr> wolfman154: I presume you see something like HOSTNAME login: _
<wolfman154> samueldr: yes
<samueldr> type root, then enter, it should ask for the password
<LnL> yl[m]: ah NIX_SSL_CERT_FILE has precedence so it all 3 work for git
<LnL> as for native vs build inputs, I'm not sure what is "more" correct in this case
<wolfman154> samueldr: it works, thanks, I did not want to install it again, is it bad to set the user password in the configuration.nix when installing nixos ?
<LnL> pretty sure both would work for cross since it's just a file / environment variable
vincentpants has joined #nixos
<samueldr> wolfman154: users.users.USERNAME.password is a bit scary, I wouldn't use it except for testing purposes; hashedPassword is probably more fine, but then you could be broadcasting it if you make your config public
knupfer has joined #nixos
chreekat has quit [Remote host closed the connection]
jb55 has quit [Ping timeout: 245 seconds]
vidbina has joined #nixos
wolfman154 has quit [Quit: Mutter: www.mutterirc.com]
wolfman154 has joined #nixos
ixxie has quit [Ping timeout: 245 seconds]
arjen-jonathan has joined #nixos
<wolfman154> samueldr: thanks for the tips, how do I exit vt ?
<yl[m]> LnL: it worked as nativeBuildInputs.
<samueldr> exit or ctrl+d at the command line
<samueldr> this stands for any shell :)
vincentpants has quit [Ping timeout: 245 seconds]
<samueldr> and to return to GDM, either ctrl+alt+f1 or f7, should be one of those two
<manveru> samueldr: not for erlang... that needs ctrl+\ (and that also works in pretty much any other shell)
<samueldr> manveru: let's say "command line shell"
<manveru> :D
vincentpants has joined #nixos
<samueldr> (bash doesn't exit for me with ctrl+\ but it might be due to \ being on an alt+gr key)
<zakkor> can I get emacs to load ~/.emacs.d/init.el (I'm not using any of the builtin nixos stuff for managing emacs packages or configs)
<{^_^}> [nix] @LnL7 closed pull request #2577 → installables: resolve derivation outputs → https://git.io/fpdWO
<manveru> i think ctrl+\ is sigquit, like ctrl+c is sigint, but ctrl+d is EOF?
<samueldr> something like that
ixxie has joined #nixos
<manveru> gotta look that up once wikipedia is back...
<samueldr> though CTRL+4 for me does something, not sure which signal
<samueldr> (not in bash though)
<wolfman154> samueldr: I guess I’ll just try rebooting
<manveru> samueldr: it's also sigquit
<samueldr> wolfman154: that's bound to work too
<samueldr> manveru: ah, didn't know for sure it was sigquit
* manveru is watching all of steam rebuild...
<wolfman154> samueldr: sigquit command works to exit?
wfranzini has joined #nixos
<samueldr> wolfman154: not sure, not sure exactly what you're trying to exit
<samueldr> if you're still at a bash shell, using the "exit" command will exit the shell
<samueldr> then, to return back to GDM, it depends on which VT GDM starts
tdbgamer has joined #nixos
<wolfman154> samueldr++
<{^_^}> samueldr's karma got increased to 61
wolfman154 has quit [Quit: Mutter: www.mutterirc.com]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #58072 → falkon: 3.0.1 -> 3.1.0 → https://git.io/fjfNq
wolfman154 has joined #nixos
ixxie has quit [Ping timeout: 268 seconds]
chreekat has joined #nixos
wolfman154 has quit [Client Quit]
Makaveli7 has quit [Ping timeout: 245 seconds]
hakujin has quit [Ping timeout: 244 seconds]
<zakkor> the manual even mentions adding stuff to .emacs.d/init.el, but if I run `systemctl --user restart emacs.service ` and then connect to it using emacsclient, none of my init.el changes are active
wolfman154 has joined #nixos
agander_ has quit [Remote host closed the connection]
Makaveli7 has joined #nixos
<wolfman154> Why does configuration.nix not let me install gdm3, only gdm?
<wolfman154> Only gdm it lets me
<wolfman154> ?
<zakkor> plp 👋
<{^_^}> [nixpkgs] @dtzWill opened pull request #58073 → libgpgerror: 1.34 -> 1.36 → https://git.io/fjfNW
<zakkor> i figured it out, i had a ~/.emacs that was preventing init.el from being loaded
wolfman154 has quit [Client Quit]
<{^_^}> [nixpkgs] @dtzWill opened pull request #58074 → libassuan: 2.5.2 -> 2.5.3 → https://git.io/fjfN8
<{^_^}> [nixpkgs] @dywedir merged pull request #57941 → ffsend: 0.2.36 -> 0.2.38 → https://git.io/fjfZa
<{^_^}> [nixpkgs] @dywedir pushed 2 commits to master: https://git.io/fjfN4
wolfman154 has joined #nixos
<wolfman154> ?
<{^_^}> [nixpkgs] @dtzWill opened pull request #58075 → qtpass: 1.2.1 -> 1.2.3 → https://git.io/fjfNB
plp has joined #nixos
<infinisil> wolfman154: Gotta be a bit more specific than that
klntsky has quit [Remote host closed the connection]
wfranzini has quit [Remote host closed the connection]
zupo has joined #nixos
klntsky has joined #nixos
jb55 has joined #nixos
hlolli has joined #nixos
rycwo has joined #nixos
wolfman154 has quit [Quit: Mutter: www.mutterirc.com]
<{^_^}> [nixpkgs] @dtzWill opened pull request #58076 → sssd: 1.16.3 -> 1.16.4 → https://git.io/fjfN0
<hlolli> I'm trying to do a shebang nix-shell with graalvm8 as build input, but I get info that I haven't accepted the oracleJDK license. How can I pass down an accept into the shebang, since its not being picked up by my default.nix nixos environment?
<{^_^}> [nixpkgs] @dtzWill opened pull request #58077 → wayland: 1.16.0 -> 1.17.0 → https://git.io/fjfNu
i1nfusion has quit [Remote host closed the connection]
<hlolli> #!/usr/bin/env nix-shell[newline]#!nix-shell -i bash -p graalvm8
<{^_^}> [nixpkgs] @dtzWill opened pull request #58078 → wpgtk: 5.8.7 -> 6.0.3 → https://git.io/fjfNg
i1nfusion has joined #nixos
<{^_^}> [nixpkgs] @dtzWill opened pull request #58079 → libwhich: init at 2019-03-20 → https://git.io/fjfNa
chreekat has quit [Ping timeout: 252 seconds]
<{^_^}> [nixpkgs] @dtzWill opened pull request #58080 → gtkmm3: 3.24.0 -> 3.24.1 → https://git.io/fjfNw
chreekat has joined #nixos
<hlolli> nevermind, I just make a nix-expression as a file, works fine in my case :)
<{^_^}> [nixpkgs] @dtzWill merged pull request #54847 → joplin-desktop: init at 1.0.120 → https://git.io/fhPiA
<{^_^}> [nixpkgs] @dtzWill pushed 2 commits to master: https://git.io/fjfNX
timor has quit [Ping timeout: 250 seconds]
Guest30775 has quit [Read error: Connection reset by peer]
sinner has joined #nixos
dnlkrgr has quit [Ping timeout: 272 seconds]
sinner is now known as Guest23350
<{^_^}> [nixpkgs] @dtzWill opened pull request #58081 → joplin-desktop: 1.0.120 -> 1.0.140 → https://git.io/fjfNM
vk3wtf has quit [Quit: WeeChat 2.3]
chreekat has quit [Ping timeout: 252 seconds]
chreekat has joined #nixos
Fare has quit [Ping timeout: 244 seconds]
knupfer has quit [Ping timeout: 252 seconds]
ddellacosta has quit [Ping timeout: 272 seconds]
joebobjoe has quit [Quit: Lost terminal]
<{^_^}> [nixpkgs] @kalbasit merged pull request #58071 → buildGoModule: remove cacert-related env vars in favor of cacert in buildInputs → https://git.io/fjfbj
<{^_^}> [nixpkgs] @kalbasit pushed to master « buildGoModule: remove SSL env vars in favor of cacert in buildInputs (#58071) »: https://git.io/fjfNb
<{^_^}> [nixpkgs] @dtzWill merged pull request #57933 → libconfig: 1.5 -> 1.7.2, enable tests → https://git.io/fjf3A
<{^_^}> [nixpkgs] @dtzWill pushed 2 commits to master: https://git.io/fjfNN
<{^_^}> [nixpkgs] @dywedir merged pull request #57781 → skim: 0.5.5 -> 0.6.2 → https://git.io/fjvcN
<{^_^}> [nixpkgs] @dywedir pushed 2 commits to master: https://git.io/fjfNp
<{^_^}> [nixpkgs] @dtzWill merged pull request #57625 → netatop: 1.0 -> 2.0, fixes compat with kernels >= 4.13 → https://git.io/fje88
<{^_^}> [nixpkgs] @dtzWill pushed 2 commits to master: https://git.io/fjfNh
<{^_^}> [nixpkgs] @kalbasit opened pull request #58082 → buildGoModule: remove SSL env vars in favor of cacert in buildInputs → https://git.io/fjfAe
slack1256 has joined #nixos
erasmus has joined #nixos
<{^_^}> [nixpkgs] @kalbasit merged pull request #58082 → buildGoModule: remove SSL env vars in favor of cacert in buildInputs → https://git.io/fjfAe
<{^_^}> [nixpkgs] @kalbasit pushed to release-19.03 « buildGoModule: remove SSL env vars in favor of cacert in buildInputs (#58082) »: https://git.io/fjfAU
elibrokeit has quit [Quit: A random quit message]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #58083 → ricty: 4.1.0 -> 4.1.1 → https://git.io/fjfAL
barrucadu has quit [Quit: Moving irssi to another host]
vincentpants has quit [Ping timeout: 244 seconds]
barrucadu has joined #nixos
barrucadu has joined #nixos
barrucadu has quit [Changing host]
vk3wtf has joined #nixos
slack1256 has quit [Remote host closed the connection]
technoidX has quit [Read error: Connection reset by peer]
wfranzini has joined #nixos
technoidX has joined #nixos
<monokrome> hmm
<monokrome> Is there a way to `nixos-install` and force x86_86 instead of i386?>
rprije has joined #nixos
<monokrome> No idea why it chose i386
<monokrome> It's an i7
<gchristensen> did it pick i386, or i686?
<monokrome> i386
<gchristensen> what version of the installer did you get?
Makaveli7 has quit [Quit: Leaving]
erasmas has quit [Quit: leaving]
Fare has joined #nixos
wfranzini has quit [Remote host closed the connection]
vincentpants has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #58084 → terminus_font_ttf: 4.46.0 -> 4.47.0 → https://git.io/fjfAW
<monokrome> That's the latest release afaik
<{^_^}> [nixpkgs] @r-ryantm opened pull request #58085 → fping: 4.1 -> 4.2 → https://git.io/fjfAR
<{^_^}> [nixpkgs] @dtzWill closed pull request #57623 → dnscrypt-proxy2: 2.0.15 -> 2.0.20 → https://git.io/fje8W
<{^_^}> [nixpkgs] @nlewo merged pull request #57849 → hydra: 2019-02-01 -> 2019-03-18 → https://git.io/fjvrq
<{^_^}> [nixpkgs] @nlewo pushed 2 commits to master: https://git.io/fjfAg
<{^_^}> [nixpkgs] @nlewo merged pull request #57831 → nginx-sso: 0.16.0 -> 0.16.1 → https://git.io/fjvux
<{^_^}> [nixpkgs] @nlewo pushed 2 commits to master: https://git.io/fjfAa
vincentpants has quit [Ping timeout: 272 seconds]
arjen-jonathan has quit [Ping timeout: 268 seconds]
vincentpants has joined #nixos
<{^_^}> [nixpkgs] @dtzWill merged pull request #58084 → terminus_font_ttf: 4.46.0 -> 4.47.0 → https://git.io/fjfAW
<{^_^}> [nixpkgs] @dtzWill pushed 2 commits to master: https://git.io/fjfAo
Ariakenom has quit [Quit: Leaving]
wolfman154 has joined #nixos
<{^_^}> [nixpkgs] @corpix opened pull request #58086 → added missing semicolon to documentation → https://git.io/fjfA6
chreekat has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @hedning closed pull request #58068 → evolution-data-server: 3.30.5 -> 3.32.0 → https://git.io/fjfFc
<wolfman154> Do I need to connect my home-manager as a module to my configuration.nix file?
adetokunbo has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #58087 → fstrm: 0.4.0 -> 0.5.0 → https://git.io/fjfAX
<wolfman154> ?
ilmu has quit [Ping timeout: 244 seconds]
__monty__ has quit [Quit: leaving]
<wolfman154> ?
<wolfman154> And what is the best way to use them together?
vincentpants has quit [Ping timeout: 244 seconds]
<wolfman154> ?
<infinisil> wolfman154: Being impatient makes it less likely that somebody is going to answer btw
<wolfman154> K
vk3wtf has quit [Ping timeout: 252 seconds]
<{^_^}> [nixpkgs] @dtzWill merged pull request #57980 → llvmPackages_{7,8}.compiler-rt: update crtbegin-and-end.patch → https://git.io/fjfgD
<{^_^}> [nixpkgs] @dtzWill pushed 2 commits to master: https://git.io/fjfA5
linarcx has quit [Quit: WeeChat 2.4]
NickSeagull has quit [Quit: WeeChat 2.4]
<colemickens> oops, thought I was in -chat
hakujin has joined #nixos
m0rphism has quit [Ping timeout: 272 seconds]
ilmu has joined #nixos
<{^_^}> [nixpkgs] @StillerHarpo opened pull request #58088 → nixos/isync: init → https://git.io/fjfAp
wolfman154 has quit [Quit: Mutter: www.mutterirc.com]
kai_w has quit [Ping timeout: 252 seconds]
rprije has quit [Read error: Connection reset by peer]
<{^_^}> [nixpkgs] @hedning pushed to gnome-3.32 « gnomeExtensions.dash-to-dock: 65 -> 66 »: https://git.io/fjfxv
ddellacosta has joined #nixos
hamishmack has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
vk3wtf has joined #nixos
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
zupo has joined #nixos
<yl[m]> how to temporarly disable builders in a `nix-build` command again?
zupo has quit [Client Quit]
i1nfusion has quit [Remote host closed the connection]
zupo has joined #nixos
i1nfusion has joined #nixos
jbgi has quit [Ping timeout: 245 seconds]
o1lo01ol1o has quit [Remote host closed the connection]
<yl[m]> `nix-build --option builders "" `
zupo has quit [Client Quit]
Fare has quit [Ping timeout: 272 seconds]
<monokrome> hmm I rebooted and rebuilt partitions and everything
<monokrome> same issue gchristensen
<NemesisD> how might i create a docker image using dockerTools that only contains a subset or 1 of the executables my haskell project builds?
<monokrome> Is there a way to force it to install 64bit, not 32bit?
<monokrome> (i386-pc is 32bit, right?)
<colemickens> Is there a 'nixos development process' page anywhere? Can I start one on the Wiki? I'm curious if there's ever been discussion of SIGs for NixOS. Like a "Intel Graphics" SIG that maintains the various intel graphics bits (intel-hydrid-driver, intel-va, mesa/iris, etc) or a "Wayland" SIG that keeps track of wayland ecosystem tools and NixOS support for DE's with Wayland support. I know there are WGs, but they don't seem super
<colemickens> active/organized?
jackdk has joined #nixos
<colemickens> Some of it, I guess, would be around organizing stages of build updates, and I guess a more formal way of handling PR reviews/merges too? Maybe this is meant to all be done via the listed package maintainers?
Anton-Latukha has quit [Quit: Leaving.]
<samueldr> monokrome: this smells funny
<samueldr> monokrome: when booted in the installer, what does `uname -m` outputs?
<NemesisD> i'm hoping i can use buildLayeredImage to create a docker image per executable i use and get sharing out of it
drakonis_ has joined #nixos
hakujin has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @hedning closed pull request #56683 → gnomeExtensions.appindicator: 22 -> 23 → https://git.io/fhAPW
hakujin has joined #nixos
<monokrome> samueldr: x86_64 :/
jasongrossman has quit [Quit: ERC (IRC client for Emacs 26.1)]
ng0 has quit [Quit: Alexa, when is the end of world?]
rycwo has quit [Ping timeout: 252 seconds]
hio has quit [Quit: Connection closed for inactivity]
<samueldr> okay, so it doesn't look like the installation media is the wrong one (still needed to be counter-verified)
<samueldr> is the configuration.nix a new one, or importing some complex stuff?
<samueldr> could some complex stuff accidentally use pkgsi686 or something like that?
<samueldr> because I don't really see how it would install the i686 system if booted x86_64
i1nfusion has quit [Remote host closed the connection]
i1nfusion has joined #nixos
<monokrome> :/
elibrokeit has joined #nixos
<monokrome> The device is pretty open and made for Linux, that's why I got it because the last 6 devices I've used NixOS on have ended up just not working
<samueldr> the machine shouldn't be at fault, especially considering the installation media works
<samueldr> how are you asserting you are installed i*86 ?
<samueldr> i386-pc sounds like something grub would say
* colemickens was thinking the same thing
elibrokeit has quit [Ping timeout: 252 seconds]
<samueldr> is the system configured for "legacy" (mbr) boot?
<samueldr> it might be that the grub install then uses grub2 which might report i386-pc, while I think it should still be able to boot a 64 bit os
<samueldr> like, my at-home server-y nas-y machine is 64 bit, doesn't have uefi, boots in a 64 bit linux, but its /boot/grub folder has an i386-pc folder
<infinisil> wolfman12345[m]: Check out home-manager#97
<{^_^}> https://github.com/rycee/home-manager/pull/97 (by rycee, 1 year ago, merged): Experimental NixOS module
<rycee> There are a few basic instructions in the manual now: https://rycee.gitlab.io/home-manager/index.html#sec-install-nixos-module
<monokrome> samueldr: Yeah, it uses coreboot
<monokrome> but PureOS and Qubes boot into 64bit
<samueldr> monokrome: "yeah it uses coreboot" corebot doesn't preclude UEFI :)
<samueldr> but monokrome, can I again ask: how are you asserting it is booted in "i386"?
<samueldr> (though, to be clear, I don't know how purism configured coreboot for the librem, it might not have tianocore in)
hakujin has quit [Ping timeout: 268 seconds]
erictapen has joined #nixos
<{^_^}> [nixpkgs] @aszlig pushed to release-19.03 « Merge overlayfs fix, LTS kernel bump and test »: https://git.io/fjfx9
<{^_^}> [nixpkgs] @matthewbauer merged pull request #58086 → added missing semicolon to documentation → https://git.io/fjfA6
<{^_^}> [nixpkgs] @matthewbauer pushed 2 commits to master: https://git.io/fjfxH
<{^_^}> [nixpkgs] @r-ryantm opened pull request #58090 → s3fs: 1.84 -> 1.85 → https://git.io/fjfxQ
<erictapen> I'm trying to make an app ready for cross compilation that requires the lib wayland as a host dep and ${wayland}/bin/wayland-scanner as a build dependency
<erictapen> is there any way to hide the /bin path in the host dependency?
<infinisil> rycee: Oh nice!