sphalerite changed the topic of #nixos to: NixOS stable: 19.03 \o/ https://discourse.nixos.org/t/nixos-19-03-release/2652 || 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
samrose_ has quit [Read error: No route to host]
rfold has quit [Ping timeout: 246 seconds]
dansho has quit [Ping timeout: 246 seconds]
<selfsymmetric-mu> clever: I don't know how to make an overlay. I've tried before but they confuse me. Can't I just make an override in a let expression in the same file?
<clever> selfsymmetric-mu: if you have a clone of nixpkgs, you could just edit xfce4-settings.nix directly and skip the entire overlay system
<selfsymmetric-mu> clever: I don't know how to load a custom nixpkgs either. I found something online but it was like twelve pages and complicated.
<selfsymmetric-mu> I'll try overlays again.
<clever> selfsymmetric-mu: if you want to alter the xfce used by nixos, you just want nixpkgs.overlays = [ a_nixpkgs_overlay ];
<selfsymmetric-mu> Ah nice! Thank you.
<selfsymmetric-mu> Let's see...
<selfsymmetric-mu> I'm trying. The syntax is giving me grief.
<clever> selfsymmetric-mu: if you pastebin your current file, i can look at it to see whats wrong
<selfsymmetric-mu> What is the top level type of an overlay file?
<clever> selfsymmetric-mu: you could also just put the entire gistfile1.nix directly into /etc/nixos, and then just do import s= [ ./gistfile1.nix ];
<clever> imports, not import s
<clever> and then nixos will merge it for you
<clever> an overlay is always a function that takes 2 arguments, usually in the `self: super: { ... }` form
<selfsymmetric-mu> Ah, okay. My binding is breaking it then. Thank you!
<selfsymmetric-mu> <3 types
<selfsymmetric-mu> That's better.
<selfsymmetric-mu> How does NixOS know which attribute to apply the overlay to?
ddellacosta has joined #nixos
<clever> the overlay applies to all of nixpkgs
<selfsymmetric-mu> Just...anything named `xfce-settings`? That seems fragile.
<clever> this creates a nixpkgs overlay, that will replace whatever pkgs.xfce is
<selfsymmetric-mu> Oh I see! Thank you.
<clever> and that part itself, is then doing another overlay, against all xfce packages
<selfsymmetric-mu> With that system I don't actually need any files in my `nixpkgs-overlays` path, then?
<clever> correct
<clever> nixos will also ignore the nixpkgs-overlays path
<clever> nixos only obeys the nixpkgs.overlays config option
<selfsymmetric-mu> Oh it will?
<clever> only nix-env and nix-build will obey nixpkgs-overlays from $NIX_PATH
<selfsymmetric-mu> clever++
<{^_^}> clever's karma got increased to 138
<benhart> I'm attempting to run KDE with xmonad, I believe I've followed the instructions in the manual, however from what I see, X should start automatically, it does not, and when I call systemctl start display-manager.service it fails
<benhart> unit display-manager.service not found
<clever> benhart: display-manager.service will only exist if you set services.xserver.enable = true;
<selfsymmetric-mu> clever: I notice that in your gist, you have `xfce-overlay` in one place and `xfce-overrides` in another. Is that correct or is one of them a typo?
<clever> selfsymmetric-mu: typo, i renamed it from your example, but missed a place
<benhart> shouldn't display-manager be lightDM by default?
<selfsymmetric-mu> clever: Thanks! Just checking.
<clever> benhart: display-manager.service will dynamically start whichever DM you enabled in configuration.nix
<benhart> I'll try setting it to slim and rebuilding...
ng0 has joined #nixos
<selfsymmetric-mu> `Reversed (or previously applied) patch detected!`
<selfsymmetric-mu> Wow, maybe this was already applied...
<selfsymmetric-mu> But in that case the fix wasn't complete because my monitor configuration still breaks when my computer sleeps.
<selfsymmetric-mu> lol. Anyone have a desktop manager they like more than xfce4?
<clever> selfsymmetric-mu: what is the path in the nix store for the xfce settings binary?
L-o-r-d has quit [Quit: Join πŸ‘‰ ##Truth πŸ‘ˆ]
thc202 has quit [Ping timeout: 250 seconds]
<selfsymmetric-mu> clever: For `xfce4-settings-editor` my `current-system` points to `/nix/store/wdzg39mqppqmcv3yh1nxdpwijdx73n2b-xfce4-settings-4.12.1/bin/xfce4-settings-editor`.
<clever> selfsymmetric-mu: now run `nix-store --query --deriver /nix/store/wdzg39mqppqmcv3yh1nxdpwijdx73n2b-xfce4-settings-4.12.1/bin/xfce4-settings-editor` and it should give a .drv file
<selfsymmetric-mu> Yeah, it did.
<clever> selfsymmetric-mu: then run `nix show-derivation` on that drv
<clever> selfsymmetric-mu: youll see all patches that are being applied, and the path to its src
<selfsymmetric-mu> oh wow
<{^_^}> [nixpkgs] @peti pushed to haskell-updates Β« hackage-packages.nix: automatic Haskell package set update Β»: https://git.io/fjobF
<benhart> ...hmmmm still getting a display-manager.service not found error is services.xserver.displayManager.slim.enable = true; all I need? or is there some other configuration i might have missed?
<selfsymmetric-mu> All I see is `/nix/store/isqkjpb2cgcwn1pkxxf0yzyi57ch96w8-xfce4-settings-default-icon-theme.patch`, which is the same thing as I see on GitHub.
<clever> benhart: you also need services.xserver.enable = true;
<selfsymmetric-mu> My custom overrides didn't work because the build gave up on the reapplication of the patch.
<clever> selfsymmetric-mu: what about in the src path?
<clever> selfsymmetric-mu: the "patch" may already be in $src
<selfsymmetric-mu> clever: Very cool! Thanks for the tip.
<selfsymmetric-mu> The patch is indeed already applied.
<selfsymmetric-mu> Shame, I thought that's what was wrong with my system. I guess part of the bug wasn't fixed by that patch.
<selfsymmetric-mu> Bit of a wild goose chase then. Thanks for the great lessons though!
<clever> selfsymmetric-mu: on my end, ive got an amd card, and am currently using the amdgpu driver with xfce
<clever> on bootup, the login prompt is all over the place, but i dont really reboot much so i dont care
<clever> after login, xfce restores the monitor layout perfectly
<clever> but, if i unplug a monitor while its active, the video driver crashes, very hard
<clever> i have to go into the xfce settings, and disable that monitor first
<selfsymmetric-mu> Whoa.
<selfsymmetric-mu> You know what, I might be overcomplicating things. I'm just going to turn off sleeping and see if that fixes things.
<clever> and for extra fun, xfce will auto-enable any monitor i plug in
<clever> so if i plug it in, then immediately unplug it, the machine is bork :P
<benhart> clever I have that one
<benhart> i have the following :
<clever> benhart: what is the output from nixos-rebuild switch?
<benhart> services.xserver.enable = true; services.xserver.layout = "us"; services.xserver.libinput = true; services.xserver.displayManager.slim.enable = true; services.sserver.desktopManager.plasma5.enable = true; services.xserver.windowManager.xmonad.enable = true; services.xserver.autorun = true;
<selfsymmetric-mu> clever: Yikes, you know what, I may have that problem too sometimes.
<selfsymmetric-mu> Hopefully someone fixes that upstream...
hmpffff has quit [Quit: nchrrrr…]
<benhart> clever - running it now
<benhart> clever it's on a seperate system so i can't copy paste, but it doesn't seem to mention anything about display/window desktop managers at all
<clever> benhart: does that machine not have an irc client or a pastebin?
<benhart> not yet
<benhart> just rebooted and it seems to be working now though
jluttine has joined #nixos
cjpbirkbeck has joined #nixos
<clever> benhart: is it a fresh install? what path was configuration.nix at?
<{^_^}> Channel nixpkgs-unstable advanced to https://github.com/NixOS/nixpkgs/commit/5b7e3718ee3 (from 62 minutes ago, history: https://channels.nix.gsc.io/nixpkgs-unstable)
hlolli_ has joined #nixos
ng0 has quit [Quit: Alexa, when is the end of world?]
imalison has joined #nixos
<imalison> Does anyone know how the includes from glibc are supposed to work
jluttine has quit [Ping timeout: 244 seconds]
<imalison> I'm trying to figure out https://github.com/NixOS/nixpkgs/issues/63933
<{^_^}> #63933 (by IvanMalison, 2 hours ago, open): haskellPackages.xkbcommon template haskell phase is failing
sindrip has joined #nixos
<imalison> and im a little confused
hlolli__ has quit [Ping timeout: 272 seconds]
Ariakenom has quit [Quit: Leaving]
jluttine has joined #nixos
sindrip has quit [Remote host closed the connection]
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/5b7e3718ee3 (from 82 minutes ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
<{^_^}> [nixos-homepage] @egasimus opened pull request #288 β†’ Add option to automatically rebuild with entr β†’ https://git.io/fjoNm
MmeQuignon has quit [Ping timeout: 245 seconds]
hlolli_ has quit [Ping timeout: 252 seconds]
MmeQuignon has joined #nixos
allenj12 has joined #nixos
<allenj12> Hey, has anyone here tried using guix on nixos? is guix compatible with nix packages?
ym555_ is now known as ym555
noudle has quit []
iyzsong has joined #nixos
gchristensen has quit [Ping timeout: 252 seconds]
xkapastel has quit [Quit: Connection closed for inactivity]
gchristensen has joined #nixos
fresheyeball has joined #nixos
<fresheyeball> hey out there
<fresheyeball> systemctl says postgresql is up
<fresheyeball> and even other apps using postgresql are working
<fresheyeball> but psql says psql: could not connect to server: No such file or directory
<fresheyeball> how is this possible
<clever> fresheyeball: strace psql
<fresheyeball> clever: well that was a ton of output
<clever> fresheyeball: the stuff near the end is most important, right before the error claiming cant connect to server
<fresheyeball> clever: https://pastebin.com/tiLAiv6j
<betaboon> fresheyeball: did you provide the proper username ? eg psql -U postgres ?
<fresheyeball> betaboon: https://pastebin.com/M2d1wUEZ
<fresheyeball> this one I added -U postgres
<clever> connect(3, {sa_family=AF_UNIX, sun_path="/tmp/.s.PGSQL.5432"}, 110) = -1 ENOENT (No such file or directory)
<clever> fresheyeball: its connecting to this unix socket, which doesnt exist
<fresheyeball> I know
<fresheyeball> how is that even possible
<fresheyeball> my apps that use that port are all still up!
<clever> fresheyeball: is that path in an env variable?
<clever> fresheyeball: what pid os psql actually running as?
<fresheyeball> oh WEIRD
<fresheyeball> it works if I exit the nix shell
<clever> compare `env` inside and out
ym555_ has joined #nixos
jtojnar has quit [Remote host closed the connection]
ym555 has quit [Ping timeout: 245 seconds]
init_6 has joined #nixos
init_6 has quit [Ping timeout: 244 seconds]
init_6 has joined #nixos
slack1256 has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @nh2 opened pull request #63938 β†’ texmacs: 1.99.2 -> 1.99.10 β†’ https://git.io/fjoNr
levdub has quit [Quit: Textual IRC Client: www.textualapp.com]
<pie_> aswanson, im working on redoing the R package set
<pie_> aswanson, would be interested in getting your feedback and any other R users you know
ericsagnes has quit [Ping timeout: 246 seconds]
o1lo01ol1o has joined #nixos
sigmundv has quit [Ping timeout: 272 seconds]
o1lo01ol1o has quit [Ping timeout: 244 seconds]
MmeQuignon has quit [Ping timeout: 258 seconds]
tmaekawa has joined #nixos
ericsagnes has joined #nixos
stepcut has quit [Remote host closed the connection]
stepcut has joined #nixos
stepcut has quit [Read error: Connection reset by peer]
stepcut_ has joined #nixos
<{^_^}> [nixpkgs] @jonafato opened pull request #63939 β†’ keepassxc: 2.4.1 -> 2.4.3 β†’ https://git.io/fjoNP
cjpbirkbeck has quit [Quit: Quitting now.]
stepcut_ has quit [Ping timeout: 272 seconds]
fresheyeball has quit [Quit: WeeChat 2.4]
slack1256 has joined #nixos
allenj12 has quit [Remote host closed the connection]
o1lo01ol1o has joined #nixos
kim0 has quit [Quit: Connection closed for inactivity]
Supersonic has quit [Ping timeout: 276 seconds]
<yunratobe> anyone has running appimage on nixos? I want to run cryptomator and retroshare, but it seems i can't get it working, even though I added appimage-run in configuration.nix
o1lo01ol1o has quit [Ping timeout: 272 seconds]
Supersonic has joined #nixos
ym555_ is now known as ym555
<clever> yunratobe: are you running appimage-run on the appimage?
<yunratobe> clever: yes
mexisme has joined #nixos
<clever> cant think of anything else to check
<yunratobe> the output https://pastebin.com/zyStNPke
mexisme has quit [Ping timeout: 245 seconds]
levdub has joined #nixos
o1lo01ol1o has joined #nixos
o1lo01ol1o has quit [Ping timeout: 244 seconds]
kvda has joined #nixos
ris has quit [Ping timeout: 260 seconds]
b has quit [Quit: Lost terminal]
imalison has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
o1lo01ol1o has joined #nixos
<{^_^}> [nixpkgs] @kalbasit merged pull request #63936 β†’ buildGoModule: add ./ to all sub-packages β†’ https://git.io/fjobw
<{^_^}> [nixpkgs] @kalbasit pushed to master Β« buildGoModule: add ./ to all sub-packages (#63936) Β»: https://git.io/fjoA6
o1lo01ol1o has quit [Ping timeout: 272 seconds]
palo1 has joined #nixos
palo has quit [Ping timeout: 258 seconds]
palo1 is now known as palo
day|flip has quit [Remote host closed the connection]
v88m has quit [Ping timeout: 245 seconds]
orivej has joined #nixos
<emacsomancer> on a foreign distro, running `nix-chanell --update nixpkgs` as user results in a permissions error; as sudo logs my user out from all sessions
<emacsomancer> *nix-channel
digilicious has quit [Quit: Leaving.]
L-o-r-d has joined #nixos
kvda has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
kvda has joined #nixos
L-o-r-d has quit [Quit: πŸ‘‰ ##Truth πŸ‘ˆ]
slack1256 has quit [Remote host closed the connection]
rauno has joined #nixos
ddellacosta has quit [Ping timeout: 246 seconds]
adamantium has joined #nixos
orivej has quit [Read error: Connection reset by peer]
orivej has joined #nixos
o1lo01ol1o has joined #nixos
rauno has quit [Ping timeout: 252 seconds]
anon has joined #nixos
anon is now known as Guest29792
o1lo01ol1o has quit [Ping timeout: 268 seconds]
domogled has joined #nixos
clacke_movim has left #nixos [#nixos]
clacke_movim has joined #nixos
Myhlamaeus has joined #nixos
kvaster has joined #nixos
<{^_^}> [nixpkgs] @vcunat pushed 2 commits to master: https://git.io/fjoxV
kvaster has quit [Ping timeout: 268 seconds]
kevincox[m] has joined #nixos
<{^_^}> [nixpkgs] @vcunat merged pull request #63928 β†’ llvm_7,8: disable libpfm on aarch64 β†’ https://git.io/fjo58
hio has joined #nixos
L-o-r-d has joined #nixos
mexisme has joined #nixos
fusion809 has quit [Remote host closed the connection]
o1lo01ol1o has joined #nixos
knupfer has joined #nixos
o1lo01ol1o has quit [Ping timeout: 248 seconds]
kvaster has joined #nixos
init_6 has quit [Remote host closed the connection]
L-o-r-d has quit [Quit: πŸ‘‰ join ##Truth πŸ‘ˆ]
Drakonis has quit [Quit: WeeChat 2.4]
Drakonis has joined #nixos
lsix has joined #nixos
<lurpahi> … how long has appimage-run been there?
m0rphism has joined #nixos
lsix has quit [Quit: WeeChat 2.4]
lsix has joined #nixos
lsix has quit [Client Quit]
lsix has joined #nixos
lsix has quit [Client Quit]
hmpffff has joined #nixos
<Izorkin> aanderse: please show breakage variant php-fpm
v88m has joined #nixos
otulp has quit [Remote host closed the connection]
<v88m> Hi, what the correct way to set custom TeX `texmf.cnf' file?
adamantium has quit [Remote host closed the connection]
otulp has joined #nixos
o1lo01ol1o has joined #nixos
Myhlamaeus has quit [Remote host closed the connection]
<v88m> I need unrestricted \write18
o1lo01ol1o has quit [Ping timeout: 244 seconds]
rfold has joined #nixos
o1lo01ol1o has joined #nixos
wavirc22 has joined #nixos
<{^_^}> [nixpkgs] @jlesquembre opened pull request #63942 β†’ clojure: 1.10.0.442 -> 1.10.1.458 β†’ https://git.io/fjopY
knupfer has quit [Remote host closed the connection]
knupfer has joined #nixos
lsix has joined #nixos
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/74d24523283 (from 2 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
<{^_^}> [nixpkgs] @jlesquembre closed pull request #63027 β†’ clojure: 1.10.0.442 -> 1.10.1.447 β†’ https://git.io/fjg5p
Myhlamaeus has joined #nixos
hlolli_ has joined #nixos
o1lo01ol1o has quit [Read error: Connection reset by peer]
o1lo01ol1o has joined #nixos
orivej has quit [Ping timeout: 248 seconds]
slyfox has quit [Quit: :)]
Ariakenom has joined #nixos
<fgaz> Anyone wants to review #63330? It adds Michabo, a qt mastodon/pleroma client written by kaniini (pleroma dev). It's fairly simple, but it's sitting there for more than a week now
<{^_^}> https://github.com/NixOS/nixpkgs/pull/63330 (by fgaz, 1 week ago, open): michabo: init at 0.1
<{^_^}> #63330 (by fgaz, 1 week ago, open): michabo: init at 0.1
<fgaz> sorry bot, I wasn't trying to steal your work :)
puck has quit [Quit: nya]
puck has joined #nixos
slyfox has joined #nixos
o1lo01ol1o has quit [Remote host closed the connection]
xkapastel has joined #nixos
<{^_^}> [nixpkgs] @jlesquembre opened pull request #63943 β†’ git-recent: 1.1.0 -> 1.1.1 β†’ https://git.io/fjopr
thc202 has joined #nixos
<{^_^}> [nixpkgs] @nyanloutre opened pull request #63944 β†’ electron-cash: 4.0.2 -> 4.0.7 β†’ https://git.io/fjop6
<{^_^}> [nixpkgs] @nyanloutre opened pull request #63945 β†’ riot-{web,desktop}: 1.2.1 -> 1.2.2 β†’ https://git.io/fjopM
<{^_^}> [nixpkgs] @nyanloutre opened pull request #63946 β†’ radarr: 0.2.0.1344 -> 0.2.0.1358 β†’ https://git.io/fjopD
__monty__ has joined #nixos
viric has joined #nixos
<{^_^}> [nixpkgs] @nyanloutre opened pull request #63947 β†’ mautrix-telegram: 0.5.2 -> 0.6.0-rc1 β†’ https://git.io/fjop5
Myhlamaeus has quit [Remote host closed the connection]
rfold has quit [Ping timeout: 268 seconds]
alex`` has joined #nixos
o1lo01ol1o has joined #nixos
WilliamHamilton has joined #nixos
fendor has joined #nixos
asheshambasta_m has joined #nixos
<WilliamHamilton> I get this error when using the `haskell-z3` library with the z3 included in nixpkgs-unstable https://gist.github.com/aa38905a70d7647e210bc26ada8f44cd
<WilliamHamilton> my problem is that the error seems to be fixed in https://github.com/IagoAbal/haskell-z3/issues/20 , and I'm using an override to actually get that version
<{^_^}> IagoAbal/haskell-z3#20 (by fare, 2 weeks ago, closed): Failure to compile with z3 4.8.5
cjpbirkbeck has joined #nixos
mexisme has quit [Ping timeout: 245 seconds]
o1lo01ol1o has quit [Remote host closed the connection]
o1lo01ol1o has joined #nixos
ottidmes has joined #nixos
knupfer has quit [Ping timeout: 252 seconds]
MmeQuignon has joined #nixos
<ottidmes> I am running into https://github.com/NixOS/nix/issues/2405 getting an Assertion `store->isStorePath(ctx)' failed. when trying to install nixos on a server. Following the github issue I can see it is fixed, but how can I leverage that fix.
<{^_^}> nix#2405 (by cleverca22, 42 weeks ago, open): builtins.fetchTarball breaks under local?root=
o1lo01ol1o has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @adisbladis merged pull request #63807 β†’ conda: Remove version suffix β†’ https://git.io/fjrMV
<{^_^}> [nixpkgs] @adisbladis pushed 2 commits to master: https://git.io/fjohm
<{^_^}> [nixpkgs] @Lassulus merged pull request #63944 β†’ electron-cash: 4.0.2 -> 4.0.7 β†’ https://git.io/fjop6
<{^_^}> [nixpkgs] @Lassulus pushed commit from @nyanloutre to master Β« electron-cash: 4.0.2 -> 4.0.7 Β»: https://git.io/fjohs
<WilliamHamilton> I'd like to use an earlier version of z3 in an override. I remember that srhb showed me a very nice trick some months ago: overriding only the `version` attribute, but I can't recall the details
<WilliamHamilton> (oh, maybe it's in the previous gists, let me look)
<WilliamHamilton> yes, it was https://gist.github.com/srhb/2f0cc71020441cc19df644ede73f3d8d , thanks again srhb !
o1lo01ol1o has joined #nixos
craige has joined #nixos
o1lo01ol1o has quit [Remote host closed the connection]
kvda has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
kvaster has quit [Quit: Konversation terminated!]
kvaster has joined #nixos
o1lo01ol1o has joined #nixos
o1lo01ol1o has quit [Remote host closed the connection]
hoijui has joined #nixos
o1lo01ol1o has joined #nixos
<{^_^}> [nixpkgs] @andir merged pull request #63929 β†’ systemd: point to commit id instead of branch name β†’ https://git.io/fjo54
<{^_^}> [nixpkgs] @andir pushed 2 commits to master: https://git.io/fjoh9
<das_j> How do I run a test manually?
prometheus_falli has quit [Remote host closed the connection]
o1lo01ol1o has quit [Remote host closed the connection]
<aanderse> nix-build nixos/tests/test.nix
<aanderse> or you mean like actually getting into the vm?
<Izorkin> aanderse: please show breakage variant php-fpm
<{^_^}> [nixpkgs] @teto merged pull request #63946 β†’ radarr: 0.2.0.1344 -> 0.2.0.1358 β†’ https://git.io/fjopD
<{^_^}> [nixpkgs] @teto pushed commit from @nyanloutre to master Β« radarr: 0.2.0.1344 -> 0.2.0.1358 Β»: https://git.io/fjohb
Philonous has quit [Quit: ZNC - http://znc.in]
<das_j> aanderse: Yeah, that's waht I needed. Thanks
Philonous has joined #nixos
<das_j> aanderse++
<{^_^}> aanderse's karma got increased to 8
fendor has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @teto merged pull request #63943 β†’ git-recent: 1.1.0 -> 1.1.1 β†’ https://git.io/fjopr
<{^_^}> [nixpkgs] @teto pushed commit from @jlesquembre to master Β« git-recent: 1.1.0 -> 1.1.1 Β»: https://git.io/fjohx
<aanderse> Izorkin: aside from the one fix etu put in, breaking compatibility with every user who uses phpfpm with a socket for their own work (ie. stuff not in nixpkgs, local user stuff), and the code having some unused arguments, i have a module or two that doesn't seem to be working
<aanderse> i haven't exactly been able to explain why the module isn't working yet, though
<aanderse> this is why i haven't posted the specific details yet
fendor has joined #nixos
<das_j> I think the module could also profit from some more sensible defaults
<das_j> Like pm = dynamic. Almost every module has to do that
<aanderse> das_j: yes that module needs some work
<aanderse> i think the code is much more legible in the PR i put in
<aanderse> easier to understand i hope
<aanderse> but
<aanderse> more work to do
<Izorkin> aanderse: Can you drop the example of non-working code php-fpm? I will try to look at the test virtual machine.
asheshambasta_m has quit [Quit: Leaving.]
orivej has joined #nixos
linarcx has joined #nixos
<{^_^}> [nixpkgs] @mpoquet opened pull request #63948 β†’ Simgrid 3.22.2 to 3.23 β†’ https://git.io/fjojn
<{^_^}> [nixpkgs] @aanderse opened pull request #63949 β†’ foswiki: drop package & httpd subservice β†’ https://git.io/fjojc
linarcx has quit [Quit: WeeChat 2.4]
talqu has joined #nixos
o1lo01ol1o has joined #nixos
o1lo01ol1o has quit [Remote host closed the connection]
<Izorkin> aanderse: cheked php-fpm in with mantis and yii2 - sites worked
noudle has joined #nixos
dansho has joined #nixos
earldouglas has left #nixos [#nixos]
MmeQuignon has quit [Ping timeout: 272 seconds]
MmeQuignon has joined #nixos
cjpbirkbeck has quit [Quit: Quitting now.]
sjourdois has joined #nixos
orivej has quit [Ping timeout: 244 seconds]
karetsu has joined #nixos
MmeQuignon has quit [Ping timeout: 245 seconds]
MmeQuignon has joined #nixos
orivej has joined #nixos
<WilliamHamilton> hey, how can I invalidate the caching of an overlay? I can enter a `nix-shell` environment even when I removed one of the local folder that I use as a dependency in my overlay
o1lo01ol1o has joined #nixos
karetsu has quit [Quit: WeeChat 2.4]
<WilliamHamilton> alternative question: how can I be sure that I'm rebuilding a `nix-shell` from scratch?
freeman42x has joined #nixos
o1lo01ol1o has quit [Ping timeout: 258 seconds]
<aanderse> das_j: great suggestion. that kinda belongs in a follow up pr as this was mostly supposed to be a revert... but i think we're past that point now, so i'll add that
<das_j> aanderse: Which one?
<das_j> the one on the PR?
<WilliamHamilton> in a `nix-shell -p go` I get the error `warning: GOPATH set to GOROOT` when I try to `go get -d -u github.com/Merovius/srvfb`. I'm not familiar with go or the go infrastructure, is there someone that knows what's happening?
<aanderse> yeah the listen default value
<yorick> WilliamHamilton: yes, GOPATH should be somewhere in your home directory, go get will try to write there
<yorick> WilliamHamilton: they have some new infrastructure with gomod
<WilliamHamilton> yorick so is something like `~/code/go` good for my GOPATH? Should I set it once I enter the `nix-shell -p go`?
<WilliamHamilton> yorick indeed that works, thanks!
<yorick> WilliamHamilton: yep
<WilliamHamilton> yorick unrelated question, do you have any trick to invalidate a `nix-shell` cache to force to build the nix-shell from scratch? It doesn't seem to notice the change in local dependencies
<yorick> WilliamHamilton: it absolutely should do that if you restart that
<yorick> WilliamHamilton: what did you change?
<WilliamHamilton> I swapped a version of a local repository for another one. So I have this `shell.nix` that is referencing an overlay, and I changed the contents of one of the folders referenced in the overlay
<yorick> WilliamHamilton: it fully evaluates everything every time you run nix-shell, so it's unlikely that it's a caching issue
srid6390803 has quit [Ping timeout: 258 seconds]
<WilliamHamilton> yorick I literally deleted the folder referenced in there and `nix-shell` still works
<WilliamHamilton> I had in my overlay:
<WilliamHamilton> haskell-z3 = doJailbreak (dontCheck (flip self.haskellPackages.callPackage {} "/home/carlo/code/haskell/forks/haskell-z3"));
<yorick> WilliamHamilton: remove the "" around the path
<WilliamHamilton> but that folder doesn't exist anymore, and it still works
<WilliamHamilton> let me try
<WilliamHamilton> no, same thing
<yorick> WilliamHamilton: are you sure it's using your package?
karetsu has joined #nixos
<WilliamHamilton> oh, in the sense that the attribute I'm writing in the overlay is completely overlooked? that's possible for sure
<WilliamHamilton> yorick thanks, that was it, the name of the attribute was wrong, and so due to the lazy evaluation the wrong one got never called, and instead the one with the right name in nixpkgs got called
<WilliamHamilton> thanks again!
<yorick> WilliamHamilton: you're welcome!
<aveltras> anyone having trouble getting redshift service to start automatically ?
<aveltras> systemd says it's inactive but it works if i start it manually
kim0 has joined #nixos
tmaekawa has quit [Ping timeout: 258 seconds]
<aveltras> using sway, if this changes anything..
L-o-r-d has joined #nixos
hoijui has quit [Ping timeout: 252 seconds]
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/e295fd81370 (from 2 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
<gchristensen> aveltras: it does
<aveltras> gchristensen: trying this
<aveltras> gchristensen: works nicely, thx !
<gchristensen> yep!
<karetsu> do we have any lemonbar users? Is there an easy way to get multiple lines in a bar without having to stack multiple bars?
<yorick> gchristensen: do you have some ./nix-build-on-packet-arm-spot.sh?
<gchristensen> no, but I wish I did
<gchristensen> I have to go. I can tell you what exactly I do when I get back :)
<yorick> okay
waleee-cl has joined #nixos
karetsu has quit [Quit: WeeChat 2.4]
sternenseemann is now known as sterni
rauno has joined #nixos
<WilliamHamilton> another question: I have a `shell.nix` that references an `overlay.nix` which overwrites some haskell packages, among whose there is a local package for which I have a `default.nix`. When I try to evaluate that, I get `error: infinite recursion encountered, at undefined position`
<WilliamHamilton> before I didn't have this problem because the overlay was system-wide, but now I only want the overlay to work for the original package
<WilliamHamilton> how can I avoid this error?
<yorick> colemickens: why not propagatedBuildInputs for the swaybg thing?
noudle has quit []
<yorick> WilliamHamilton: make sure to use super/self correctly in the overlay
<yorick> super.callPackage ;)
<colemickens> Dunno. Does that fix the issue? I don't really know much about ir
<yorick> colemickens: it'll add swaybg as a buildInput to the final user env, but maybe not if you're running it from a display manager
<yorick> I think the wrapper solution should be fine
rauno has quit [Ping timeout: 252 seconds]
benhart has quit [Remote host closed the connection]
L-o-r-d has quit [Quit: Join πŸ‘‰ ##Truth πŸ‘ˆ]
<WilliamHamilton> yorick very good, that solved it; could you elaborate on why `super.callPackage` is the right choice there?
<yorick> WilliamHamilton: callPackage has some magic to find the fix point without infinite recursion, and it's resolved after the overlays are processed
<yorick> I don't really know about the details :)
<aveltras> how can i choose argument for a specific package in configuration.nix. For example, i want "pulseSupport" to be true in this package https://github.com/NixOS/nixpkgs/blob/master/pkgs/applications/misc/waybar/default.nix when adding it to programs.sway.extraPackages ?
<WilliamHamilton> yorick I see, thanks!
<WilliamHamilton> very useful even without details :)
<yorick> aveltras: nixpkgs.config.sway.pulseSupport = true
<yorick> oh, waybar
<aveltras> yorick: i've tried this, but this didn't recompile anything
<yorick> aveltras: sorry, it's {nixpkgs.config.pulseaudio = true;}
<aveltras> yorick: doesn't seem to work
<aveltras> yorick: nvm it works
<aveltras> i had put nixpkgs.config.pulseSupport = true;
<aveltras> yorick: where can i see that it's pulseaudio = true which is required ?
stepcut has joined #nixos
turion has joined #nixos
turion has left #nixos [#nixos]
<yorick> aveltras: all-packages.nix around line 18100
<{^_^}> [nixpkgs] @alyssais opened pull request #63952 β†’ gnupg: change default keyserver to non-SKS β†’ https://git.io/fjKeC
<yorick> aveltras: yes
<aveltras> end at line 15000~ for me
<yorick> aveltras: github truncates it
dycan has joined #nixos
<aveltras> yorick: ok i see, might explain why i didn't find redshift earlier on
<aveltras> yorick: thanks, it's now much clearer :)
wfranzini has quit [Remote host closed the connection]
wfranzini has joined #nixos
knupfer has joined #nixos
chiiba has joined #nixos
<chiiba> To lock Nix packages I've cloned the Nix repo and I've entered my shell using `nix-shell -I ./nixpkgs`. However I see that "some paths will be fetched". Are they fetched into "./nixpkgs" or somewhere else in my environment?
<yorick> chiiba: they are all fetched to /nix/store/
<yorick> also nixpkgs reads from ~/.config/nixpkgs/config.nix by default
civodul has joined #nixos
o1lo01ol1o has joined #nixos
<chiiba> I'm supposing that's true for NixOS, which I'm not using rn. Also I have shell.nix, which nix-shell should read.
<symphorien> chiiba: I think the "right" syntax is nix-shell -I nixpkgs=./nixpkgs
o1lo01ol1o has quit [Ping timeout: 244 seconds]
alex`` has quit [Ping timeout: 268 seconds]
dontobey has quit [Quit: ZNC - http://znc.in]
mniip has joined #nixos
<{^_^}> [nixpkgs] @JohnAZoidberg opened pull request #63953 β†’ psrecord: init at 1.1 β†’ https://git.io/fjKeg
hmpffff has quit [Quit: Bye…]
m0rphism has quit [Ping timeout: 248 seconds]
ddellacosta has joined #nixos
<WilliamHamilton> I have a haskell package that seems to be building the test suite even if I specify dontCheck
<WilliamHamilton> here's the invocation
<WilliamHamilton> z3 = doJailbreak (dontCheck (flip super.haskellPackages.callPackage {} "/home/carlo/code/haskell/forks/haskell-z3"));
<yorick> WilliamHamilton: it will build the test suite but not run it
<yorick> (I think?)
<WilliamHamilton> what if I don't want that to be built?
<yorick> let me chek
<yorick> no, it shouldn't build the test with dontCheck
<WilliamHamilton> Preprocessing test suite 'spec' for z3-408.0..Building test suite 'spec' for z3-408.0..[1 of 2] Compiling Z3.Base.Spec ( test/Z3/Base/Spec.hs, dist/build/spec/spec-tmp/Z3/Base/Spec.o )[2 of 2] Compiling Main ( test/Spec.hs, dist/build/spec/spec-tmp/Main.o )Linking dist/build/spec/spec ...
<WilliamHamilton> I can always delete the test suite from the cabal file and the package, but it seems a bit brutal
<yorick> WilliamHamilton: (appendBuildFlag drv "--disable-tests")?
<yorick> that's weird, it doesn't include any of the test dependencies with doCheck=false, but I don't see it disabling any tests
<WilliamHamilton> it's still trying to build the test suite, even with (appendBuildFlag drv "--disable-tests")!
<WilliamHamilton> now it would be
<WilliamHamilton> z3 = doJailbreak (dontCheck (flip appendBuildFlag "--disable-tests" (flip super.haskellPackages.callPackage {} "/home/carlo/code/haskell/forks/haskell-z3")));
<yorick> yeah
iyzsong has quit [Read error: Connection reset by peer]
gambpang has joined #nixos
<{^_^}> [nixpkgs] @nh2 opened pull request #63954 β†’ Consul 1.5.2 β†’ https://git.io/fjKeH
fendor_ has joined #nixos
<gambpang> I have a project where I need the header file zlib.h for the zlib library. This does not seem to be part of the zlib nix package and I don't see a development version. Does anyone have a derivation that provides the header too?
wavirc22 has quit [Remote host closed the connection]
endformationage has joined #nixos
fendor has quit [Ping timeout: 248 seconds]
<symphorien> Maybe zlib.dev
stepcut_ has joined #nixos
ddellacosta has quit [Ping timeout: 246 seconds]
stepcut has quit [Ping timeout: 248 seconds]
<yorick> is there a community x64 builder of sorts?
omanji has joined #nixos
<gambpang> symphorien: would you point me to a channel that has zlib.dev?
<yorick> gambpang: everything since 2017 or so
<symphorien> all channels have it I think
<infinisil> ,locate zlib.h
<{^_^}> Found in packages: gap, itk, msf, vtk, cmtk, poco, psol, botan, klibc, botan2, emboss, meteor, distrho, cryptopp, gap-full, palemoon, paraview, sonic-pi, zlib.dev, linux.dev, plan9port, emscripten, kodestudio, nodejs-6_x, nodejs-8_x, vtkWithQt4, gap-minimal, nodejs-10_x, nodejs-11_x, nodejs-slim, linux_mptcp.dev, nodejs-slim-8_x, nodejs-slim-10_x, nodejs-slim-11_x, haxePackages.hxcpp, python27Packages.pysam, python37Packages.pysam, and 14 more
<infinisil> Phew
dontobey has joined #nixos
<omanji> Hi there, I have git installed via my configuration.nix file but whenever I pull or push it keeps asking me for my password. I'm now trying to enable git with libsecret support via the withLibsecret flag (https://github.com/NixOS/nixpkgs/blob/master/pkgs/applications/version-management/git-and-tools/git/default.nix#L15). So far, no succes. Any help
<omanji> would be appreciated!
<yorick> omanji: you want to enable gpg-agent or ssh-agent
<omanji> I do have programs.ssh.startAgent = true; in my configuration.nix too
o1lo01ol1o has joined #nixos
<yorick> omanji: try running `ssh-add`
<yorick> omanji: also, the package 'gitFull' does have libsecret
ddellacosta has joined #nixos
<omanji> Yes, so this works but whenever I restart I need to do it again
<omanji> I've seen gitFull mentioned in a few responses on internet. Do you have to tell git to use libsecret in your gitconfig?
<omanji> If so, I'm missing the path to it
<yorick> omanji: you could use programs.gnupg.agent.enable = true (and programs.gnupg.agent.enableSSHSupport = true)
dycan has quit [Remote host closed the connection]
MmeQuignon has quit [Ping timeout: 248 seconds]
omanji62 has joined #nixos
<WilliamHamilton> hmm, maybe the problem is that I misinterpret what this error means https://gist.github.com/d0431dbee6d5472f6084b9eaa9037507
<yorick> WilliamHamilton: that means it failed to link to z3
<WilliamHamilton> `spec` seems the name of the test suite of that package (which I tried to disable without success), but there are no reference there to `Z3_get_error_msg_ex`
<yorick> Z3_get_error_msg_ex is probably in some z3 header
clacke_movim has left #nixos [#nixos]
omanji has quit [Ping timeout: 260 seconds]
<WilliamHamilton> the point is that `Z3_get_error_msg_ex` should have been removed in version `Z3-4.8.5`. Is there a way for me to grep in the header files of the current z3 headers?
<WilliamHamilton> (and `Z3-4.8.5` is the version currently packaged in nixos-unstable)
<nh2> dtz: https://github.com/NixOS/nixpkgs/pull/63954 -- I had missed yours before. You can add me as reviewer me on consul PRs btw if you like. Do you want to review mine?
<{^_^}> #63954 (by nh2, 30 minutes ago, open): consul: 1.4.2 -> 1.4.4 -> 1.5.2
<yorick> WilliamHamilton: this change is from 7 days ago
<yorick> so not likely in the thing you're compiling
mexisme has joined #nixos
<WilliamHamilton> I'm cloning that repo, to which I rebased some modification of mine. In that repo there is no mention of `Z3_get_error_msg_ex`
<WilliamHamilton> still, for some reason it's probably not the repo I'm actually compiling, because even if I deleted the test-suite from the cabal file, and regenerated `default.nix`, I still get that the `nix-shell` is trying to build the thing
<WilliamHamilton> for reference, this is my overlay:
mexisme has quit [Ping timeout: 246 seconds]
<yorick> WilliamHamilton: what are you building?
<yorick> (nix-build ...?)
<gambpang> `nix-env -i zlib.dev` fails with "selector 'zlib.dev' matches no derivations". I can see nixpkgs-unstable when I run `nix-channel --list` and I just ran `nix-channel --update`. Also `zlib.dev` does not show up using the package search on nixos.org. Is there some way to double check that I'm looking at the same stuff you're looking at?
<yorick> gambpang: nix-env -iA nixos.zlib.dev
<yorick> gambpang: don't use nix-env -i, it's really slow
<yorick> (or nixpkgs.zlib.dev if nixos doesn't work)
<WilliamHamilton> yorick: I'm not sure: I'm developing a package, and I'd like to use those haskell bindings as a dependency. I use nix-shell to enter a shell for my project
<gambpang> yorick: boom that did it. ty!
<yorick> WilliamHamilton: can you paste your shell.nix?
<simukis__> is binutils not overridable? I tried something like https://gist.github.com/nagisa/d968bbef17acd9afd1bf83ab6a683cf5 but it still ends up using the original binutils. If I ask for `pkgs.binutils-unwrapped` only then it builds the new binutils.
clacke_movim has joined #nixos
<yorick> WilliamHamilton: note that you aren't overriding pkgs.haskell.packages anywhere, if you're using that
<yorick> I'm not sure how to override both pkgs.haskell.packages and pkgs.haskellPackages at the same time
drakonis1 has joined #nixos
<WilliamHamilton> wait, isn't haskellPackages an alias for haskell.packages.$currentCompiler?
polman has quit [Ping timeout: 244 seconds]
<WilliamHamilton> and, anyway, in the `shell.nix` file of `project`, I say `compiler ? "default"`
<WilliamHamilton> how can I check that I'm actually using haskellPackages?
o1lo01ol1o has quit [Remote host closed the connection]
<yorick> WilliamHamilton: it's an alias, but I'm not sure how the override works
<yorick> WilliamHamilton: if you set z3 = null, does it fail at least?
omanji62 has quit [Ping timeout: 260 seconds]
<WilliamHamilton> wait, where should I sett `z3 = null`?
<yorick> never mind, let me try something
polman has joined #nixos
<{^_^}> [nixpkgs] @marsam opened pull request #63955 β†’ 1password: 0.5.6-003 -> 0.5.7 β†’ https://git.io/fjKfT
omanij has joined #nixos
<yorick> WilliamHamilton: yeah, it seems to be using that z3
ddellacosta has quit [Ping timeout: 245 seconds]
lunik1 has quit [Quit: :x]
WilliamHamilton has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @marsam opened pull request #63956 β†’ gitAndTools.hub: 2.12.0 -> 2.12.1 β†’ https://git.io/fjKft
lunik1 has joined #nixos
asheshambasta_m has joined #nixos
<aveltras> anyone using home manager directly in nixos configuration.nix ? are the example here https://nixos.wiki/wiki/Home_Manager still relevant ? i have an error when doing like this
gagbo has joined #nixos
WilliamHamilton has joined #nixos
<WilliamHamilton> yorick sorry, the power went away, I might have lost some messages
<WilliamHamilton> I was at "nevermind, let me try something"
<WilliamHamilton> I had asked where should I have put `z3 = null`
<alexarice[m]> aveltras: I believe https://rycee.gitlab.io/home-manager/index.html#sec-install-nixos-module is up to date
<aveltras> alexarice[m]: in fact, it works with fetchTarball but only when i don't specify sha256
<WilliamHamilton> besides, where do I check what's the current compiler for `haskell.packages` vs `haskellPackages`?
omanij has quit [Ping timeout: 260 seconds]
<yorick> WilliamHamilton: yeah, it uses the z3 from your overlay
<yorick> WilliamHamilton: try breaking that z3 and seeing what happens :P
<aveltras> alexarice[m]: hmm now it works, forget what i said
<alexarice[m]> I'd take a look at what I linked anyway as I believe it is the recommended way to do it now
<WilliamHamilton> yorick interestingly I tried inserting nonsense in the dependency, and `nix-shell` doesn't even see that! Furthering the idea that it's not that dependency that is being used!
<yorick> WilliamHamilton: I tried changing the path and it stopped working
<WilliamHamilton> yorick yes indeed, if you change the path, or if you don't have a default.nix in there it stops working, but interestingly it doesn't seem too interested in what the code is in there
<WilliamHamilton> the `default.nix` in there is: https://gist.github.com/67e1ef563c2e585ed3802b4a68859392
<yorick> WilliamHamilton: are you sure it should depend on itself?
<WilliamHamilton> it's autogenerated, apart from that `gomp ? null` bit which I added
<WilliamHamilton> I don't think it's depending on itself, it's depending on the system `z3` package (the solver, not the library)
<yorick> WilliamHamilton: you could callPackage it with {z3 = pkgs.z3;}, then?
<WilliamHamilton> in the overlay? Should I use self.pkgs or super.pkgs?
<WilliamHamilton> well, I used `super.pkgs`, and at least it's doing something different
<yorick> WilliamHamilton: self.pkgs should be fine here
<WilliamHamilton> yorick if you want to teach your heuristics to choose between self and super, I'm glad to hear it
<WilliamHamilton> and, btw, the build worked
<WilliamHamilton> so that was the problem!
<WilliamHamilton> \o/ !!!
ddellacosta has joined #nixos
<yorick> WilliamHamilton: if you may want to override it later from some other overlay and it doesn't depend on itself, you can use self (so with most dependencies)
<yorick> WilliamHamilton: if it's a library function or an override, super
<yorick> WilliamHamilton: congratulations!
<WilliamHamilton> thank you! :)
m0rphism has joined #nixos
<asymmetric> can someone explain the advantage of using mkShell vs mkDerivation?
<asymmetric> in a shell.nix
o1lo01ol1o has joined #nixos
o1lo01ol1o has quit [Remote host closed the connection]
detran has quit [Ping timeout: 246 seconds]
<manveru> asymmetric: it can't be used for nix-build, and doesn't need a name...
asheshambasta_m has quit [Quit: Leaving.]
o1lo01ol1o has joined #nixos
kraem has quit [Quit: outta here]
<Unode> is there any way to prevent nix-env from installing if a cached/pre-built binary isn't available?
<Unode> I want to prevent a given command from falling back to building from source.
<Ralith> manveru: kinda weird that it seems to still need a src
<manveru> Ralith: it doesn't
<Ralith> oh, good
stepcut_ has quit [Remote host closed the connection]
lunik1 has quit [Quit: :x]
<Ralith> yeah that is convenient
stepcut has joined #nixos
lunik1 has joined #nixos
stepcut has quit [Read error: Connection reset by peer]
stepcut_ has joined #nixos
<yorick> asymmetric: -j0
<asymmetric> yorick: ?
<yorick> oh sorry
<yorick> Unode: -j0
<asymmetric> manveru: and there's also the inputsFrom attr right? is that impossible to achieve with mkShell?
<asymmetric> sorry, impossible to achieve with mkDerivation
kraem has joined #nixos
<Unode> yorick: that means use all cores when building from source, not quite what I want ;)
<yorick> Unode: it disables building for me
detran has joined #nixos
<Unode> from manpage "The value 0 means that the builder should use all available CPU cores"
<yorick> Unode: no, that's --cores
<yorick> but making the env might be a build job
<Unode> yorick: oh I see
<Unode> yeah the manpage doesn't mention 0 as a special case at all
o1lo01ol1o has quit [Remote host closed the connection]
<aveltras> does anyone have an example of a fully declarative installation of home-manager ? using nixos configuration.nix (not needing to add home manager as a channel by hand)
lunik1 has quit [Quit: :x]
lunik1 has joined #nixos
o1lo01ol1o has joined #nixos
fusion809 has joined #nixos
lunik1 has quit [Client Quit]
lunik1 has joined #nixos
stepcut_ has quit [Ping timeout: 245 seconds]
polmaan has quit [Ping timeout: 248 seconds]
polmaan has joined #nixos
kraem has quit [Ping timeout: 245 seconds]
polman has quit [Ping timeout: 244 seconds]
kraem has joined #nixos
polman has joined #nixos
<alexarice[m]> aveltras: I think you can declaratively manage channels but I'm not sure how
hoijui has joined #nixos
<{^_^}> [nixops] @nh2 opened pull request #1174 β†’ ssh: Read extra options from NIXOPS_SSHOPTS env var. β†’ https://git.io/fjKfo
<{^_^}> [nixpkgs] @aanderse opened pull request #63957 β†’ nixos/httpd: remove broken trac subservice β†’ https://git.io/fjKfK
stepcut has joined #nixos
stanibanani has joined #nixos
stanibanani has quit [Ping timeout: 258 seconds]
o1lo01ol1o has quit [Remote host closed the connection]
fendor has joined #nixos
o1lo01ol1o has joined #nixos
<{^_^}> [nixpkgs] @bdesham opened pull request #63958 β†’ olm: Allow building on Darwin β†’ https://git.io/fjKfM
rfold has joined #nixos
Okinan has quit [Quit: Konversation terminated!]
Okinan has joined #nixos
<alexarice[m]> is there a way to build a nix expression without putting it in a file?
<symphorien> nix-build -E
<symphorien> I can never remember how to use it, but I know it exists
<clever> alexarice[m]: nix-build -E 'with import <nixpkgs> {}; runCommand "name" {} "echo foo > $out"'
<alexarice[m]> clever: symphorien thanks
<alexarice[m]> in the end it was easier to write it to a file anyway
benhart has joined #nixos
<asymmetric> followup from aveltras question: is there a way to declare channels, instead of using nix-channel?
<benhart> hey folks, I'm trying to set up xmonad in nixos, and I keep getting an error that haskellPackages is an undefined variable in the below configuration:
<benhart> windowManager.xmonad = { enable = true; enableContribAndExtras = true; extraPackages = haskellPackages: [ haskellPackages.xmonad-contrib haskellPackages.xmonad-extras haskellPackages.xmonad ]; };
<benhart> how can I define this variable?
<aveltras> benhart: i think you should write pkgs.haskellPackages
turion has joined #nixos
<aveltras> or add a "with pkgs;" somewhere before
<clever> asymmetric: channels are configured via /root/.nix-channels, and something else, one min
<aveltras> can t say since we dont see the whole file
<lassulus> benhart: can you paste your config somewhere, it's hard to read inline
<clever> symphorien: on the first login as root, if ~/.nix-channels doesnt exist, it will register system.defaultChannel as your channel
<clever> oops, wrong tab-complete, lol
<clever> asymmetric: but the above wont change channels after you update the cfg
WilliamHamilton has quit [Remote host closed the connection]
WilliamHamilton has joined #nixos
<asymmetric> aveltras: so that's a way in which home manager can be installed, i guess
<asymmetric> not exactly sure how that would work in ~/.config/nixpkgs/configuration.nix though..
<benhart> lassulus - I'll install something on the box so I can put something on pastebin
<alexarice[m]> asymmetric: I'm sure I saw something where someone didn't use channels and manually set their NIX_PATH in their configuration
<aveltras> asymmetric: i'm not even sure i need this, i just wonder why adding "home-manager" to my environment packages wont bring the executable "home-manager" in the shell
<alexarice[m]> aveltras: I thought that did work
<alexarice[m]> aveltras: The channel stuff makes it so that `home-manager switch` is ran with `nixos-rebuild switch`
<aveltras> alexarice[m]: where can i see this ?
<alexarice[m]> aveltras: see what?
noudle has joined #nixos
<aveltras> the automated part where home-manager switch would get called when nixos-rebuild switch is
<benhart> here's my config with the undefined variable haskellPackages https://pastebin.com/jkjeUKA9
<alexarice[m]> aveltras: ^
<asymmetric> i thought the automated part was toggled with programs.home-manager.enable
<aveltras> benhart: try "extrapackages = haskellpackages: with pkgs; [" line 84
<asymmetric> but that would call `nixos-rebuild` when `home-manager switch` is called, not the other way around
<asymmetric> sorry - that would call `nix-channel --update`
<aveltras> alexarice[m]: i guess i'll use the channels then, i think the wiki example worked in the past somehow..
stepcut_ has joined #nixos
<alexarice[m]> asymmetric: perhaps, I am referring to adding `home-manager.users.<username> = <func>' to configuration.nix
stepcut has quit [Ping timeout: 258 seconds]
<alexarice[m]> benhart: not sure what is causing your problem but I don't think you need the extra packages
<benhart> well, now it's building at least, thanks aveltras and alexarice[m]
lsix has quit [Ping timeout: 276 seconds]
<alexarice[m]> benhart: In your paste you had haskellpackages in the function argument and haskellPackages in the body
<aveltras> alexarice[m]: i have this part in the configuration.nix already, tried configuring git with that but this doesn't seem to change anything
WilliamHamilton has quit [Remote host closed the connection]
inquisitiv3 has joined #nixos
<asymmetric> alexarice[m]: where's `home-manager.users` implemented? can't find it here https://github.com/rycee/home-manager/blob/master/modules/programs/home-manager.nix
lsix has joined #nixos
<alexarice[m]> benhart: I think using 'with pkgs;' instead of the provided argument is a bad idea
<aveltras> benhart: indeed, you may try to remove the with pkgs; and just use haskellpackages (without majuscule here)
<benhart> the with pkgs got it to build, what should i change it to? with haskellPackages?
<alexarice[m]> benhart: change to 'extraPackages = haskellPackages: [ ... ]'
<alexarice[m]> and it should work
<aveltras> try replacing all your "haskellPackages" with "haskellpackages" lines 85-86-87 since that's the name of the argument
<aveltras> or ye, rename the argument
<alexarice[m]> or that
<alexarice[m]> one or the other
<alexarice[m]> not both
MmeQuignon has joined #nixos
<Lears> Or just remove the extraPackages option, since it's entirely redundant here.
<aveltras> so many possibilites :)
<alexarice[m]> yh all those packages are being added anyway
turion has quit [Ping timeout: 252 seconds]
hoijui has quit [Quit: Leaving]
MmeQuignon has quit [Ping timeout: 245 seconds]
MmeQuignon has joined #nixos
o1lo01ol1o has quit [Remote host closed the connection]
turion has joined #nixos
<Athas> So, what's the story with the services.xserver stuff? Why is there nothing similar for Wayland?
chiiba has quit [Ping timeout: 246 seconds]
WilliamHamilton has joined #nixos
wfranzini has quit [Remote host closed the connection]
wfranzini has joined #nixos
levdub has quit [Ping timeout: 245 seconds]
plchldr has joined #nixos
<WilliamHamilton> is anyone familiar with simple crosscompilation for go in nixos? I'm trying to execute the 4 bash commands in https://github.com/Merovius/srvfb without luck
WinchellsM has joined #nixos
<WinchellsM> In the `installPhase` of a nix derivation I need to run a file as root
<WilliamHamilton> for example, should I use `nix-shell -p go` or `nix-shell -p go_bootstrap`, or other versions/
<WinchellsM> How do I use `sudo` in the installPhase ?
<WinchellsM> (I get an error when I try to)
<yorick> WinchellsM: for what?
stepcut_ has quit [Ping timeout: 245 seconds]
lsix has quit [Quit: WeeChat 2.4]
stepcut has joined #nixos
day|flip has joined #nixos
benhart has quit [Remote host closed the connection]
Xal has quit [Ping timeout: 244 seconds]
ottidmes has quit [Quit: WeeChat 2.4]
MmeQuignon has quit [Ping timeout: 258 seconds]
alex`` has joined #nixos
<{^_^}> [nixpkgs] @minijackson opened pull request #63959 β†’ firefox-send: init at 3.0.12 β†’ https://git.io/fjKJz
Xal has joined #nixos
alp has joined #nixos
fendor_ has quit [Ping timeout: 245 seconds]
laalf_ has quit [Ping timeout: 246 seconds]
knupfer has quit [Quit: knupfer]
knupfer has joined #nixos
benhart has joined #nixos
o1lo01ol1o has joined #nixos
laalf has joined #nixos
o1lo01ol1o has quit [Ping timeout: 245 seconds]
Jackneill has joined #nixos
ym555_ has joined #nixos
ym555 has quit [Ping timeout: 245 seconds]
levdub has joined #nixos
<Izorkin> aanderse: Can you drop the example of non-working code php-fpm? I will try to look at the test virtual machine.
<{^_^}> [nixpkgs] @JosephSalisbury opened pull request #63960 β†’ gsctl: init at 0.15.1 β†’ https://git.io/fjKJ1
chiiba has joined #nixos
kraem has quit [Ping timeout: 268 seconds]
kraem has joined #nixos
<aanderse> Izorkin: it's integrated with a few things and has some work specific stuff... i was trying to create a simple example to demonstrate but I've ran out of time for today
knupfer has quit [Quit: knupfer]
turion has quit [Quit: Leaving.]
knupfer has joined #nixos
knupfer has quit [Client Quit]
tboston has joined #nixos
Guest29792 has quit [Ping timeout: 246 seconds]
tboston has quit [Read error: Connection reset by peer]
m0rphism has quit [Ping timeout: 245 seconds]
Guest29792 has joined #nixos
knupfer has joined #nixos
Myhlamaeus has joined #nixos
Thra11 has joined #nixos
o1lo01ol1o has joined #nixos
<Izorkin> aanderse: tomorrow will make an example?
kraem has quit [Ping timeout: 244 seconds]
hlolli_ has quit [Ping timeout: 276 seconds]
MmeQuignon has joined #nixos
hlolli has joined #nixos
o1lo01ol1o has quit [Remote host closed the connection]
kraem has joined #nixos
<aanderse> Izorkin: hopefully i can find the time. unfortunately there are other things on my list a little higher at the moment. I'm hoping etu will have some insight as he knows way more about phpfpm than i do.
<Thra11> Is there an easy way to turn a directory full of patches into a list of patches which I can append to kernelPatches?
ris has joined #nixos
qqlq has joined #nixos
o1lo01ol1o has joined #nixos
<alexarice[m]> Athas: Wayland is a program that can be configured like X is so there will probably never be a services.wayland option (at least not like the xserver one)
<alexarice[m]> is not a*
L-o-r-d has joined #nixos
<Thra11> cpu-cgroup-v2 does something with a directory full of patches, but it'
<Thra11> s not used as a list
qqlq_ has joined #nixos
<gchristensen> alexarice[m]: yeah I thought nixos had ~no support for wayland until I realized it was *so much simpler* to configure
qqlq has quit [Ping timeout: 245 seconds]
o1lo01ol1o has quit [Remote host closed the connection]
<alexarice[m]> you just set up your favourite wm/de and then find a way to start it (I start it by a line in .bashrc though there is probably a nice systemd way)
WinchellsM has quit [Quit: Lost terminal]
cxx_newb has joined #nixos
<cxx_newb> Hello there. I want to install nixos on my acer swift 1. I downloaded the iso and dd'ed it to a usb flash drive. Upon boot the cursor appears on the top left and then the laptop freezes. Any ideas how to solve/debug this? The laptop is using UEFI.
<alexarice[m]> cxx_newb: do you have anything else you can test the iso on?
<cxx_newb> yeah, I will come back with results in 5 min.
alex`` has quit [Read error: Connection reset by peer]
kim0 has quit [Quit: Connection closed for inactivity]
<{^_^}> [nixpkgs] @worldofpeace merged pull request #63908 β†’ [19.03] gnome3.gnome-control-center: fix hardcoded paths β†’ https://git.io/fjo6i
<{^_^}> [nixpkgs] @worldofpeace pushed 3 commits to release-19.03: https://git.io/fjKUT
<aveltras> is there a way to display download progress while doing a nixos-rebuild ?
<cxx_newb> alexarice[m] The pendrive is booting fine. The test was on BIOS hardware though, I do not have any other uefi hardware around.
<ivan> aveltras: I check nethogs or dstat
<alexarice[m]> cxx_newb: uefi should work fine, do you get to the bootloader?
<{^_^}> nix#1952 (by teto, 1 year ago, open): display download progress while doing nixos-rebuild
<cxx_newb> alexarice[m] I don't see anything before the cursor, so I guess no?
<aveltras> ivan: i see, would be nice to have the progress with the rebuild
<alexarice[m]> cxx_newb: that's odd, are you sure it's booting onto the flash drive
<cxx_newb> I am sure. I explicitly select the flash drive in the uefi quick boot menu (F12 in my case)
ddellacosta has quit [Ping timeout: 245 seconds]
ym555_ has quit [Ping timeout: 258 seconds]
<ivan> aveltras: that issue I linked has an interesting workaround https://github.com/NixOS/nix/issues/1952#issuecomment-373928543
alex`` has joined #nixos
ym555 has joined #nixos
<{^_^}> [nixpkgs] @worldofpeace merged pull request #63224 β†’ pythonPackages.django_taggit: fix build, enable tests β†’ https://git.io/fjaGd
<{^_^}> [nixpkgs] @worldofpeace pushed 2 commits to master: https://git.io/fjKUm
<aveltras> ivan: ye, i've just used it
<aveltras> i meant, it would be nice to have it on the classic command nixos-rebuild
<aveltras> thanks for the link
<alexarice[m]> cxx_newb: I'm not really sure what the problem could be, I'd try a different usb slot but I doubt there would be any difference
<alexarice[m]> cxx_newb: Do you know if any other distros run on that laptop
<cxx_newb> alexarice[m] yeah I am currently running ubuntu and arch was also running fine a few days back. I also tried to install nixos from ubuntu live according to https://gist.github.com/chris-martin/4ead9b0acbd2e3ce084576ee06961000 and https://nixos.wiki/wiki/Installing_from_Linux but failed with both.
<alexarice[m]> cxx_newb: the only other thing i can think of is trying another version of the iso
<cxx_newb> alexarice[m] is there an archive?
<Thra11> Hmmm. Seem to have got something which works by copying the cpu-cgroup-v2/default.nix and removing bits of it
<alexarice[m]> cxx_newb: https://nixos.org/channels/ each one contains an iso image
<alexarice[m]> cxx_newb: the default is the 19.03 one i think
<cxx_newb> alexarice[m] thanks I will try some of them
<alexarice[m]> cxx_newb: you might have to change the channel after install but other than that it should be the same as installing from the usual iso
cxx_newb has quit [Remote host closed the connection]
WilliamHamilton has quit [Remote host closed the connection]
ym555 has quit [Quit: leaving...]
qqlq has joined #nixos
qqlq_ has quit [Ping timeout: 252 seconds]
<aveltras> is there a way to prevent a timeout on a nix build ? i set --timeout 0 but that doesn't work, i can't nixos-rebuild right now because timeout happens even if the download runs fine (just slowly)
<infinisil> aveltras: What's the error?
<infinisil> I think there's different timeouts
o1lo01ol1o has joined #nixos
Jackneill has quit [Remote host closed the connection]
eof has quit [Quit: eof]
alex`` has quit [Ping timeout: 245 seconds]
alex`` has joined #nixos
talqu has quit [Ping timeout: 258 seconds]
<{^_^}> [nixpkgs] @kalbasit opened pull request #63961 β†’ scalafmt: 2.0.0-RC7 -> 2.0.0 β†’ https://git.io/fjKUH
tboston has joined #nixos
mexisme has joined #nixos
noudle has quit [Remote host closed the connection]
cxx_newb has joined #nixos
noudle has joined #nixos
nornagon has quit [Ping timeout: 244 seconds]
cyphase has quit [Ping timeout: 244 seconds]
nornagon has joined #nixos
<cxx_newb> alexarice[m] hey. I tried most of the nixos releases and the 17.03 version is booting fine. My wifi device does not show up in ip a however. I checked on ubuntu which driver the card is using. It is iwlwifi. I tried loading it in nixos live with modprobe iwlwifi but the device does not show up. I do not have a network cable port so I need the wifi
<cxx_newb> to work. Do you have any idea how that might be possible? thx in advance
cyphase has joined #nixos
<{^_^}> [nixpkgs] @Izorkin opened pull request #63962 β†’ phpfpm: add options globalPhpOptions β†’ https://git.io/fjKUA
o1lo01ol1o has quit [Remote host closed the connection]
cxx_newb has quit [Remote host closed the connection]
o1lo01ol1o has joined #nixos
<simukis__> iwlwifi is pretty standard and known working driver. there is something funky going on.
tboston has quit [Quit: ZNC 1.7.3 - https://znc.in]
<simukis__> it may be that your card is actually newer than 2017, in which case it is plausible that it wouldn’t work
tboston has joined #nixos
tboston has quit [Client Quit]
tboston has joined #nixos
stepcut has quit [Remote host closed the connection]
o1lo01ol1o has quit [Remote host closed the connection]
domogled has quit [Ping timeout: 245 seconds]
plchldr has quit [Remote host closed the connection]
o1lo01ol1o has joined #nixos
stepcut has joined #nixos
<{^_^}> [nixpkgs] @arcnmx opened pull request #63963 β†’ cargo-outdated: fix darwin build β†’ https://git.io/fjKTJ
ddellacosta has joined #nixos
o1lo01ol1o has quit [Remote host closed the connection]
xkapastel has quit [Quit: Connection closed for inactivity]
<{^_^}> [nixpkgs] @alyssais merged pull request #63952 β†’ gnupg: change default keyserver to non-SKS β†’ https://git.io/fjKeC
<{^_^}> [nixpkgs] @alyssais pushed 3 commits to master: https://git.io/fjKTI
chiiba has quit [Ping timeout: 245 seconds]
<{^_^}> [nixpkgs] @kalbasit merged pull request #63961 β†’ scalafmt: 2.0.0-RC7 -> 2.0.0 β†’ https://git.io/fjKUH
<{^_^}> [nixpkgs] @kalbasit pushed 2 commits to master: https://git.io/fjKTt
ottidmes has joined #nixos
tmaekawa has joined #nixos
<ottidmes> any idea why grub tries to install x86_64-efi even though efiSupport = false; and other than the timeout and some extraEntries for shutdown/reboot only the device attribute is set
tmaekawa has quit [Client Quit]
o1lo01ol1o has joined #nixos
tmaekawa has joined #nixos
<{^_^}> Channel nixpkgs-19.03-darwin advanced to https://github.com/NixOS/nixpkgs/commit/d3d4c93e85c (from 86 minutes ago, history: https://channels.nix.gsc.io/nixpkgs-19.03-darwin)
tmaekawa has quit [Client Quit]
selfsymmetric-mu has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @alyssais merged pull request #63909 β†’ [r19.03] libvirt: add patches for CVE-2019-10132, CVE-2019-10161, CVE-2019-10166, CVE-2019-10167 & CVE-2019-10168 β†’ https://git.io/fjoiR
<{^_^}> [nixpkgs] @alyssais pushed commit from @risicle to release-19.03 Β« libvirt: add patches for CVE-2019-10132, CVE-2019-10161, CVE-2019-10166, CVE-2019-10167 & CVE-2019-10168 (#63909) Β»: https://git.io/fjKT3
Ariakenom has quit [Quit: Leaving]
<samueldr> ottidmes: importing config/profiles from e.g. <nixpkgs/> or anywhere?
m0rphism has joined #nixos
<samueldr> ottidmes: could you share the log to see?
<ottidmes> samueldr: just 3 relevant lines: installing the GRUB 2 boot loader on /dev/vda... Installing for x86_64-efi platform. /nix/store/4sifn607v2xkypbfbj6x5dp35s7xyfki-grub-2.02/sbin/grub-install: error: cannot find EFI directory.
<ottidmes> I checked the source of grub-install.pl and see that it is due to --target=... (where ... is probably x86_64-efi) which is determined by grub.grubTarget https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/system/boot/loader/grub/grub.nix#L48
<ottidmes> when I evaluate the config of the machine I am installing on my desktop, I get for config.boot.loader.grub.efiSupport = false;
<samueldr> the grubTarget comes from the grub it "picked"
<samueldr> which I'm wondering if the one with zfsSupport (for example) could accidentally make it efi
karetsu has joined #nixos
<ottidmes> I am using ZFS
<samueldr> hm, unlikely from a quick test
<ottidmes> but efiSupport ? false at the definition of grub 2.0, and its passed only explicitly zfsSupport = true, so should remain false
<samueldr> > (unstable.grub2.override { zfsSupport = true; }).grubTarget
<{^_^}> "i386-pc"
knupfer has quit [Ping timeout: 264 seconds]
andymandias has quit [Quit: ZNC 1.7.3 - https://znc.in]
o1lo01ol1o has quit [Remote host closed the connection]
o1lo01ol1o has joined #nixos
kraem has quit [Ping timeout: 272 seconds]
Guest29792 has quit [Quit: WeeChat 2.4]
kraem has joined #nixos
<{^_^}> Channel nixos-19.03-small advanced to https://github.com/NixOS/nixpkgs/commit/d3d4c93e85c (from 2 hours ago, history: https://channels.nix.gsc.io/nixos-19.03-small)
<ottidmes> samueldr: thanks, that at least shows me where things go wrong, since I now saw the following: pkgs.grub2.grubTarget
<ottidmes> samueldr: "x86_64-efi"
<ottidmes> found the problem :) in one of my overlays I added efiSupport...
<ottidmes> samueldr: thanks for the help!
<ottidmes> samueldr++
<{^_^}> samueldr's karma got increased to 95
<samueldr> oh, I shyed away from proposing "maybe an overlay overrid the package" :)
<samueldr> though, a bit surprising how this is decided by the package's overrides
<samueldr> I would have assumed the configuration would check if the package provides whatever is necessary, and not try to override and maybe use that anyway
karetsu has quit [Quit: WeeChat 2.4]
<ottidmes> (I remember why I added that to my overlay, I needed some of the files produced by having efiSupport = true to generate an image file, but unfortunately NixOS does not allow this, its either BIOS or EFI, you cannot have the EFI files without using EFI)
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/e3926c8043c (from 2 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
<ottidmes> yeah, I would have expected that boot.loader.grub.efiSupport would have the final say
hlolli has quit [Ping timeout: 245 seconds]
<samueldr> sounds like "efiSupport" only serves to toggle it on, not off
karetsu has joined #nixos
qqlq has quit [Quit: ZNC 1.7.3 - https://znc.in]
marek has quit [Ping timeout: 252 seconds]
marek has joined #nixos
<{^_^}> [nixpkgs] @alyssais pushed 3 commits to release-19.03: https://git.io/fjKTK
Myhlamaeus has quit [Remote host closed the connection]
alp has quit [Ping timeout: 252 seconds]
rfold has quit [Ping timeout: 268 seconds]
fmsbeekmans has joined #nixos
hlolli has joined #nixos
<{^_^}> [nixpkgs] @worldofpeace merged pull request #63945 β†’ riot-{web,desktop}: 1.2.1 -> 1.2.2 β†’ https://git.io/fjopM
<{^_^}> [nixpkgs] @worldofpeace pushed 3 commits to master: https://git.io/fjKTX
andymandias has joined #nixos
<fmsbeekmans> Hi, I'm nixos 19.03 and am trying to change `services.xserver.libinput.scrollButton` to 0. After `nixos-rebuild swap` and a reboot there doesn't appear to be any effect. There is also no mention of 'Option "ScrollButton"` in `/etc/xorg.conf.d/40-libinput.conf` as suggested in https://github.com/NixOS/nixpkgs/blob/a260b3d681164bedaeb90fd578390147799
<fmsbeekmans> d638c/nixos/modules/services/x11/hardware/libinput.nix#L226. Am I missing a step or am I doing something wrong?
phreedom has quit [Remote host closed the connection]
phreedom has joined #nixos
<{^_^}> [nixpkgs] @alyssais opened pull request #63964 β†’ gnupg: change default keyserver to non-SKS β†’ https://git.io/fjKTM
civodul has quit [Quit: ERC (IRC client for Emacs 26.2)]
qqlq has joined #nixos
Thra11 has quit [Quit: WeeChat 1.9.1]
fendor has quit [Read error: Connection reset by peer]
qqlq_ has joined #nixos
day|flip has quit [Remote host closed the connection]
fmsbeekmans has quit [Remote host closed the connection]
qqlq has quit [Ping timeout: 248 seconds]
o1lo01ol1o has quit [Remote host closed the connection]
detran_ has joined #nixos
detran has quit [Quit: ZNC 1.7.1 - https://znc.in]
qqlq_ has quit [Ping timeout: 252 seconds]
qqlq has joined #nixos
mexisme has quit [Quit: WeeChat 2.5]
kraem has quit [Ping timeout: 268 seconds]
thc202 has quit [Ping timeout: 250 seconds]
kraem has joined #nixos
o1lo01ol1o has joined #nixos
sindrip has joined #nixos
ottidmes has quit [Quit: WeeChat 2.4]
__monty__ has quit [Quit: leaving]
endformationage has quit [Quit: WeeChat 2.5]
kraem has quit [Ping timeout: 246 seconds]
o1lo01ol1o has quit [Ping timeout: 248 seconds]
kraem has joined #nixos
day|flip has joined #nixos
<sindrip> teto: I've noticed you've been updating coc in nixpkgs, have you seen this? https://github.com/neoclide/coc.nvim/issues/916
<{^_^}> neoclide/coc.nvim#916 (by chemzqm, 4 days ago, open): [BREAK CHANGE] Use npm instead of yarn for extensions
L-o-r-d has quit [Quit: Join πŸ‘‰ ##Truth πŸ‘ˆ]
<{^_^}> [nixpkgs] @alyssais opened pull request #63965 β†’ irssi: 1.2.0 -> 1.2.1 β†’ https://git.io/fjKkf
andymandias has quit [Ping timeout: 258 seconds]
endformationage has joined #nixos
boogiewoogie has joined #nixos
mexisme has joined #nixos
<boogiewoogie> hey! did anyone happen to get d9vk to work? -- https://github.com/Joshua-Ashton/d9vk
karetsu has quit [Quit: WeeChat 2.4]
<boogiewoogie> getting `...wine-wow-4.0/bin/wine: not an ELF binary... don't know how to load it`, since `wine` is just a bash script here
<boogiewoogie> is there a way to lead stuff like d9vk to the .wine-wrapped it needs?
andymandias has joined #nixos
mbrgm_ has joined #nixos
hio has quit [Quit: Connection closed for inactivity]
mbrgm has quit [Ping timeout: 264 seconds]
mbrgm_ is now known as mbrgm
karetsu has joined #nixos
<{^_^}> [nixpkgs] @worldofpeace merged pull request #63963 β†’ cargo-outdated: fix darwin build β†’ https://git.io/fjKTJ
<{^_^}> [nixpkgs] @worldofpeace pushed 2 commits to master: https://git.io/fjKkc
Guanin has joined #nixos
growpotkin has joined #nixos
<growpotkin> Hey any Brave users in the house? I can never seem to get it to play nicely with PulseAudio
<growpotkin> I also have some weird behavior with Brave and Chrome where it will just lock up for no reason and requires a `pkill` to reset it. I think it's a graphical bug.
<{^_^}> Channel nixpkgs-19.03-darwin advanced to https://github.com/NixOS/nixpkgs/commit/bf62b512326 (from 2 hours ago, history: https://channels.nix.gsc.io/nixpkgs-19.03-darwin)
jluttine has quit [Ping timeout: 272 seconds]
karetsu has quit [Quit: WeeChat 2.4]
Guanin has quit [Remote host closed the connection]
boogiewoogie has quit [Quit: Leaving]
camsbury has joined #nixos
<camsbury> hey guys - installed NixOS on a new comp, and it seems that I have to remount my boot partition every time I want to do a `nixos-rebuild switch`... Any idea why this might be?
camsbury has quit [Remote host closed the connection]
Myhlamaeus has joined #nixos
camsbury has joined #nixos
niten has quit [Ping timeout: 272 seconds]
MmeQuignon has quit [Ping timeout: 245 seconds]
m0rphism has quit [Ping timeout: 245 seconds]
hlolli has quit [Ping timeout: 252 seconds]
<gchristensen> camsbury: does your hardware-configuration.nix have the boot mount point described?
camsbury has quit [Remote host closed the connection]
Miyu-chan has quit [Quit: WeeChat 2.4]
o1lo01ol1o has joined #nixos