worldofpeace changed the topic of #nixos to: NixOS 20.09 Nightingale ✨ https://discourse.nixos.org/t/nixos-20-09-release/9668 || 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/ || use ,channels for a list of Nix* related channels || nixcon videos: https://tinyurl.com/nixcon2019 || Link to the output of nix-inf
abstractednoah has joined #nixos
<aleph-> radvendii: Hmm, so seems I still get an `error rokuecp deriv not found.`
redmp has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @mweinelt opened pull request #120281 → home-assistant: find unstable versions in parse-requirements.py → https://github.com/NixOS/nixpkgs/pull/120281
<{^_^}> [nixpkgs] @Ericson2314 merged pull request #119922 → netbsd: Make boostrapping more orthodox and don't rely on splicing → https://github.com/NixOS/nixpkgs/pull/119922
<aleph-> Ah there we go, got it.
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #120264 → kakounePlugins: add kakboard → https://github.com/NixOS/nixpkgs/pull/120264
Qwerky has joined #nixos
abstractednoah has quit [Quit: WeeChat 3.1]
abstractednoah has joined #nixos
<radvendii> aleph-: what was the trick?
<aleph-> Was missing a rec for my set
<radvendii> ah
<radvendii> glad it's working
Qwerky has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @Ericson2314 opened pull request #120283 → netbsd: Remove some env vars that are probably not needed. → https://github.com/NixOS/nixpkgs/pull/120283
<radvendii> is there any reason this shouldn't work at the top of an overlay? https://paste.rs/vrd
<aleph-> Or hmm. Seems it's still not getting picked up. Had it building briefly.
<{^_^}> [nixpkgs] @cdepillabout merged pull request #120061 → spago: 0.20.0 -> 0.20.1 → https://github.com/NixOS/nixpkgs/pull/120061
<radvendii> aleph-: btw, you can just use "self" instead of "rec"
<aleph-> Ah
<radvendii> like put self. in front of things
<radvendii> the outer "rec", that is
<radvendii> and instead of python3.pkgs, you can use "pySelf"
<aleph-> Nod, lemme try that
deltab has quit [Ping timeout: 260 seconds]
<radvendii> oh! do jellyfin or dotnetCorePackages need access to the python package you're adding?
<radvendii> is that where it's not finding it?
<aleph-> They do not.
<radvendii> oh okay nvm
<aleph-> I'm overriding the home assistant pkg
<radvendii> home-manager?
<radvendii> or is home assistant something else
<aleph-> So I see this error `error: undefined variable 'rokuecp' at /home/noah/code/NixOS-Home-Network/machines/teapot/services.nix:184:35`
<aleph-> Something else. A home automation service
<radvendii> ah gotcha
<radvendii> ohh i've actually used home assistant before
ddellacosta has joined #nixos
<aleph-> My override is here
<AmandaC> rokuecp isn't packaged in nixpkgs
<radvendii> AmandaC: aleph- is adding it in an overlay
<radvendii> or trying to, anyways
<AmandaC> ah
<radvendii> aleph-: where does "pkgs" come from in "pkgs.home-assistant..."
<radvendii> presumably that's where you put the overlay?
<aleph-> Yeah sec
<aleph-> I import nixpkgs up top as { pkgs, ... }:
<aleph-> For overlys...
deltab has joined #nixos
<{^_^}> [nixpkgs] @Ericson2314 merged pull request #120255 → netbsd.libm: fix build → https://github.com/NixOS/nixpkgs/pull/120255
<aleph-> Yeah I set that via nixpkgs.overlays and import it
<radvendii> ah
<radvendii> well here's the problem
<radvendii> home-assistant overwrites your python overlay
<radvendii> it sets packageOverrides itself
ddellacosta has quit [Ping timeout: 252 seconds]
<AmandaC> I was just trying to trace down that,
proofofkeags has quit [Ping timeout: 260 seconds]
<aleph-> Huh. Annoying.
<radvendii> you can pass packageOverrides into home-assistant itself
<radvendii> yeah, that seems like the wrong behaviour
<radvendii> it should add to the existing onges
<radvendii> ones*
<AmandaC> you can pass your python overlay as `packageOverrides` it seems though
<AmandaC> and yah, this seems needlessly convoluded from an outsiders perspective
<aleph-> Heh, it does.
Jd007 has quit [Quit: Jd007]
orivej has quit [Ping timeout: 240 seconds]
<radvendii> oh
<radvendii> .overrideAttrs give you access to the old attributes, .override does not
<hexa-> aleph-: pretty sure it would have been easier to package up rokuecp
<{^_^}> [nixpkgs] @cole-h merged pull request #120003 → python3.pkgs.woodblock: init at 0.1.7 → https://github.com/NixOS/nixpkgs/pull/120003
<AmandaC> hexa-: they are in their overlay, but the home-assistant expression overrides the overlays to pin some of it's dependencies
<hexa-> yup, it is necessary, because home-assistant itself pins dependencies upstream
<radvendii> right, and am i correct that there's no way to recover the attribute that was being passed into python before?
<radvendii> it's not like home-assistant could add onto it
<AmandaC> I'm not clear on why those need to be done with an overlay in the h-a expression though, vs just done as expressions in the `let ... in`block like some other expressions use to pin versions
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage-packages.nix: automatic Haskell package set update »: https://git.io/JOX5N
cfinch has quit [Read error: Connection reset by peer]
<hexa-> to prevent multiple version of the same package inside the same python environment
<hexa-> that's just not possible
<hexa-> and component-packages.nix already reference the attribute name within python3Packages
<AmandaC> but the python environment is built per-package isn't it? instead of using the nixpkgs expression for the dep, use the expression from you `let ... in`
<AmandaC> Or is python deps different from, eg, `buildInputs`
<hexa-> there is a home-assistant python environment, that contains all the dependencies for the enabled components
<hexa-> they need to be propagated
<hexa-> I'm sure there is a better solution than how we handle it right now, I am by now means an expert in overlays and overrides
<aleph-> Well this is fun then, sigh.
<AmandaC> trying to figure out where I saw an instance of this pattern I'm thiking of recently
<radvendii> aleph-: in this case, you may indeed be able to do what i tried originally with recursiveUpdate
<aleph-> Oh?
<radvendii> i'm not sure what packageOverrides does besides that
<aleph-> Was that the second paste?
<radvendii> idr
<radvendii> i'll recreate it
<aleph-> Yep it is
<radvendii> oh okay you got it then?
<aleph-> Yep, gonna try that
cole-h has quit [Ping timeout: 252 seconds]
Jd007 has joined #nixos
xcmw has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<radvendii> okay, so the effect of packageOverrides is burried somewhere in makeScopeWithSplicing, and I don't think I'm prepared to go that deep tonight
<aleph-> Heh
<aleph-> Fun stuff
<{^_^}> [nixpkgs] @mweinelt opened pull request #120284 → python3Packages.rokuecp: init at 0.8.1 → https://github.com/NixOS/nixpkgs/pull/120284
<aleph-> haha well thanks whoever that is
<hexa-> me
cantstanya has joined #nixos
<{^_^}> [nixpkgs] @r-burns opened pull request #120285 → pycuda: fix opengl runpath → https://github.com/NixOS/nixpkgs/pull/120285
stree has quit [Ping timeout: 240 seconds]
<hexa-> aleph-: is that something you would care to maintain?
<aleph-> Yeah I need to figure out splicing packages in to nixpkgs. Seems if I don't pin nixpkgs then to 20.09 odd things happen
<aleph-> Sure!
<hexa-> whats your maintainer handle?
<aleph-> Church-
ericsagnes has quit [Ping timeout: 258 seconds]
<AmandaC> Okay, I've scrolled through like a month of my chrome history, still can't find it. Swear it was recently I saw the pattern though.
<hexa-> AmandaC: is it a somepackage' = somepackage.overridePythonAttrs thing?
<aleph-> Ah right that is a thing. Most of my stuff isn't up streamed (yet...)
<hexa-> for me it is far easier to submit things upstream than to maintain them myself
<hexa-> overrides are tough
<AmandaC> hexa-: it wasn't python specifically, but it was that yeah, then instead of using somepackage in the normal nixpkgs, you'd use your pinned version
YoDawg has joined #nixos
<aleph-> Yeah I need to start doing it more. The review process takes a while.
<aleph-> By the time I get to it usually my stuff is staled or someone grabs it and picks it up.
<AmandaC> like, passing it to buildInputs or similar. Granted, I've only barely touched the pythin nix stuff
<YoDawg> Hey, good evening, did anyone have any luck setting a custom GDM background image/theme?
<hexa-> that is what the python packageset maintainer has to say about the topic :)
<hexa-> I've been there.
<aleph-> Heh.
<AmandaC> I see. Strange, not sure how-- oh. If another package depends on pyjwt it'll be duplicated
<hexa-> yep, and you can't have two
<AmandaC> /now/ I see
<hexa-> because `import pyjwt` is … well …
<aleph-> Okay stupid question is there a way to pin nixpkgs to a commit and patch in derivs? Never had to so not sure off hand.
<hexa-> you can have a fork of nixpkgs and track your patches on top of it?
<aleph-> Yeah that's what'll I have to do I guess.
johnw has joined #nixos
<radvendii> oh, have we finally actually banned the "name" attribute?
<radvendii> oh never mind, i just wasn't paying careful attention to the error message
Jd007 has quit [Quit: Jd007]
xcmw has joined #nixos
<AmandaC> Don't suppose anyone can tell me how I'd run the tests for samba. I've not had any issues with a functionally-identical config applied on my homelab, but better to check those boxes for my PR: https://github.com/NixOS/nixpkgs/pull/114393
<{^_^}> #114393 (by AmandaCameron, 8 weeks ago, open): nixos/samba: Add a wants=network-online.target to the target.
<radvendii> is it possible to *unpin* a flake input?
<AmandaC> no. flakes are meant to be reproducible, so all inputs are pinned
<AmandaC> ( using the flake.lock )
<radvendii> bleagh.
<radvendii> just for testing...
ericsagnes has joined #nixos
stree has joined #nixos
<radvendii> IMO that restriction should be eased for "path:" inputs, but if people tell me i'm wrong, i'll accept that
<AmandaC> I mean, you can `nix flake update` and it'll pin to the new master
<lukegb> AmandaC: `nix-build ./nixos/tests/samba.nix` is probably the easiest way
<radvendii> AmandaC: yeah, but i have to remember to do it every time
<radvendii> it's also not possible to have "co-dependent" flakes in the same repo
<radvendii> well, it's possible but tedious, because you have to remember to update the inputs whenever you change one
Jd007 has joined #nixos
smitop2[m] has joined #nixos
YoDawg has quit [Ping timeout: 240 seconds]
<radvendii> this is a weird error: "error: unsupported Git input attribute 'sha256'"
<radvendii> it's complaining about sha256 in builtins.fetchGit
<AmandaC> lukegb: well, it didn
<AmandaC> lukegb: well, it didn't report any errors?
<lukegb> yeah, if it outputs a store path at the end the test succeeded
<AmandaC> ah
<AmandaC> Then I can tick that off, then
<radvendii> oh, i'm silly. fetchGit indeed does not accept sha256 as an argument. it uses rev instead
<srid> Anybody here use `org-mode` to take daily notes in the form of `2021-04.22.org`, etc. and would like test something out (static site generated out of your .org files) quickly?
<hexa-> fetchgit does accept a sha256 argument
<hexa-> in addition to rev
<radvendii> huh. it doesn't like it when i put it in
<radvendii> srid: no, but that sounds really cool. i have a similar setup with markdown, and use hakyll to generate a website
gustavderdrache has quit [Quit: Leaving.]
<srid> radvendii: I was going to give: `nix run github:srid/memoir -- -d ~/org`
<srid> its gonna beat the likes of workflowy for the future-proof inclined
<srid> its using https://github.com/srid/ema which is my pet project to provide beyond awesome static site dev env with super hot reloadsssssss
<radvendii> nice. i approve of journal websites
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #120193 → python3Packages.dnspython: update license → https://github.com/NixOS/nixpkgs/pull/120193
asbachb has quit [Ping timeout: 240 seconds]
<cwnovusordoseclo> I'm having some issues getting ACME working for one of my subdomains. It errors with `mkdir: cannot create directory ‘/var/www’: Permission denied` when trying to use `security.acme.certs."icecast.domain.tld"`. My webroot is `/var/www/challenges`. any ideas?
<radvendii> does /var/www/ already exist?
<cwnovusordoseclo> Probably, I've got a couple other subdomains
<radvendii> i use /var/www for my actual websites
<radvendii> but for acme i have this
<radvendii> webroot = "/var/lib/acme/acme-challenge";
<hexa-> there was this issue on 20.09 https://github.com/NixOS/nixpkgs/issues/115976
<{^_^}> #115976 (by bjornfor, 6 weeks ago, closed): [20.09] nixos/acme regression: chown: Operation not permitted
<{^_^}> #116369 (by m1cr0man, 5 weeks ago, merged): nixos/acme: Fix webroot issues
mounty has joined #nixos
Jd007 has quit [Quit: Jd007]
<cwnovusordoseclo> Now it just failed 404. odd
<cwnovusordoseclo> Though that seems to randomly happen to me then work the next time so let's see what happens
cfinch has joined #nixos
cfinch has quit [Read error: Connection reset by peer]
<cwnovusordoseclo> rate limit. F
h0m1 has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #120152 → python3Packages.pg8000: 1.19.0 -> 1.19.2 → https://github.com/NixOS/nixpkgs/pull/120152
<mounty> Hello; I'm a naive NixOS user and have been using nix-env -iA to get packages and commands that I need in a hurry, rather than extending /etc/nixos/configuration.nix -- is there any way to find what I've added with nix-env so that I can add it to configuraiton.nix and update properly?
<evils> mounty: nix-env -q
<mounty> Thanks so much evil: that's just what I need.
<radvendii> is there a way to get ssh to cache failure? so it doesn't try the same host again within a certain amount of time?
<radvendii> i have a remote builder that is sometimes up and sometimes down, but when it's down it's not like it's going to come up again when nix gets to the next package, so it checking every time wastes time
YoDawg has joined #nixos
<{^_^}> [nixpkgs] @lukegb opened pull request #120286 → nixos/tests/hibernate: install a system instead → https://github.com/NixOS/nixpkgs/pull/120286
Jd007 has joined #nixos
sebastien14 has quit [Quit: Connection closed]
xcmw has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<cwnovusordoseclo> radvendii: can you temporarily null route it? those should fail nearly immediately
<cwnovusordoseclo> I realize that doesn't really answer your question
<radvendii> cwnovusordoseclo: no, but i might be able to build a solution out of that. how do i null route it?
<cwnovusordoseclo> I might be using the wrong terminology. Add a host file entry to a nonroutable IP
<hexa-> ip route add blackhole <cidr>
<hexa-> or just clear --builders ""
<AmandaC> someone earlier talked about iptables -j REJECT-ing a binary cache
<AmandaC> that should also work
<radvendii> honestly, i think we need better UI for remote builders in general. I should be able to specify --builders "foo" if foo is defined in my configuration.nix, without having to specify all of the extra arguments every time
<radvendii> oh those are all interesting solutions
<radvendii> thank y'all
nrh^ has quit []
<cwnovusordoseclo> @hexa- I didn't know about route blackhole, thanks for that
<deltab> you could put a wrapper script around ssh and have that record and check for recent failure
<AmandaC> huh, TIL as well
dsrt^ has joined #nixos
<{^_^}> [nixpkgs] @ryantm merged pull request #119136 → pcb2gcode: 2.3.0 -> 2.3.1 → https://github.com/NixOS/nixpkgs/pull/119136
<{^_^}> [nixpkgs] @ryantm merged pull request #120172 → croc: 8.6.12 -> 9.1.0 → https://github.com/NixOS/nixpkgs/pull/120172
<{^_^}> [nixpkgs] @ryantm merged pull request #120275 → jitsi-meet-electron: 2.7.0 -> 2.8.5 → https://github.com/NixOS/nixpkgs/pull/120275
<radvendii> i should maybe just remove my personal host. nixbuild.net is easy, fast, and cheap enough that it might just not be worth the hassle
<chipb> hexa-: radvendii: I think you might prefer 'prohibit' instead of 'blackhole' here, else it may hang trying to connect on account of the silent discard...
<radvendii> chipb: ah, that's good to know. would that be "ip route add prohibit"?
<chipb> or I guess 'unreachable' is a bit more appropriate for the circumstance.
superherointj has quit [Quit: Leaving]
<radvendii> hexa-: i can't just clear builders, because i have another builder that *is* reliable (nixbuild.net) that i'd like to fallback on
<chipb> yeah, just as their recipe before, subsituting blackhole.
<radvendii> chipb: thanks
<chipb> (though honestly, I'm not super familiar with iproute2's route subcommand myself.)
<twoolie> hey all, i'm trying to get a list of all the services that are enabled in a nixos config
<twoolie> i currently have a bit of code like this:
<chipb> oh, nevermind. local senders shouldn't hang: "The local senders get an EINVAL error."
Jackneill has joined #nixos
<twoolie> let getSuccess = thunk: ({success, value}: success && value) (builtins.tryEval thunk); isEnabled = name: attrs: getSuccess (pkgs.lib.hasAttr "enable" attrs && pkgs.lib.isBool attrs.enable && attrs.enable);
<twoolie> in pkgs.lib.filterAttrs isEnabled config.services;
mounty has quit [Quit: Konversation terminated!]
<twoolie> but this blows up on services like beegfs that are deprecated/removed
<twoolie> anyone know if something like this is already builtin to nixpkgs somewhare?
<radvendii> twoolie: i noticed you've asked that a couple of times here. i'm not bothered, just wondering if it might serve you better to post this on discourse.nixos.org
<radvendii> unless i'm misremembering something, which is also possible
mounty has joined #nixos
YoDawg has quit [Ping timeout: 240 seconds]
<radvendii> oh btw you can use attrs ? enable instead of pkgs.lib.hasAttr "enable" attrs
pcarrier has joined #nixos
<radvendii> also there's a workaround here: https://github.com/NixOS/nixpkgs/issues/24890
<{^_^}> #24890 (by RemiDesgrange, 4 years ago, closed): List all the services enabled by default
Jackneill has quit [Ping timeout: 252 seconds]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #119892 → python3Packages.deezer-python: init at 2.2.2 → https://github.com/NixOS/nixpkgs/pull/119892
ddellaco_ has joined #nixos
rajivr has joined #nixos
ddellaco_ has quit [Ping timeout: 252 seconds]
Jackneill has joined #nixos
<mounty> What's the current approved way to get pptp bearing in mind https://github.com/NixOS/nixpkgs/issues/30756 ?
<{^_^}> #30756 (by FlorentBecker, 3 years ago, closed): nixos: pptp in NetworkManager requires kernel module nf_conntrack_pptp, which is not present by default
figgyc has joined #nixos
<{^_^}> [nixpkgs] @marsam opened pull request #120287 → starship: 0.51.0 -> 0.52.1 → https://github.com/NixOS/nixpkgs/pull/120287
<{^_^}> [nixpkgs] @mkg20001 opened pull request #120288 → systemd: fix lxd support with ubuntu patches → https://github.com/NixOS/nixpkgs/pull/120288
<cwnovusordoseclo> radvendii: deltab whipped up that caching ssh wrapper ssh wrapper
Jd007 has quit [Quit: Jd007]
<cwnovusordoseclo> aka I can't bash script so don't look too closely.
<{^_^}> [nixpkgs] @marsam merged pull request #120190 → goreleaser: 0.162.0 -> 0.163.1 → https://github.com/NixOS/nixpkgs/pull/120190
<{^_^}> [nixpkgs] @marsam merged pull request #120164 → chezmoi: 2.0.9 -> 2.0.10 → https://github.com/NixOS/nixpkgs/pull/120164
theDon has joined #nixos
<{^_^}> [nixpkgs] @marsam merged pull request #120199 → starboard: 0.10.0 -> 0.10.1 → https://github.com/NixOS/nixpkgs/pull/120199
<radvendii> cwnovusordoseclo: thanks! now i just have to do it per-domain and have it timeout and get nix to wrap the system ssh with that
<cwnovusordoseclo> its automatic
<cwnovusordoseclo> oh shit. I'm retarded, blame the whiskey
<cwnovusordoseclo> I have a nix module almost done
<cwnovusordoseclo> or my own shit version of one
<{^_^}> [nixpkgs] @marsam merged pull request #120149 → azure-storage-azcopy: 10.9.0 -> 10.10.0 → https://github.com/NixOS/nixpkgs/pull/120149
aw has joined #nixos
spacefrogg has joined #nixos
stephank2 has joined #nixos
<{^_^}> [nixpkgs] @austinbutler opened pull request #120289 → python3Packages.notify-py: fix build on Darwin → https://github.com/NixOS/nixpkgs/pull/120289
<{^_^}> [nixpkgs] @AndersonTorres opened pull request #120290 → eigen: refactor → https://github.com/NixOS/nixpkgs/pull/120290
xcmw has joined #nixos
stephank2 is now known as stephank
<radvendii> twoolie: meanwhile, I've whipped up a bash script for your conundrum
<radvendii> downside is it's unbearably slow
<radvendii> twoolie: https://paste.rs/3Zx
<radvendii> the commented out version is in some ways more elegant and general, but also even *slower*
<radvendii> oh, it might be faster with a simpler configuration.nix, i'm not sure what's slowing down nixos-option actually
<{^_^}> [nixpkgs] @happysalada merged pull request #120134 → vector: 0.12.2 -> 0.13.0 → https://github.com/NixOS/nixpkgs/pull/120134
<{^_^}> [nixpkgs] @Mdsp9070 opened pull request #120291 → beekeeper-studio: init at 1.10.2 → https://github.com/NixOS/nixpkgs/pull/120291
redmp has joined #nixos
AlpineLlama has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
<{^_^}> [nixpkgs] @Mdsp9070 opened pull request #120292 → bloomrpc: init at 1.5.2 → https://github.com/NixOS/nixpkgs/pull/120292
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #119927 → jellyfin-mpv-shim: 1.10.4 -> 2.0.1 → https://github.com/NixOS/nixpkgs/pull/119927
AlpineLlama has joined #nixos
pushqrdx_ has quit [Ping timeout: 240 seconds]
stree has quit [Ping timeout: 265 seconds]
cfinch has joined #nixos
cfinch has quit [Read error: Connection reset by peer]
<{^_^}> [nix] @p01arst0rm opened pull request #4734 → unified macro style for ENABLE_S3 → https://github.com/NixOS/nix/pull/4734
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #120060 → libupnp: 1.14.4 -> 1.14.6 → https://github.com/NixOS/nixpkgs/pull/120060
<{^_^}> [nixpkgs] @happysalada opened pull request #120293 → starship: 0.51.0 -> 0.52.1 → https://github.com/NixOS/nixpkgs/pull/120293
tomberek has quit [Ping timeout: 240 seconds]
stree has joined #nixos
<NemesisD> does anyone have experience writing modules for software that's installed by piping curl to bash? i was looking to set up a module for gravity-sync but i can't imagine the script going well in a nix build env: https://raw.githubusercontent.com/vmstan/gravity-sync/master/prep/gs-install.sh
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #120001 → flare-floss: init at 1.7.0 → https://github.com/NixOS/nixpkgs/pull/120001
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #120057 → python3Packages.sphinx-material: init at 0.0.32 → https://github.com/NixOS/nixpkgs/pull/120057
jesystani has joined #nixos
<jesystani> so i just rewrote my config, and ive booted and opened up a terminal, and i dont seem to have anything avaliable to me in path? the programs i installed are there, but i dont have ls, or mkdir, or date or bash or anything like that
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #120215 → python3Packages.whois: 0.9.7 -> 0.9.13 → https://github.com/NixOS/nixpkgs/pull/120215
<jesystani> sorry for the sorta vague message im just not really sure where to start on this one
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #119902 → lychee: 0.5.0 -> 0.7.0 → https://github.com/NixOS/nixpkgs/pull/119902
Jd007 has joined #nixos
<jesystani> as a side note, i also dont have any `nix` commands in my path
<jesystani> but only in an xsession? ill keep digging
<radvendii> jesystani: some of those should be built-ins, no?
<jesystani> id have thought so
<jesystani> theyre there in a tty, but not in x, my PATH is showing different things in each, but both are running zsh
<radvendii> =.=
<jesystani> any suggesions on why the pathts might be different? i cant find anything in xprofile or whatever
<{^_^}> [nixpkgs] @marsam opened pull request #120294 → postgresqlPackages.pgvector: init at 0.1.0 → https://github.com/NixOS/nixpkgs/pull/120294
<{^_^}> [nixpkgs] @SuperSandro2000 opened pull request #120295 → dnscontrol: 3.8.0 -> 3.8.1 → https://github.com/NixOS/nixpkgs/pull/120295
<{^_^}> [nixpkgs] @happysalada opened pull request #120296 → elixir_ls: fix_build → https://github.com/NixOS/nixpkgs/pull/120296
<radvendii> try `nix-option environment.variable`?
<radvendii> environment.variables
<jesystani> nix-option isnt in my path in either tty or x
<radvendii> hahahaha of course
<radvendii> oh also it wouldn't be that if it's only affecting your X
<radvendii> hm
<radvendii> idk. i have displayManager.sessionCommands set, and that only runs in X
growpotkin has quit [Quit: ZNC 1.8.2 - https://znc.in]
<jesystani> under x it only have my zsh plugins folder, and my /etc/profiles/per-user one set, but in tty it also has /run/wrappers/bin, /home/me/.nix-profile/bin, /nix/var/nix/profiles/default/bin and /run/current-system/sw/bin
<jesystani> ie those are the ones missing under X, if that helps?
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #120201 → [staging-next] python3Packages.httplib2: allow local networking on darwin → https://github.com/NixOS/nixpkgs/pull/120201
<radvendii> it somehow doesn't surprise me that those are the paths that are missing, as they define most of the system, but i'm not sure why they wouldn't be set under X
Supersonic112 has joined #nixos
<{^_^}> [nixpkgs] @AndersonTorres merged pull request #120290 → eigen: refactor → https://github.com/NixOS/nixpkgs/pull/120290
Supersonic112 is now known as Supersonic
Supersonic has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @happysalada merged pull request #120293 → starship: 0.51.0 -> 0.52.1 → https://github.com/NixOS/nixpkgs/pull/120293
<jesystani> so running /run/current-system/sw/bin/bash, then running zsh from that loads the correct path
Jd007 has quit [Quit: Jd007]
<{^_^}> [nixpkgs] @happysalada merged pull request #120296 → elixir_ls: fix_build → https://github.com/NixOS/nixpkgs/pull/120296
<jesystani> ill try a sneaky reboot, back soon
jesystani has quit [Quit: WeeChat 3.1]
jesystani has joined #nixos
<{^_^}> [nixpkgs] @marsam closed pull request #120287 → starship: 0.51.0 -> 0.52.1 → https://github.com/NixOS/nixpkgs/pull/120287
<jesystani> no change
beertoagunfight has joined #nixos
jesystani has quit [Quit: WeeChat 3.1]
Jd007 has joined #nixos
<radvendii> hmm
<radvendii> how do you set up zsh as your default?
jesystani has joined #nixos
<{^_^}> [nixpkgs] @rsynnest opened pull request #120297 → nixos/unifi-video module and supporting packages → https://github.com/NixOS/nixpkgs/pull/120297
bkv has joined #nixos
<{^_^}> [nixpkgs] @github-actions[bot] closed pull request #120249 → add build target support → https://github.com/NixOS/nixpkgs/pull/120249
bkv is now known as bqv
Jd007 has quit [Quit: Jd007]
<{^_^}> [nixpkgs] @cdepillabout reopened pull request #120249 → add build target support → https://github.com/NixOS/nixpkgs/pull/120249
Jd007 has joined #nixos
redmp has quit [Ping timeout: 240 seconds]
redmp has joined #nixos
Jd007 has quit [Quit: Jd007]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #120295 → dnscontrol: 3.8.0 -> 3.8.1 → https://github.com/NixOS/nixpkgs/pull/120295
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #120253 → beluga: build with default version of OCaml → https://github.com/NixOS/nixpkgs/pull/120253
<{^_^}> [nixpkgs] @sternenseemann pushed to haskell-updates « haskellPackages.essence-of-live-coding-warp: fix eval »: https://git.io/JO1GR
ddellaco_ has joined #nixos
ddellaco_ has quit [Ping timeout: 240 seconds]
tomberek has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #119997 → lief: build from source and enable python bindings → https://github.com/NixOS/nixpkgs/pull/119997
<{^_^}> [nixpkgs] @Mic92 merged pull request #120246 → mpvScripts: update convert script patch to work with current mpv → https://github.com/NixOS/nixpkgs/pull/120246
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/cc9e099e631 (from 85 minutes ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
<{^_^}> [nixpkgs] @bobby285271 opened pull request #120298 → doc: Convert contributing/* to markdown → https://github.com/NixOS/nixpkgs/pull/120298
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #120139 → python3Packages.pymavlink: 2.4.14 -> 2.4.15 → https://github.com/NixOS/nixpkgs/pull/120139
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #120294 → postgresqlPackages.pgvector: init at 0.1.0 → https://github.com/NixOS/nixpkgs/pull/120294
cfinch has joined #nixos
cfinch has quit [Read error: Connection reset by peer]
<{^_^}> [nixpkgs] @Mic92 merged pull request #120281 → home-assistant: find unstable versions in parse-requirements.py → https://github.com/NixOS/nixpkgs/pull/120281
cfinch has joined #nixos
cfinch has quit [Read error: Connection reset by peer]
<{^_^}> [nixpkgs] @Mic92 merged pull request #120243 → zoom-us: Use tarball again → https://github.com/NixOS/nixpkgs/pull/120243
<{^_^}> [nixpkgs] @Mic92 merged pull request #120242 → [20.09] zoom-us: Use the tarabll again → https://github.com/NixOS/nixpkgs/pull/120242
redisusr has quit [Quit: Connection closed]
<{^_^}> [nixpkgs] @schnusch opened pull request #120299 → esbuild: 0.11.12 -> 0.11.13 → https://github.com/NixOS/nixpkgs/pull/120299
<{^_^}> [nixpkgs] @github-actions[bot] closed pull request #120288 → systemd: fix lxd support with ubuntu patches → https://github.com/NixOS/nixpkgs/pull/120288
<{^_^}> [nixpkgs] @happysalada merged pull request #120178 → beamPackages.hex: 0.21.1 -> 0.21.2 → https://github.com/NixOS/nixpkgs/pull/120178
palo1 has joined #nixos
zhaofeng has joined #nixos
palo1 is now known as palo
waleee-cl has quit [Quit: Connection closed for inactivity]
sangoma has joined #nixos
melchizedek6809[ has joined #nixos
stree has quit [Ping timeout: 265 seconds]
<SumnerEvans[m]> I'm revamping the matrix-synapse module. What is the best way to test/inspect the config files that I am creating?
<__anb> I see nix support NIX_{STORE,STATE,CONF}_DIR environment variables, does it mean I can point it to anywhere else without recompile the program? Asking because the docs I read said you have to reconfigure the program when you want to change it.
<{^_^}> [nixpkgs] @rsynnest closed pull request #120297 → nixos/unifi-video module and supporting packages → https://github.com/NixOS/nixpkgs/pull/120297
<srhb> SumnerEvans[m]: There is a matrix-synapse nixos test, in case you hadn't noticed :)
<{^_^}> [nixpkgs] @tomberek merged pull request #114779 → opencascade-occt: 7.5.0 -> 7.5.1 → https://github.com/NixOS/nixpkgs/pull/114779
<SumnerEvans[m]> srhb: thanks! I did see that, but it doesn't seem to test much (it looks like it just tests that the server runs, not that it's config is correct). In Home Manager, I would create an "expected" file, but I don't see that pattern in nixpkgs.
<srhb> SumnerEvans[m]: You could add that though.
<{^_^}> [nixpkgs] @dotlambda opened pull request #120300 → pythonImportsCheckPhase: run preCheck and postCheck → https://github.com/NixOS/nixpkgs/pull/120300
<SumnerEvans[m]> srhb: true, I could. But I don't see any existing patterns for that.
cr4y1_ has joined #nixos
beertoagunfight has quit [Ping timeout: 246 seconds]
<srhb> SumnerEvans[m]: No, I don't think it's a pattern that's used often in nixpkgs (which is perhaps a shame) -- but worst case you just need to expose the generated config through some option and eventually `diff ${config.matrix.whatever.renderedConfig} ${expected}`
<srhb> SumnerEvans[m]: Though I suppose it's a bit expensive to do it in a NixOS test, but at least you have the module at hand.
stree has joined #nixos
<{^_^}> [nixpkgs] @sayanarijit opened pull request #120301 → xplr: 0.5.5 -> 0.5.6 → https://github.com/NixOS/nixpkgs/pull/120301
domogled has joined #nixos
vidbina_ has joined #nixos
<{^_^}> Channel nixos-20.09-small advanced to https://github.com/NixOS/nixpkgs/commit/aeed3907fa7 (from 48 minutes ago, history: https://channels.nix.gsc.io/nixos-20.09-small)
<{^_^}> Channel nixpkgs-20.09-darwin advanced to https://github.com/NixOS/nixpkgs/commit/aeed3907fa7 (from 48 minutes ago, history: https://channels.nix.gsc.io/nixpkgs-20.09-darwin)
<{^_^}> [nixpkgs] @danieldk merged pull request #120285 → pycuda: fix opengl runpath → https://github.com/NixOS/nixpkgs/pull/120285
cfinch has joined #nixos
<__anb> Can anyone point me to a document about how the hash is generated? I'm moving things around, and want to avoid rebuilding.
<srhb> __anb: The hash of store paths?
cfinch has quit [Read error: Connection reset by peer]
sss has joined #nixos
<__anb> yes.
<srhb> __anb: Every input (dependency) is recursively part of the hash of every package. I think you'll need to provide a bit more detail to answer your question :) What are you trying to move?
cole-h has joined #nixos
LilleCarl has joined #nixos
<__anb> srhb: sure. I'm new to nix, and on macos-aarch64, I guess it's a hard start. There's a nixpkgs branch I used to bootstrap nix, but I guess later I'll move to an official one once it gets merged. I don't know if the path of the nixpkgs will be used to calculate the hash or not. Also the nix binary changed during the bootstrap, is it another factor?
phalrax has joined #nixos
<srhb> __anb: I'm not very familiar with nix on macos, however; the path of _nixpkgs_ -- that is, the source tree that constitutes the main package set -- should not matter, since it, as well as most other sources, is a fixed-output derivation. Meaning, in essence, that the above statement about hashes was "lies to children" -- the hash of sources are usually determined from their _output_ (essentially a
<srhb> recursive hash of the source tree)
<{^_^}> [nixpkgs] @cole-h opened pull request #120302 → [staging-next] Revert "python2Packages.scandir: python 2 only" → https://github.com/NixOS/nixpkgs/pull/120302
<srhb> __anb: The best to tell what goes "into" a derivation is probably something like `nix show-derivation -f '<nixpkgs>' hello`
<{^_^}> [nixpkgs] @cole-h merged pull request #120007 → dcs: init at unstable-2021-04-07 → https://github.com/NixOS/nixpkgs/pull/120007
<srhb> __anb: Any change to any of the inputs, env, etc. will affect the output paths.
<__anb> srhb: ah, so basically the file content matters.
<srhb> Yes.
<{^_^}> [nixpkgs] @dotlambda opened pull request #120303 → yarGen: don't depend on scandir → https://github.com/NixOS/nixpkgs/pull/120303
<__anb> srhb: this makes me feel better now. Thank you.
<{^_^}> [nixpkgs] @dotlambda closed pull request #120302 → [staging-next] Revert "python2Packages.scandir: python 2 only" → https://github.com/NixOS/nixpkgs/pull/120302
<srhb> __anb: There's a lot of detail and nuance here, but essentially, every change to anything used in the build (recursively) will bubble up through the dependencies and change all hashes.
<cole-h> dotlambda: Nice, we did similar things at similar times :D
mounty has quit [Ping timeout: 260 seconds]
zakame has joined #nixos
mallox has joined #nixos
orivej has joined #nixos
grumble has joined #nixos
ddellaco_ has joined #nixos
cfinch has joined #nixos
tbreslein has joined #nixos
<{^_^}> [nixpkgs] @jonringer merged pull request #120303 → yarGen: don't depend on scandir → https://github.com/NixOS/nixpkgs/pull/120303
<cole-h> dotlambda++
<{^_^}> dotlambda's karma got increased to 1
hyiltiz has joined #nixos
hyiltiz has joined #nixos
ddellaco_ has quit [Ping timeout: 252 seconds]
<__anb> srhb: I switched from one nix binary which was used to bootstrap, to another binary, which was installed by the previous one. When I try to use the new binary, it wants to rebuild the whole system again...
redmp has quit [Ping timeout: 252 seconds]
<srhb> __anb: We'll have to see the difference in the derivations to know why that's the case.
jesystani has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @cole-h opened pull request #120304 → yarGen: patch get_abs_path function, install strings.xml → https://github.com/NixOS/nixpkgs/pull/120304
<__anb> srhb: I ran "nix show-derivation -f $PWD nix" from both old binary and new binary, they have same output.
<srhb> __anb: Whatever you're trying to build (that is getting rebuilt) are the two derivation we'd like to see the difference for :)
<srhb> __anb: There's a tool called nix-diff that's very useful for this (nix-diff drvA drvB)
Diogo9301 has joined #nixos
<__anb> srhb: please bear with my dumb questions :p https://pastebin.com/raw/PaQf9xr9
<{^_^}> [nixpkgs] @FliegendeWurst opened pull request #120305 → trilium: 0.46.7 -> 0.46.9 → https://github.com/NixOS/nixpkgs/pull/120305
<srhb> __anb: Not dumb at all :)
symphorien[m] has left #nixos ["User left"]
jimmiehansson has joined #nixos
<{^_^}> [nixpkgs] @sternenseemann closed pull request #119949 → ocamlPackages.dns*: 4.6.3 -> 5.0.0 → https://github.com/NixOS/nixpkgs/pull/119949
symphorien[m] has joined #nixos
endformationage has quit [Quit: WeeChat 2.9]
domogled has quit [Ping timeout: 260 seconds]
jonringer has quit [Ping timeout: 250 seconds]
pen has joined #nixos
<twoolie> radvendii: thanks for the script. unfortunatly i'm trying to get the result as a nix attrset to do some extra processing on it. I'll take your sugestion and post on discorse though.
cfinch has quit [Remote host closed the connection]
<twoolie> radvendii++
<{^_^}> radvendii's karma got increased to 3
cfinch has joined #nixos
<{^_^}> [nixpkgs] @happysalada opened pull request #120306 → broot: 1.2.0 -> 1.2.9 → https://github.com/NixOS/nixpkgs/pull/120306
saschagrunert has joined #nixos
cfinch has quit [Read error: Connection reset by peer]
attila_lendvai has joined #nixos
mallox has quit [Quit: WeeChat 3.1]
<eyJhb> Ehm. the security aspect of it?
ashesham` has joined #nixos
lsix has joined #nixos
jmeredith has quit [Quit: Connection closed for inactivity]
<{^_^}> [nixpkgs] @vcunat pushed 70 commits to staging-next: https://git.io/JO1oT
beertoagunfight has joined #nixos
civodul has joined #nixos
aaabbbbbbbbbb has joined #nixos
cfricke has joined #nixos
ahmedelgabri has joined #nixos
<{^_^}> Channel nixpkgs-unstable advanced to https://github.com/NixOS/nixpkgs/commit/abb55ca1315 (from 9 hours ago, history: https://channels.nix.gsc.io/nixpkgs-unstable)
beertoagunfight has quit [Ping timeout: 260 seconds]
<__anb> srhb: I think I know what's wrong, the new bootstrapped binary is built with default store path, which is not the one I'm using. Even with NIX_STORE_DIR set, nix-env is able to query package, but not install it. I guess the variable is not honored everywhere.
<{^_^}> [nixpkgs] @bjornfor merged pull request #120306 → broot: 1.2.0 -> 1.2.9 → https://github.com/NixOS/nixpkgs/pull/120306
xourt has joined #nixos
<{^_^}> [nixpkgs] @bjornfor merged pull request #120305 → trilium: 0.46.7 -> 0.46.9 → https://github.com/NixOS/nixpkgs/pull/120305
<{^_^}> [nixpkgs] @bjornfor merged pull request #120301 → xplr: 0.5.5 -> 0.5.6 → https://github.com/NixOS/nixpkgs/pull/120301
thc202 has joined #nixos
<{^_^}> [nixpkgs] @fabaff opened pull request #120308 → python3Packages.slack-sdk: 3.4.2 -> 3.5.0 → https://github.com/NixOS/nixpkgs/pull/120308
xcmw has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<{^_^}> [nix] @regnat pushed 2 commits to 4725-always-register-the-realisations: https://git.io/JO16K
cfinch has joined #nixos
evanjs has quit [Read error: Connection reset by peer]
<{^_^}> [nixpkgs] @Janonard opened pull request #120309 → nixos/home-assistant: change systemd network target → https://github.com/NixOS/nixpkgs/pull/120309
evanjs has joined #nixos
<{^_^}> [nixpkgs] @fabaff merged pull request #119894 → python3Packages.angr: 9.0.6281 -> 9.0.6790 and dependencies → https://github.com/NixOS/nixpkgs/pull/119894
orivej has quit [Ping timeout: 246 seconds]
stree has quit [Ping timeout: 252 seconds]
m4tsa_ is now known as m4tsa
m4tsa is now known as m4ts
<JordiPlayGames[m> Hello, i can deploy IPFS in my CDN???
jordi48 has joined #nixos
<jordi48> JordiPlayGames[m Here not, or you will be banned.
<jordi48> JordiPlayGames[m please use this: #ipfs
jordi48 has quit [Quit: Connection closed]
cfinch has quit [Read error: Connection reset by peer]
fendor has joined #nixos
cfinch has joined #nixos
<{^_^}> [nixpkgs] @nbren12 opened pull request #120310 → python3Packages.dask: fix sandboxed builds → https://github.com/NixOS/nixpkgs/pull/120310
ericsagn1 has joined #nixos
evanjs has quit [Read error: Connection reset by peer]
stree has joined #nixos
<{^_^}> [nixpkgs] @fabaff merged pull request #120262 → python3Packages.openerz-api: init at 0.1.0 → https://github.com/NixOS/nixpkgs/pull/120262
griff__ has joined #nixos
griff__ has quit [Client Quit]
ericsagnes has quit [Ping timeout: 250 seconds]
evanjs has joined #nixos
<{^_^}> [nixpkgs] @dotlambda opened pull request #120311 → prs: 0.2.7 -> 0.2.8 → https://github.com/NixOS/nixpkgs/pull/120311
cole-h has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @Mic92 merged pull request #120298 → doc: Convert contributing/* to markdown → https://github.com/NixOS/nixpkgs/pull/120298
vidbina_ has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @happysalada opened pull request #120312 → cargo-make: fix darwin build → https://github.com/NixOS/nixpkgs/pull/120312
ericsagnes has joined #nixos
avaq has joined #nixos
ericsagn1 has quit [Ping timeout: 245 seconds]
<{^_^}> [nix] @regnat pushed to document-ca-derivations « (briefly) document how to build ca derivations »: https://git.io/JO19R
<{^_^}> [nix] @regnat opened pull request #4735 → (briefly) document how to build ca derivations → https://github.com/NixOS/nix/pull/4735
ddellacosta has joined #nixos
<{^_^}> [nixpkgs] @happysalada merged pull request #120312 → cargo-make: fix darwin build → https://github.com/NixOS/nixpkgs/pull/120312
ddellacosta has quit [Ping timeout: 252 seconds]
<{^_^}> [nixpkgs] @fabaff opened pull request #120313 → metasploit: 6.0.40 -> 6.0.41 → https://github.com/NixOS/nixpkgs/pull/120313
<JordiPlayGames[m> Hello, NixOS 21.05 will have more packages than Debian???
pcarrier has quit [Quit: Connection closed for inactivity]
<tejing> package count is a massively contrived metric, and barely even applies to nixos at all
<JordiPlayGames[m> tejing: What package count will have in NixOS 21.05???
<Taneb> At least 56000
<JordiPlayGames[m> Taneb: No, at least 90000.
<{^_^}> [nixpkgs] @fabaff merged pull request #120150 → bettercap: 2.30.2 -> 2.31.0 → https://github.com/NixOS/nixpkgs/pull/120150
<thibm> Why did you ask if you knew the answer?
<JordiPlayGames[m> thibm: What package count will have in NixOS 21.05???
<tejing> there are a lot of options of how to count, so there isn't really a single answer
* thibm sighs
<thibm> Can someone kick this spammer?
<JordiPlayGames[m> tejing: So, 90.000 packages will be available in NixOS 21.05???
<Kinnison> presumably that 90,000 is multi-counting some things such as the vast number of different boost versions, or how vscode is repeated a few times.
vidbina_ has joined #nixos
<{^_^}> [nixpkgs] @7c6f434c merged pull request #120222 → libreoffice: kill private dbus instance on exit → https://github.com/NixOS/nixpkgs/pull/120222
<JordiPlayGames[m> What packages will have in NixOS, including different versions of same packages???
<{^_^}> [nixpkgs] @7c6f434c merged pull request #120168 → clingo: 5.4.1 -> 5.5.0 → https://github.com/NixOS/nixpkgs/pull/120168
<tbreslein> this is getting kinda ridiculous...
<{^_^}> [nixpkgs] @sternenseemann opened pull request #120314 → ocamlPackages.mirage-crypto*: 0.9.2 -> 0.10.0 → https://github.com/NixOS/nixpkgs/pull/120314
<JordiPlayGames[m> Will have in total 90.000 packages.
<xourt> My private NixOS distribution has at least 90.001 packages. Maybe I should claim the throne :)
<JordiPlayGames[m> xourt: What name is called for your private NixOS distribution???
<xourt> ManyPackagesOS?
<JordiPlayGames[m> Yes.
fendor has quit [Remote host closed the connection]
fendor has joined #nixos
* Kinnison really needs to learn about writing packages so he can put packaging around some of his stuff
* Kinnison thinks he came to nixos a bit backwards
<Kinnison> I have a fully flake-driven system+dotfiles thing which I can install from scratch and have "just work"
<Kinnison> but I haven't managed to put my preferred set of backgrounds together into a package yet
<colemickens> Kinnison: pkgs.runCommandNoCC could be used to just fetch files into a directory and have that be a package.
<colemickens> just as a pointer ;)
<Kinnison> colemickens: Don't tell me these things when I'm at work, or I'll be even more distracted than I already am :D
xourt has quit [Quit: Connection closed]
<colemickens> oops :P
<LinuxHackerman> Kinnison: don't go on IRC at work then ;)
<Kinnison> LinuxHackerman: "sadly" work *involves* being on IRC
* Kinnison 's work is gloriously resisting the siren call of Slack etc.
<LinuxHackerman> Kinnison: that approach does make sense though, I was using NixOS before I wrote my first package too 🤷
<Kinnison> cool, at least I'm not an outlier :D
<thibm> Aren't mostly anyone doing it that way?
<Kinnison> thibm: I'm not sure. Flakes aren't exactly 'stable' yet
<Kinnison> Still it was an interesting learning cliff
<thibm> Sure, not for flakes. I understood just the general path of using NixOS → writing Nix packages
* thibm admits he doesn't know anything about flakes
* colemickens flakes is life
* colemickens flakes is nix taken to its natural next step
* colemickens flakes is nirvana
<colemickens> we should get Gwenyth to market flakes
<thibm> I just hadn't time to dig into flakes yet
<{^_^}> [nix] @edolstra merged pull request #4440 → Miscellaneous improvements for positioning in eval-errors → https://github.com/NixOS/nix/pull/4440
<sterni> well, there is no need to yet
<Kinnison> tbf, flakes was the least difficult bit I did. Automating the disk setup was a right faff
<JordiPlayGames[m> I can install SIP server???
<thibm> sterni: yes: there's no hurry and I don't have much time now, so I'm fine with it
<{^_^}> [nixpkgs] @regnat opened pull request #120316 → Make it easy to try out content-addressed derivations → https://github.com/NixOS/nixpkgs/pull/120316
hiro98 has joined #nixos
cfinch has quit [Ping timeout: 246 seconds]
MJCD has joined #nixos
cfinch has joined #nixos
<MichaelRaskin> colemickens: flakes is baking into Nix an assumption that Nix trusts git _more_ than Nix trusts Nix itself. Meh
cfinch has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @hmenke opened pull request #120317 → zfsUnstable: 2.1.0-rc3 -> 2.1.0-rc4 → https://github.com/NixOS/nixpkgs/pull/120317
cfinch has joined #nixos
<{^_^}> [nixpkgs] @dotlambda opened pull request #120318 → python3Packages.dask-glm: needs setuptools-scm → https://github.com/NixOS/nixpkgs/pull/120318
cfinch has quit [Read error: Connection reset by peer]
cfinch has joined #nixos
cfinch has quit [Read error: Connection reset by peer]
cfinch has joined #nixos
saschagrunert has quit [Remote host closed the connection]
orivej has joined #nixos
cfinch has quit [Read error: Connection reset by peer]
Qwerky has joined #nixos
hiro98 has quit [Ping timeout: 246 seconds]
<{^_^}> [nixpkgs] @fricklerhandwerk opened pull request #120319 → docs/using: convert to markdown → https://github.com/NixOS/nixpkgs/pull/120319
cfinch has joined #nixos
abstractednoah has quit [Quit: WeeChat 3.1]
<{^_^}> [nixpkgs] @dotlambda opened pull request #120320 → ffsend: 0.2.68 -> 0.2.71 → https://github.com/NixOS/nixpkgs/pull/120320
<{^_^}> [nixpkgs] @primeos opened pull request #120321 → chromiumDev: 91.0.4472.19 -> 92.0.4484.7 → https://github.com/NixOS/nixpkgs/pull/120321
ma9o has joined #nixos
ynotperez has joined #nixos
abbe has joined #nixos
stree has quit [Ping timeout: 252 seconds]
cfinch has quit [Read error: Connection reset by peer]
wallacer has quit [Ping timeout: 245 seconds]
phalrax has quit [Quit: Connection closed]
endvra has joined #nixos
<{^_^}> [nixpkgs] @alyssais merged pull request #113817 → mrustc: init at 0.9 → https://github.com/NixOS/nixpkgs/pull/113817
<{^_^}> [nixpkgs] @SCOTT-HAMILTON opened pull request #120322 → dupeguru: 4.0.4 -> 4.1.1 → https://github.com/NixOS/nixpkgs/pull/120322
stree has joined #nixos
<{^_^}> [nixpkgs] @dotlambda opened pull request #120323 → pythonPackages.bitarray: 1.8.1 -> 2.0.1 → https://github.com/NixOS/nixpkgs/pull/120323
<{^_^}> [nixpkgs] @pennae opened pull request #120324 → nixos/sshguard: restart sshguard when services/backend changes → https://github.com/NixOS/nixpkgs/pull/120324
cfinch has joined #nixos
Synthetica has joined #nixos
zupo has joined #nixos
ddellacosta has joined #nixos
<{^_^}> [nixpkgs] @primeos opened pull request #120325 → mesa: 21.0.1 -> 21.0.3 → https://github.com/NixOS/nixpkgs/pull/120325
abstractednoah has joined #nixos
<{^_^}> [rfc39-record] @grahamc pushed commit from rfc39 to main « Automated team sync results. »: https://git.io/JOMJd
<typetetris> Hi there, someone who could help a bit with `buildRebar3` and an erlang build? I have a project using rebar3_proper rebar plugin and I thought I provided rebar3_proper, but rebar3 still insists on touching hex pm to check its version.
ddellacosta has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @dotlambda opened pull request #120326 → python3Packages.ytmusicapi: 0.15.1 -> 0.16.0 → https://github.com/NixOS/nixpkgs/pull/120326
cfinch has quit [Read error: Connection reset by peer]
wallacer has joined #nixos
abstractednoah has quit [Quit: WeeChat 3.1]
abstractednoah has joined #nixos
abstractednoah has quit [Client Quit]
abstractednoah has joined #nixos
Qwerky has quit [Remote host closed the connection]
fuiltilt has quit [Quit: WeeChat 2.9]
kaliumxyz has joined #nixos
Qwerky has joined #nixos
<{^_^}> [nix] @alyssais opened pull request #4736 → doc: fix section in nix3 man page metadata → https://github.com/NixOS/nix/pull/4736
hiro98 has joined #nixos
malook has joined #nixos
Qwerky has quit [Ping timeout: 260 seconds]
srk has joined #nixos
leah2 has quit [Ping timeout: 250 seconds]
cfinch has joined #nixos
<{^_^}> [nixpkgs] @06kellyjac opened pull request #120327 → dockle: 0.3.11 -> 0.3.13 → https://github.com/NixOS/nixpkgs/pull/120327
leah2 has joined #nixos
m4ts has quit [Read error: Connection reset by peer]
jumper149 has joined #nixos
<jumper149> I want to use lm_sensors? Is there anything I need to look out for on NixOS? Or can I just run `sudo sensors-detect`?
cfinch has quit [Remote host closed the connection]
cfinch has joined #nixos
m4ts has joined #nixos
exondation has joined #nixos
malook has quit [Quit: malook]
<sphalerite> jumper149: I don't recall exactly what files it tries to write and whether they all make sense on nixos, but I have run it before and it's helped me identify the drivers to add to boot.kernelModules
phalrax has joined #nixos
avaq has quit [Remote host closed the connection]
avaq has joined #nixos
vidbina_ has quit [Ping timeout: 240 seconds]
Qwerky has joined #nixos
cfinch has quit [Read error: Connection reset by peer]
<{^_^}> [nixpkgs] @fabaff opened pull request #120328 → angrop: init at 9.0.6790 → https://github.com/NixOS/nixpkgs/pull/120328
cfinch has joined #nixos
af has joined #nixos
devhell has joined #nixos
cfinch has quit [Read error: Connection reset by peer]
m4tsa_ has joined #nixos
cfinch has joined #nixos
dotlambda has joined #nixos
<{^_^}> [nixpkgs] @onsails opened pull request #120329 → tabnine: update and fix binaries availability → https://github.com/NixOS/nixpkgs/pull/120329
cfinch has quit [Read error: Connection reset by peer]
cfinch has joined #nixos
dev_mohe has joined #nixos
m4ts has quit [Ping timeout: 252 seconds]
dev_mohe has quit [Client Quit]
attila_lendvai has quit [Ping timeout: 252 seconds]
ahmedelgabri has quit [Ping timeout: 260 seconds]
cfinch has quit [Ping timeout: 252 seconds]
<{^_^}> [nixpkgs] @LeSuisse opened pull request #120330 → dnsmasq: 2.84 -> 2.85 → https://github.com/NixOS/nixpkgs/pull/120330
cfinch has joined #nixos
<{^_^}> [nixpkgs] @fabaff opened pull request #120331 → ipython3Packages.nclib: init at 1.0.0 → https://github.com/NixOS/nixpkgs/pull/120331
meh` has joined #nixos
codygman__ has joined #nixos
<{^_^}> [nixpkgs] @fabaff opened pull request #120332 → python3Packages.twitterapi: 2.7.1 -> 2.7.2 → https://github.com/NixOS/nixpkgs/pull/120332
cfinch has quit [Read error: Connection reset by peer]
lom has joined #nixos
nickolas has joined #nixos
<nickolas> What should I do to get this documentation for 21.05 merged before 21.05 cutoff? https://github.com/NixOS/nixpkgs/pull/118993
<{^_^}> #118993 (by tomfitzhenry, 1 week ago, open): nixos/manual: document how to install over a serial port
<{^_^}> [nixpkgs] @fabaff opened pull request #120333 → python3Packages.sendgrid: 6.6.0 -> 6.7.0 → https://github.com/NixOS/nixpkgs/pull/120333
ddellaco_ has joined #nixos
<eyJhb> nickolas: Post in #nixos-dev, I think they can help more
<{^_^}> [nixpkgs] @primeos merged pull request #120321 → chromiumDev: 91.0.4472.19 -> 92.0.4484.7 → https://github.com/NixOS/nixpkgs/pull/120321
ahmedelgabri has joined #nixos
<{^_^}> [nix] @edolstra pushed 4 commits to master: https://git.io/JOMGn
<{^_^}> [nix] @edolstra merged pull request #4736 → doc: fix section in nix3 man page metadata → https://github.com/NixOS/nix/pull/4736
<{^_^}> [nix] @edolstra merged pull request #4735 → (briefly) document how to build ca derivations → https://github.com/NixOS/nix/pull/4735
<{^_^}> [nix] @edolstra merged pull request #4732 → Aways register the realisations → https://github.com/NixOS/nix/pull/4732
<{^_^}> [nixpkgs] @yorickvP opened pull request #120334 → etcher: 1.5.86 -> 1.5.117 → https://github.com/NixOS/nixpkgs/pull/120334
ahmedelgabri has quit [Ping timeout: 260 seconds]
zupo_ has joined #nixos
nickolas has quit [Ping timeout: 240 seconds]
zupo has quit [Ping timeout: 240 seconds]
ericsagnes has quit [Ping timeout: 248 seconds]
nixuser has joined #nixos
stree has quit [Ping timeout: 252 seconds]
cfinch has joined #nixos
cfinch has quit [Read error: Connection reset by peer]
amk has joined #nixos
cfinch has joined #nixos
cfinch has quit [Remote host closed the connection]
cfinch has joined #nixos
ahmedelgabri has joined #nixos
cfinch has quit [Read error: Connection reset by peer]
vidbina_ has joined #nixos
<pennae> anyone use fail2ban with ipsets? we're getting script failures because f2b actions can't find the ipset binary
<{^_^}> [nix] @regnat pushed to remove-trailing-spaces « Replace the trailing markdown spaces by a backslash »: https://git.io/JOMcz
<{^_^}> [nix] @regnat opened pull request #4737 → Replace the trailing markdown spaces by a backslash → https://github.com/NixOS/nix/pull/4737
ericsagnes has joined #nixos
stree has joined #nixos
Qwerky has quit [Remote host closed the connection]
chiefgoat has joined #nixos
m4ts has joined #nixos
Qwerky has joined #nixos
Qwerky has quit [Remote host closed the connection]
m4tsa_ has quit [Ping timeout: 252 seconds]
chiefgoat has quit [Client Quit]
<{^_^}> [nixpkgs] @alyssais opened pull request #120335 → netbsd.libterminfo: fix build (again) → https://github.com/NixOS/nixpkgs/pull/120335
<{^_^}> [nixpkgs] @dotlambda opened pull request #120336 → radicale: use pytestCheckHook → https://github.com/NixOS/nixpkgs/pull/120336
amk has quit [Remote host closed the connection]
codygman` has joined #nixos
<{^_^}> [nixpkgs] @marsam opened pull request #120337 → scheme-manpages: 2021-01-17 -> 2021-03-11 → https://github.com/NixOS/nixpkgs/pull/120337
codygman__ has quit [Ping timeout: 240 seconds]
amk has joined #nixos
amk has quit [Read error: Connection reset by peer]
amk has joined #nixos
Qwerky has joined #nixos
rubm has joined #nixos
Qwerky has quit [Ping timeout: 260 seconds]
hiro98 has quit [Read error: Connection reset by peer]
devhell has quit [Quit: leaving]
devhell has joined #nixos
cfinch has joined #nixos
<{^_^}> [nix] @edolstra pushed 2 commits to master: https://git.io/JOMBa
<{^_^}> [nix] @edolstra merged pull request #4737 → Replace the trailing markdown spaces by a backslash → https://github.com/NixOS/nix/pull/4737
cfricke has quit [Quit: WeeChat 3.1]
<Synthetica> Doesn't commonmark have definition list like pandoc markdown?
<{^_^}> [nixpkgs] @primeos opened pull request #120339 → intel-gmmlib: 21.1.1 -> 21.1.2 → https://github.com/NixOS/nixpkgs/pull/120339
ddellaco_ has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @j0hax opened pull request #120340 → wallgen: init at cf9cfbd → https://github.com/NixOS/nixpkgs/pull/120340
phalrax has quit [Quit: Connection closed]
<sterni> Synthetica: doesn't seem like it
<sterni> ryantm: does cmark support definition lists? we pandoc style definition lists in the manual already
<sterni> Synthetica: seems like many impls support them regardless though
<{^_^}> [nixpkgs] @veprbl merged pull request #120124 → freeimage: fix for darwin → https://github.com/NixOS/nixpkgs/pull/120124
<ryantm> sterni no, but I added it to mmdoc via cmarks document manipulation api.
af has quit [Quit: af]
af has joined #nixos
<{^_^}> [nixpkgs] @iFreilicht opened pull request #120341 → stm32cubemx: 6.0.1 -> 6.2.1 → https://github.com/NixOS/nixpkgs/pull/120341
ddellaco_ has joined #nixos
jumper149 has quit [Quit: WeeChat 3.1]
<sterni> ah yeah! totally forgot you could add stuff
af has quit [Client Quit]
af has joined #nixos
orivej has quit [Ping timeout: 246 seconds]
<{^_^}> [nixpkgs] @mkg20001 opened pull request #120342 → systemd: fix lxd support with ubuntu patches → https://github.com/NixOS/nixpkgs/pull/120342
<{^_^}> [nixpkgs] @alyssais pushed 73 commits to staging: https://git.io/JOMux
devhell has quit [Quit: leaving]
<bsima> Say I have a tarball locally, how can I get the same sha256 as used in fetchTarball or nix-fetch-url --unpack?
cfinch has quit [Remote host closed the connection]
cfinch has joined #nixos
<pennae> bsima: try nix-hash --base32 --type sha256 --flat $path
<bsima> should $path be the tarball or the extracted output?
<pennae> the tarball itself
<LinuxHackerman> the output
<LinuxHackerman> fetchTarball unpacks it before computing the hash
<pennae> oh, didn't realize that.
<LinuxHackerman> --flat on the tarball is the right thing to use for fetchurl
<bsima> yeah i can repro the hash with the output but not the tarball
<LinuxHackerman> for fetchTarball you want to use it without --flat and on the directory :)
<bsima> yeah
<bsima> was hoping to avoid the unpack step, since I just finished packing it with 'git archive'...
<sterni> bsima: that's intentional to migitate stuff like github repacking their archives with a different setting which then breaks hashes in nixpkgs
<sterni> bsima: if you use mkDerivation you can use fetchurl for a tarball just fine, it'll unpack it in unpackPhase
<LinuxHackerman> bsima: you can also use nix-prefetch-url --unpack file:///home/bsima/foo.tar.gz
<LinuxHackerman> then at least you don't need to unpack it yourself ^^
<bsima> yeah i think i'll do that, thanks
<bsima> and it should be garbage collected by nix that way too
<{^_^}> [nixpkgs] @alyssais pushed 31 commits to staging-next: https://git.io/JOM2f
<{^_^}> [nixpkgs] @mweinelt opened pull request #120343 → python3Packages.httplib2: disable test_timeout_subsequent on darwin → https://github.com/NixOS/nixpkgs/pull/120343
nixuser has quit [Quit: Connection closed]
devhell has joined #nixos
devhell has quit [Client Quit]
devhell has joined #nixos
<lukegb> devhell: hmm, what problems are you facing with getting RGW up?
gustavderdrache has joined #nixos
<lukegb> Do you have the right things in the RGW keyring?
af has quit [Quit: af]
<{^_^}> [nixpkgs] @jojosch opened pull request #120344 → build jellyfin from source → https://github.com/NixOS/nixpkgs/pull/120344
Jd007 has joined #nixos
<lukegb> I have a [client.<instance-name>] entry in /var/lib/ceph/radosgw/<cluster name>-<instance-name>/keyring which has mon/osd allow rwx caps
<devhell> lukegb: okay, I'll check that that's also the case with mine, thank you!
<rmcgibbo[m]> Inside nixpkgs, nixos modules are organized separately from packages usually. Does anyone have a good example I could follow of an out-of-tree nixos module+package combination (I don't use flakes)? I was thinking of making a normal package and then defining the nixos module under meta.passthru, but I'm not sure if that would be convenient to `import` from configuration.nix.
pen has quit [Ping timeout: 240 seconds]
lordcirth has joined #nixos
<sterni> I think flakes has a custom way of distributing modules
<sterni> but usually you can do ${sourcetarball}/module.nix just fine in imports
<sterni> although with flakes you don't have the src right?
<sterni> nevermind me :)
zupo_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Qwerky has joined #nixos
berberman has quit [Quit: ZNC 1.8.2 - https://znc.in]
berberman has joined #nixos
<{^_^}> [nixpkgs] @alyssais merged pull request #120335 → netbsd.libterminfo: fix build (again) → https://github.com/NixOS/nixpkgs/pull/120335
avaq has quit [Ping timeout: 252 seconds]
tbreslein has quit [Quit: tbreslein]
sangoma has quit [Quit: WeeChat 3.1]
<rmcgibbo[m]> that's very helpful. thanks, both!
<{^_^}> [nixpkgs] @grahamc merged pull request #120304 → yarGen: patch get_abs_path function, install strings.xml → https://github.com/NixOS/nixpkgs/pull/120304
lordcirth_ has joined #nixos
<yorick> [20.09] so I'm trying to configure network.interfaces.x.ipv4.routes, but it seems that they don't get restored if the link goes down and back up again
lordcirth has quit [Ping timeout: 250 seconds]
endformationage has joined #nixos
<radvendii> why don't /usr/bin/env shebangs work during a derivation build? is that expected? i.e. should i have to patchShebangs my bulid scripts in postPatch / preBuild?
<sterni> yep
<puck> radvendii: /usr/bin/env doesn't exist in the derivation sandbox for some reason
<lukegb> devhell: -> #nixos-dev
<lukegb> it sounds like your keyring file is in the wrong place
<radvendii> puck: huh. i would guess it's for some sandboxing reason, but i can't actually think what that reason would be
<puck> radvendii: something about impurity (there's /bin/sh, but it's a busybox static binary that has been provided at Nix build time)
stree has quit [Ping timeout: 252 seconds]
redmp has joined #nixos
<{^_^}> [nixpkgs] @NobbZ opened pull request #120346 → lefthook: 0.7.2 => 0.7.3 → https://github.com/NixOS/nixpkgs/pull/120346
<{^_^}> [nixpkgs] @alyssais opened pull request #120347 → netbsd.librt: fix build → https://github.com/NixOS/nixpkgs/pull/120347
KarlJoad has joined #nixos
Qwerky has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @alyssais opened pull request #120348 → netbsd.librpcsvc: fix build → https://github.com/NixOS/nixpkgs/pull/120348
stree has joined #nixos
Qwerky has joined #nixos
lordcirth__ has joined #nixos
Qwerky has quit [Ping timeout: 260 seconds]
lordcirth_ has quit [Ping timeout: 250 seconds]
griff__ has joined #nixos
<{^_^}> [nixpkgs] @lukegb opened pull request #120349 → nixos/test-driver: use a variety of different Tesseract settings for OCR → https://github.com/NixOS/nixpkgs/pull/120349
<conkker> when will flakes be stable?
pennae has joined #nixos
<{^_^}> [nixpkgs] @peti pushed 1000 commits to haskell-updates: https://git.io/JOMD1
attila_lendvai has joined #nixos
attila_lendvai has quit [Changing host]
attila_lendvai has joined #nixos
<hpfr> how do I get these unable to download cache nar timeouts to stop? my internet is definitely good
<{^_^}> [nixpkgs] @alyssais opened pull request #120350 → netbsd.libpthread: fix build → https://github.com/NixOS/nixpkgs/pull/120350
waleee-cl has joined #nixos
proofofkeags has joined #nixos
attila_lendvai has quit [Quit: Leaving]
<{^_^}> [nixpkgs] @alyssais opened pull request #120351 → netbsd.libcrypt: fix build → https://github.com/NixOS/nixpkgs/pull/120351
avaq has joined #nixos
ahmedelgabri has quit [Ping timeout: 245 seconds]
zupo has joined #nixos
cfinch has quit [Remote host closed the connection]
cfinch has joined #nixos
zupo_ has joined #nixos
jonringer has joined #nixos
<{^_^}> Channel nixpkgs-unstable advanced to https://github.com/NixOS/nixpkgs/commit/b2c2551614a (from 10 hours ago, history: https://channels.nix.gsc.io/nixpkgs-unstable)
sangoma has joined #nixos
lordcirth_ has joined #nixos
cole-h has joined #nixos
zupo has quit [Ping timeout: 260 seconds]
<KarlJoad> I am trying to build a RISC-V toolchain inside a nix-shell. But, I am always getting a 2 exit code. I think I'm missing dependencies, but have no idea what I should be looking for. I have logs from the script run in both the nix-shell and an Ubuntu VM to diagnose.
lordcirth__ has quit [Ping timeout: 276 seconds]
codygman` has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @SCOTT-HAMILTON opened pull request #120352 → openvpn3: init at 13_beta → https://github.com/NixOS/nixpkgs/pull/120352
snk__ has joined #nixos
aleph- has joined #nixos
<{^_^}> [nixpkgs] @Ericson2314 merged pull request #120351 → netbsd.libcrypt: fix build → https://github.com/NixOS/nixpkgs/pull/120351
<{^_^}> [nixpkgs] @Ericson2314 merged pull request #120350 → netbsd.libpthread: fix build → https://github.com/NixOS/nixpkgs/pull/120350
<{^_^}> [nixpkgs] @Ericson2314 merged pull request #120348 → netbsd.librpcsvc: fix build → https://github.com/NixOS/nixpkgs/pull/120348
redmp has quit [Ping timeout: 252 seconds]
Synthetica has quit [Quit: Connection closed for inactivity]
<{^_^}> [nixpkgs] @grahamc merged pull request #119996 → sasquatch: 4.3 -> 4.4 → https://github.com/NixOS/nixpkgs/pull/119996
aleph- has quit [Client Quit]
hiro98 has joined #nixos
<{^_^}> [nixpkgs] @Ericson2314 merged pull request #120347 → netbsd.librt: fix build → https://github.com/NixOS/nixpkgs/pull/120347
<snk__> Hi all: look for some noobie help re a broke nixpkg: zoom-us
<{^_^}> [nixpkgs] @Mic92 opened pull request #120353 → ghidra: 9.2.2 -> 9.2.3 → https://github.com/NixOS/nixpkgs/pull/120353
aleph- has joined #nixos
<snk__> using home-manager, how would I pin zoom-us pkg to previous version that builds?
<{^_^}> [nixpkgs] @kennyballou opened pull request #120354 → Update emacs2nix and update-melpa.el → https://github.com/NixOS/nixpkgs/pull/120354
pcarrier has joined #nixos
aleph- has quit [Quit: WeeChat info:version]
erasmas has joined #nixos
xcmw has joined #nixos
<gchristensen> snk__: I don't pin zoom like that with home manage, but I will check out a copy of nixpkgs and go back in time sometimes.
aleph- has joined #nixos
<{^_^}> [nixpkgs] @alyssais opened pull request #120355 → netbsd.libutil: fix build → https://github.com/NixOS/nixpkgs/pull/120355
<{^_^}> [nixpkgs] @lunik1 opened pull request #120356 → fdk-aac-encoder: 1.0.1 → 1.0.2 → https://github.com/NixOS/nixpkgs/pull/120356
ahmedelgabri has joined #nixos
<snk__> gchristensen: Thanks. How do I revert to an earlier version of nixpkgs?
Tv` has joined #nixos
<snk__> gchristensen: since I'm just using nix-channel --update ... ?
<gchristensen> `git clone https://github.com/nixos/nixpkgs.git` then go in to ./nixpkgs and you can try different revisions from: https://channels.nix.gsc.io/nixos-unstable/history-v2
<gchristensen> note the last column is the date the channel is from
<aleph-> Neat latest tmux in unstable is broken on my machine.
<aleph-> That's always fun
cfinch has quit [Read error: Connection reset by peer]
<snk__> gchristensen: OK, I'll try that. Thank you.
<shofius> aleph-: do you run your whole config in unstable?
ahmedelgabri has quit [Ping timeout: 245 seconds]
<cgbrewster[m]> When configuring substituters in nix.conf, if one substituter has a network error (maybe the cache is down), will nix gracefully go to the next one in the list?
<{^_^}> [nixpkgs] @Mic92 merged pull request #120254 → nixos/ipfs: remove separate ipfs-init systemd unit → https://github.com/NixOS/nixpkgs/pull/120254
cfinch has joined #nixos
<rmcgibbo[m]> cgbrewster: my experience last week was that it did not.
<cgbrewster[m]> rmcgibbo: cool, thanks! Do you happen to know if this is intentional, would a patch be accepted to allow the fallback behavior?
dhess has joined #nixos
<rmcgibbo[m]> I do not know. It was not the behavior that I wanted, so personally I would really like such a patch :)
<radvendii> cgbrewster[m]: i configure substituters in configuration.nix, and my experience is that it does this semi-gracefully
<radvendii> oh
<radvendii> there was a trick. i forgot i changed something
<radvendii> i set ConnectTimeout 5 on the host that is sometimes down
<radvendii> otherwise it will hang for a while before moving on
<radvendii> i will warn you that even with ConnectTimeout 5, it will hang for 5 seconds for every package it builds
<radvendii> i would love to find a way for it to remember that the host is down for the entire `nix build` command
<rmcgibbo[m]> Looking at the commented out section of my cfg, I had done it with `nix.binaryCaches = [ "my local build machine that's not always online"]`;
<cgbrewster[m]> Yeah, I'm not sure the 5 second per package will work unfortunately
<{^_^}> [nixpkgs] @kevincox merged pull request #120180 → agdaPackages.standard-library: 1.5 -> 1.6 → https://github.com/NixOS/nixpkgs/pull/120180
<cgbrewster[m]> Well thanks for the info anyways! Might toy around with a patch or change up what I'm doing 😃
<radvendii> cgbrewster[m]: yeah, it's kind of a pain. there was someone last night who was helping me write a nix module that would wrap ssh in a script that remembers if the ssh has failed recently and fails immediately if so
zupo_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<aleph-> shofius: Using nixops which defaults to unstable technically so yeah.
<aleph-> Decided to finally make the push to using it now that some other bugs were fixed.
<aleph-> Err push to using unstable rather then a release.*
cfinch has quit [Read error: Connection reset by peer]
snk__ has left #nixos [#nixos]
cfinch has joined #nixos
<cole-h> rmcgibbo[m]++ Thanks for the additional aarch64 runs. I really only wanted 1 more to ensure I fixed the aarch64 build issues :D
<{^_^}> rmcgibbo[m]'s karma got increased to 7
<cole-h> (I'm inclined to believe that the scancode-toolkit failure is misleading; at least, it works in pkgsCross)
devhell has quit [Quit: leaving]
<{^_^}> [nixpkgs] @onsails opened pull request #120357 → wireguard: wg-quick userspaceImplementation option → https://github.com/NixOS/nixpkgs/pull/120357
Qwerky has joined #nixos
ashesham` has quit [Ping timeout: 252 seconds]
matthewcroughan has joined #nixos
<cole-h> hm, ok, nevermind -- I ran with `--system aarch64-linux` and I see the same errors
hiro98 has quit [Ping timeout: 252 seconds]
avaq has quit [Ping timeout: 265 seconds]
vuko has joined #nixos
rsynnest has joined #nixos
dev_mohe has joined #nixos
<KarlJoad> Does nix-shell automatically add a make/C flag to enforce warnings as errors?
sangoma has quit [Quit: WeeChat 3.1]
<{^_^}> [nixpkgs] @grahamc merged pull request #120009 → python3.pkgs.scancode-toolkit: init at 21.3.31 → https://github.com/NixOS/nixpkgs/pull/120009
Qwerky has quit [Remote host closed the connection]
ahmedelgabri has joined #nixos
<{^_^}> [nixpkgs] @cole-h opened pull request #120358 → python3.pkgs.bitarray: mark broken on aarch64 → https://github.com/NixOS/nixpkgs/pull/120358
respawn_ has joined #nixos
<{^_^}> [nixpkgs] @rmcgibbo opened pull request #120359 → safeeyes: 2.0.9 -> 2.1.3 → https://github.com/NixOS/nixpkgs/pull/120359
fresheyeball has joined #nixos
<fresheyeball> how can I run tests for a package?
<fresheyeball> if I add a test here how can I run it?
ahmedelgabri has quit [Ping timeout: 250 seconds]
Qwerky has joined #nixos
exondation has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @rsynnest reopened pull request #120297 → nixos/unifi-video module and supporting packages → https://github.com/NixOS/nixpkgs/pull/120297
<bsima> fresheyeball: i think `nix-build -A tests`
<fresheyeball> thanks Ben
Qwerky has quit [Ping timeout: 260 seconds]
<bsima> np
<bsima> might wanna get more specific with nix-build -A tests.cc-wrapeper
<bsima> or whatever the sub-test is
<davidak[m]> how can i access the unpacked source from checkPhase? can' find it in manual :/
Qwerky has joined #nixos
<NobbZ[m]> `$src`?
<gchristensen> it is in ./
<NobbZ[m]> That's already with modifications after patch and buildpahses
<dhess> gchristensen: hi :) It appears you're using https://github.com/martinbaillie/vault-plugin-secrets-github, yes?
<gchristensen> oh my yes
<dhess> gchristensen: how do you deal with the sha256 Vault plugin bit in Nix?
<cole-h> note that $src is in the store, so probably not what you want
<davidak[m]> NobbZ: $src is the zip file
ericsagnes has quit [Ping timeout: 260 seconds]
<NobbZ[m]> Then the unmodified sources are probably lost in check, unless you unzip again
<gchristensen> dhess: something like this: https://gist.github.com/grahamc/db853d1567ed1300f70d296b2d6a4104
<davidak[m]> NobbZ: that would mean nix expect to install a test script that is not useful for the end user?
<dhess> gchristensen: right, and the Vault token comes from where in this case? Is it an EC2 instance with {iam,ec2} auth?
<gchristensen> it isn't, I use nixops to push the unlock key
<gchristensen> it is a single token required to unlock
<dhess> gchristensen: ok cool. I don't suppose you've published the whole plugins thing somewhere?
<gchristensen> using aws for unlocking would be better though imo
stree has quit [Ping timeout: 252 seconds]
<gchristensen> I don't, it is all pretty gnarly and, uh, "in place"
<gchristensen> I haven't tried to make it nice
<dhess> yeah that's what I'm doing :) Easy enough to add this to the IAM instance role
<dhess> gchristensen: ok no worries, thank you!
<gchristensen> yep!
<dhess> gchristensen: oh one more thing -- I assume you use this with Hydra?
M0x0815[m] has joined #nixos
mayhew has joined #nixos
ericsagnes has joined #nixos
pushqrdx has joined #nixos
<NobbZ[m]> > NobbZ: that would mean nix expect to install a test script that is not useful for the end user?
<NobbZ[m]> Not sure if I can follow
<{^_^}> error: syntax error, unexpected ')', expecting ID or OR_KW or DOLLAR_CURLY or '"', at (string):495:1
pushqrdx has quit [Remote host closed the connection]
MJCD has quit [Quit: Connection closed for inactivity]
<{^_^}> [nixpkgs] @alyssais opened pull request #120430 → netbsd.libkern: remove → https://github.com/NixOS/nixpkgs/pull/120430
pushqrdx has joined #nixos
stree has joined #nixos
<KarlJoad> When opening a nix-shell, I get "bash: export: write error: No space left on device". But I still enter the shell. What is happening?
pushqrdx has quit [Remote host closed the connection]
pushqrdx has joined #nixos
<davidak[m]> NobbZ: i'm creating a python package and want to run this included file as check. it is not present in build or out directory https://github.com/alorence/pysvg-py3/blob/master/sample/tutorial.py
<davidak[m]> i guess i could just copy it in postInstallPhase
<KarlJoad> Then the configure scripts can also not create any files, because "No space left on device". But, my SSD has 25GB free.
<qyliss> KarlJoad: tmpfs?
<NobbZ[m]> > <@davidak:matrix.org> NobbZ: i'm creating a python package and want to run this included file as check. it is not present in build or out directory https://github.com/alorence/pysvg-py3/blob/master/sample/tutorial.py
<NobbZ[m]> > i guess i could just copy it in postInstallPhase
<NobbZ[m]> Do you package from pypi or GitHub?
<{^_^}> error: syntax error, unexpected '<', at (string):494:1
<{^_^}> error: syntax error, unexpected IN, expecting ')', at (string):494:30
<KarlJoad> qyliss: Not quite sure what you mean. The SSD is a ext4 FS.
<{^_^}> [nixpkgs] @06kellyjac opened pull request #120431 → terragrunt: 0.28.24 -> 0.29.0 → https://github.com/NixOS/nixpkgs/pull/120431
<davidak[m]> NobbZ: pypi and you are right that it is probably not included there
<lom> tmpfs is /tmp
<lom> it's in your memory
<tpw_rules> KarlJoad: did you run out of tmpfs space? does df say anything is at 100%?
<simpson> NobbZ[m]++ PyPI source packages can be incomplete, since they're packaged by a script which can fail to include everything from git/svn.
<{^_^}> NobbZ[m]'s karma now has 2 digits!
<simpson> KarlJoad: $ df -h
<davidak[m]> NobbZ[m]++
<{^_^}> NobbZ[m]'s karma got increased to 11
<lom> does free -h also show tmpfs space?
<lom> just wondering
<tpw_rules> i think it's accounted for in buf/cache
<KarlJoad> My user ran out of tmpfs space. /run/user/1000 has a full tmpfs.
<davidak[m]> then no tests for nix users
<tpw_rules> davidak[m]: or package from github. please
<KarlJoad> How can I clear my user's tmpfs out?
<tpw_rules> reboot would be best
<davidak[m]> tpw_rules: github has no release. why can't this be easy :/
<davidak[m]> yeah i do it
<KarlJoad> That's what I figured. Then, second part, is there a way to increase the size of this user's tmpfs? A ulimit or something?
<NobbZ[m]> <simpson "NobbZ[m]++ PyPI source packages "> This is on purpose. When I install some library from pypi (as a regular python user) I assume it has already been tested and do not want to run the tests again, instead I prefer the download and install sizes as small as possible
M0x0815[m] has left #nixos ["User left"]
lordcirth__ has joined #nixos
<matthewcroughan> I need to make a change to obs-studio and or mpv to add ffmpeg-full instead of ffmpeg to its inputs.
<tpw_rules> KarlJoad: you can remount it with a bigger size. but remember tmpfs lives in RAM, although it is swappable. you could look and see if anything looks deletable, it's kind of weird that it filled up
<matthewcroughan> What would you rather do? Change mpv and obs-studio to ffmpeg-full? Or would you compile srt support into the ffmpeg library by default?
<matthewcroughan> The reason is because mpv and obs-studio should both be able to read srt:// streams, but they can't right now because srt isnot compiledi into `ffmpeg` only `ffmpeg-full`
<matthewcroughan> so what should the change be to? ffmpeg? Or to the obs-studio and mpv derivations.
<KarlJoad> tpw_rules: I'm trying to compile a fairly large framework and I've been doing it all morning. I don't know how I filled the 3.2GB tmpfs, but I did.
lordcirth_ has quit [Ping timeout: 250 seconds]
<tpw_rules> KarlJoad: then there's probably something in there that looks like compilation output or whatever you can safely delete. there's no problem per se wandering in and deleting stuff, but you might confuse some application. rebooting ensures everybody is done with it
<KarlJoad> Fair enough. I'll just reboot.
exondation has joined #nixos
KarlJoad has quit [Quit: ERC (IRC client for Emacs 27.1)]
attila_lendvai has joined #nixos
hexchen has joined #nixos
<davidak[m]> <NobbZ[m] "This is on purpose. When I insta"> NobbZ: do you know if there is a rule or recommendation for this practice? could we ask pypi to change it? i think pypi is the official source for most python package and we should use it, but also test packages when possible
<{^_^}> [nixpkgs] @fortuneteller2k opened pull request #120434 → neofetch: 7.1.0 -> unstable-2020-11-26 → https://github.com/NixOS/nixpkgs/pull/120434
<hexchen> join #nixos-dev
<hexchen> oops
<hexchen> sorry about that
KarlJoad has joined #nixos
<tpw_rules> davidak[m]: you can file an issue on the git repo
<davidak[m]> for every python package on pypi?
<tpw_rules> pypi doesn't control what you upload
<davidak[m]> they might have best practices
<KarlJoad> tpw_rules: I was cleaning up some lorri roots and might have done something. I'm not sure. Rebooting cleared it out.
<KarlJoad> Still my question stands, can I increase the tmpfs size allocated to my user through configuration.nix?
<tpw_rules> i think it's systemd's responsibility. presumably you could write an appropriate unit
evils has joined #nixos
lom has quit [Read error: Connection reset by peer]
<KarlJoad> It's definitely systemd's because it lives in /run/user/uid. I'll have to check.
<davidak[m]> tpw_rules: i know SQLAlchemy has tests, because they always take long and we fetch it from pypi, so some packages have tests included
chenin has joined #nixos
<KarlJoad> tpw_rules: It is systemd. RuntimeDirectorySize is the appropriate systemd variable. By defualt it's 10% of RAM.
<KarlJoad> Doesn't seem like there's a configuration.nix variable for it. I'll just leave it. I have a RAM upgrade coming soon, so it's not a huge deal. I still have no ideal how i filled it hough. Zoom seems to have some effect though...
<AmandaC> KarlJoad: are you sure it's not just something that is handled by a blanket value? Like how units have a service/unit/etc Config
<tpw_rules> KarlJoad: if this is a temporary problem you could say e.g. mount -o remount,size=5G /run/user/1000 or whatever.
<KarlJoad> AmandaC: What do you mean by blanket value? systemd's RuntimeDirectorySize defaults to 10% of total RAM capacity. I could write a systemd unit, but this was the first time I encountered this issue, so I think it's a bit of a weird time.
<KarlJoad> tpw_rules: This is the very first time I encountered this, so I think it was a weird one-off thing.
<AmandaC> There's not a NixOS Option for every systemd option under the sun, instead it converts some from attrsets like that
<AmandaC> ( Because there's already >10,000 options )
chenin has left #nixos [#nixos]
meh` has quit [Ping timeout: 252 seconds]
<AmandaC> I think you'd have to do something to create an override fr `user@<your-uid>.slice` but I'm not sure how you'd go abou that
sangoma has joined #nixos
lordcirth_ has joined #nixos
lordcirth__ has quit [Ping timeout: 250 seconds]
<{^_^}> [nixpkgs] @06kellyjac opened pull request #120436 → deno: 1.9.1 -> 1.9.2 → https://github.com/NixOS/nixpkgs/pull/120436
pushqrdx_ has joined #nixos
pushqrdx has quit [Read error: Connection reset by peer]
vidbina_ has quit [Ping timeout: 252 seconds]
derivates has joined #nixos
lawr3nce has joined #nixos
<derivates> Hello, can anyone help me with this error: HASH/nix-support/setup-hook: line 19: syntax error near unexpected token `<
<{^_^}> [nixpkgs] @bachp opened pull request #120437 → minio: 2021-04-06T23-11-00Z -> 2021-04-22T15-44-28Z → https://github.com/NixOS/nixpkgs/pull/120437
lordcirth__ has joined #nixos
respawn_ has quit [Quit: Leaving]
<qyliss> derivates: sounds like you have a merge conflict
lordcirth_ has quit [Ping timeout: 250 seconds]
derivates has quit [Quit: Connection closed]
redmp has joined #nixos
<{^_^}> [nixpkgs] @aszlig pushed 6 commits to staging: https://git.io/JODYt
aiken has joined #nixos
<{^_^}> [nixpkgs] @aszlig merged pull request #119096 → Update kbd, add tests → https://github.com/NixOS/nixpkgs/pull/119096
bvdw has joined #nixos
<{^_^}> [nixpkgs] @nek0 opened pull request #120438 → openra-release: 20190314 - 20210321 → https://github.com/NixOS/nixpkgs/pull/120438
<{^_^}> [nixpkgs] @mweinelt merged pull request #120343 → python3Packages.httplib2: disable test_timeout_subsequent on darwin → https://github.com/NixOS/nixpkgs/pull/120343
<{^_^}> [nixpkgs] @wamserma opened pull request #120439 → nixos: use supportedSystems instead of hardcoded list for netboot → https://github.com/NixOS/nixpkgs/pull/120439
<aasg> ,locate easy_install
<{^_^}> Found in packages: or-tools.python, python27Packages.setuptools, python37Packages.setuptools, python38Packages.setuptools, python37Packages.ortools.python, python38Packages.ortools.python, python27Packages.bootstrapped-pip, python37Packages.bootstrapped-pip, python38Packages.bootstrapped-pip
lordcirth_ has joined #nixos
<{^_^}> [nixpkgs] @dotlambda opened pull request #120440 → nixos/radicale: add settings option → https://github.com/NixOS/nixpkgs/pull/120440
exondation has quit [Ping timeout: 260 seconds]
dev_mohe has quit [Quit: dev_mohe]
lordcirth__ has quit [Ping timeout: 250 seconds]
<{^_^}> [nixpkgs] @acairncross opened pull request #120441 → or-tools: Fix evaluation error → https://github.com/NixOS/nixpkgs/pull/120441
<{^_^}> [nixpkgs] @nagy opened pull request #120442 → ceph: substitute /bin/grep → https://github.com/NixOS/nixpkgs/pull/120442
dev_mohe has joined #nixos
<cwnovusordoseclo> how can I run `nix-shell -p package --run long-running-command` in the background?
<cwnovusordoseclo> appending with `&` works in zsh but bash doesn't like it
<{^_^}> [nixpkgs] @doronbehar merged pull request #120273 → mympd: 6.10.0 -> 7.0.2 → https://github.com/NixOS/nixpkgs/pull/120273
<cwnovusordoseclo> actually I should clarify: appending & works to run it in the background until I add a ; so I can run a second command
<cwnovusordoseclo> `-bash: syntax error near unexpected token `;'`
<qyliss> cwnovusordoseclo: & is a statement terminator, just like ;
<cwnovusordoseclo> oh cool, one sec
<qyliss> so doing &; is like doing ;;, which is invalid because you can't have an empty command
<cwnovusordoseclo> Ah ha
<cwnovusordoseclo> Thank you so much qyliss
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage2nix: update list of broken packages to fix evaluation errors »: https://git.io/JODss
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage-packages.nix: automatic Haskell package set update »: https://git.io/JODs4
ahmedelgabri has joined #nixos
cfinch has quit [Read error: Connection reset by peer]
BenjiProd has joined #nixos
<{^_^}> [nixpkgs] @dotlambda opened pull request #120443 → spotdl: 3.5.1 -> 3.5.2 → https://github.com/NixOS/nixpkgs/pull/120443
sangoma has quit [Read error: Connection reset by peer]
lordcirth__ has joined #nixos
cfinch has joined #nixos
ahmedelgabri has quit [Ping timeout: 248 seconds]
lordcirth_ has quit [Ping timeout: 276 seconds]
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « ShellCheck: apply patch to fix Haddock errors »: https://git.io/JODG9
<KarlJoad> AmandaC: I have no idea, and it's not happening now, so I don't know what's going on. I'm just going to leave it be.
cfinch has quit [Read error: Connection reset by peer]
<{^_^}> [nixpkgs] @acairncross opened pull request #120444 → python3Packages.onnx: 1.8.1 -> 1.9.0 → https://github.com/NixOS/nixpkgs/pull/120444
cfinch has joined #nixos
* colemickens read through my queue-runner code and lost interest
endformationage has quit [Quit: WeeChat 2.9]
orivej has joined #nixos
endformationage has joined #nixos
<{^_^}> Channel nixpkgs-unstable advanced to https://github.com/NixOS/nixpkgs/commit/92c77733acd (from 9 hours ago, history: https://channels.nix.gsc.io/nixpkgs-unstable)
<{^_^}> [nixpkgs] @dywedir closed pull request #117793 → just: 0.8.4 -> 0.8.5 → https://github.com/NixOS/nixpkgs/pull/117793
<{^_^}> [nixpkgs] @teto opened pull request #120445 → neovimUtils: pass plugin config with plugin → https://github.com/NixOS/nixpkgs/pull/120445
<{^_^}> [nixpkgs] @peti merged pull request #119652 → Update Haskell package set to Stackage Nightly 2021-04-15 (plus other fixes) → https://github.com/NixOS/nixpkgs/pull/119652
<{^_^}> [nixpkgs] @globin pushed 1000 commits to structured-attrs: https://git.io/JODcZ
koluacik has joined #nixos
<{^_^}> [nixpkgs] @peti pushed 2 commits to haskell-updates: https://git.io/JODcu
<{^_^}> [nixpkgs] @peti opened pull request #120446 → Haskell updates → https://github.com/NixOS/nixpkgs/pull/120446
rajivr has quit [Quit: Connection closed for inactivity]
<{^_^}> [nixpkgs] @AluisioASG opened pull request #120447 → dyndnsc: 0.5.1 -> 0.6.1 → https://github.com/NixOS/nixpkgs/pull/120447
Synthetica has joined #nixos
Acou_Bass has quit [Remote host closed the connection]
chiefgoat has joined #nixos
Acou_Bass has joined #nixos
cfinch has quit [Read error: Connection reset by peer]
<{^_^}> [nixpkgs] @lopsided98 opened pull request #120448 → tmux: fix cross-compilation → https://github.com/NixOS/nixpkgs/pull/120448
cfinch has joined #nixos
stree has quit [Ping timeout: 265 seconds]
cfinch has quit [Read error: Connection reset by peer]
sangoma has joined #nixos
__monty__ has joined #nixos
<{^_^}> [nixpkgs] @SCOTT-HAMILTON opened pull request #120449 → googleearth-pro: fix xkb keyboard → https://github.com/NixOS/nixpkgs/pull/120449
<{^_^}> [nixpkgs] @fortuneteller2k opened pull request #120450 → zls: init at 0.1.0 → https://github.com/NixOS/nixpkgs/pull/120450
dev_mohe has quit [Remote host closed the connection]
cfinch has joined #nixos
<{^_^}> Channel nixpkgs-unstable advanced to https://github.com/NixOS/nixpkgs/commit/8d0340aee5c (from 3 hours ago, history: https://channels.nix.gsc.io/nixpkgs-unstable)
lawr3nce_ has joined #nixos
lawr3nce has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @lukegb merged pull request #119756 → factorio/factorio-demo: 1.1.30 -> 1.1.32 → https://github.com/NixOS/nixpkgs/pull/119756
cfinch has quit [Read error: Connection reset by peer]
<{^_^}> [nixpkgs] @primeos merged pull request #120339 → intel-gmmlib: 21.1.1 -> 21.1.2 → https://github.com/NixOS/nixpkgs/pull/120339
stree has joined #nixos
lordcirth_ has joined #nixos
abstract1 has joined #nixos
abstractednoah has quit [Ping timeout: 245 seconds]
abstract1 has quit [Client Quit]
hlz has joined #nixos
lordcirth__ has quit [Ping timeout: 250 seconds]
abstractednoah has joined #nixos
<{^_^}> [nix] @matthewbauer closed pull request #3523 → Add --include-build-refs to `nix path-info' command → https://github.com/NixOS/nix/pull/3523
meh` has joined #nixos
<{^_^}> [nixpkgs] @dotlambda closed pull request #120358 → python3.pkgs.bitarray: mark broken on aarch64 → https://github.com/NixOS/nixpkgs/pull/120358
dhess has left #nixos ["ERC (IRC client for Emacs 27.1)"]
pushqrdx_ has quit [Remote host closed the connection]
Lord_of_Life_ has joined #nixos
Lord_of_Life has quit [Ping timeout: 265 seconds]
roconnor has joined #nixos
Lord_of_Life_ is now known as Lord_of_Life
<{^_^}> [nixpkgs] @lukegb merged pull request #120349 → nixos/test-driver: use a variety of different Tesseract settings for OCR → https://github.com/NixOS/nixpkgs/pull/120349
lawr3nce_ has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @yusdacra opened pull request #120451 → pythonPackages.hydrus: 434 -> 436 → https://github.com/NixOS/nixpkgs/pull/120451
<sterni> lukegb++
<{^_^}> lukegb's karma got increased to 21
<{^_^}> [nixpkgs] @lukegb opened pull request #120452 → [20.09] nixos/test-driver: use a variety of different Tesseract settings for OCR → https://github.com/NixOS/nixpkgs/pull/120452
lordcirth__ has joined #nixos
lom has joined #nixos
lordcirth_ has quit [Ping timeout: 250 seconds]
<{^_^}> [nixpkgs] @davidak opened pull request #120453 → Add Timeline → https://github.com/NixOS/nixpkgs/pull/120453
<{^_^}> [nixpkgs] @lopsided98 opened pull request #120454 → liburing: fix build on 32-bit ARM → https://github.com/NixOS/nixpkgs/pull/120454
aiken has left #nixos ["Leaving"]
zupo has joined #nixos
<lom> It seems like my nvidia graphic drivers always stop working after i upgrade my channels with nix-env --upgrade and/or rebuild --upgrade. Does anyone have experience with that?
<lom> last time this happened i played around with my config for a hour and a half
<lom> and it magically started working again
zupo has quit [Client Quit]
mallox has joined #nixos
mallox has quit [Client Quit]
xcmw has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
zupo has joined #nixos
cfinch has joined #nixos
cfinch has quit [Read error: Connection reset by peer]
lordcirth_ has joined #nixos
<{^_^}> [nixpkgs] @erictapen opened pull request #120455 → imagemagick6: 6.9.12-3 -> 6.9.12-8 → https://github.com/NixOS/nixpkgs/pull/120455
<{^_^}> [nixpkgs] @Ma27 merged pull request #120336 → radicale: use pytestCheckHook → https://github.com/NixOS/nixpkgs/pull/120336
pen has joined #nixos
lordcirth__ has quit [Ping timeout: 250 seconds]
pushqrdx has joined #nixos
<{^_^}> [nixpkgs] @erictapen opened pull request #120456 → imagemagick: 7.0.11-6 -> 7.0.11-8 → https://github.com/NixOS/nixpkgs/pull/120456
xcmw has joined #nixos
mkaito has joined #nixos
attila_lendvai has quit [Ping timeout: 260 seconds]
beertoagunfight has joined #nixos
cfinch has joined #nixos
<{^_^}> [nixpkgs] @lukegb merged pull request #120452 → [20.09] nixos/test-driver: use a variety of different Tesseract settings for OCR → https://github.com/NixOS/nixpkgs/pull/120452
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<{^_^}> [nixpkgs] @bachp opened pull request #120457 → Minio 2021 04 22 t15 44 28 z 20.09 → https://github.com/NixOS/nixpkgs/pull/120457
ForgottenPackage has joined #nixos
mkaito has quit [Quit: WeeChat 3.1]
ForgottenPackage has quit [Client Quit]
ForgottenPackage has joined #nixos
beertoagunfight has quit [Remote host closed the connection]
mkaito has joined #nixos
<{^_^}> [nix] @matthewbauer reopened pull request #4496 → Add --include-eval-refs to StorePathCommands → https://github.com/NixOS/nix/pull/4496
cfinch has quit [Read error: Connection reset by peer]
ahmedelgabri has joined #nixos
cfinch has joined #nixos
<{^_^}> [nixpkgs] @onsails opened pull request #120458 → vim: add nvim-base16 → https://github.com/NixOS/nixpkgs/pull/120458
beertoagunfight has joined #nixos
ahmedelgabri has quit [Ping timeout: 250 seconds]
ForgottenPackage has quit [Quit: |]
<{^_^}> [nixpkgs] @bachp merged pull request #116665 → [20.09] go_1_16: backport to release-20.09 → https://github.com/NixOS/nixpkgs/pull/116665
<{^_^}> [nixpkgs] @Ericson2314 merged pull request #120355 → netbsd.libutil: fix build → https://github.com/NixOS/nixpkgs/pull/120355
<{^_^}> [nixpkgs] @aanderse merged pull request #120324 → nixos/sshguard: restart sshguard when services/backend changes → https://github.com/NixOS/nixpkgs/pull/120324
fuiltilt has joined #nixos
<{^_^}> [nixpkgs] @Ericson2314 merged pull request #120430 → netbsd.libkern: remove → https://github.com/NixOS/nixpkgs/pull/120430
<{^_^}> [nixpkgs] @hjones2199 opened pull request #120459 → indlib: 1.8.9 -> 1.9.0 → https://github.com/NixOS/nixpkgs/pull/120459
<{^_^}> [nixpkgs] @fabaff opened pull request #120460 → python3Packages.xknx: 0.18.0 -> 0.18.1 → https://github.com/NixOS/nixpkgs/pull/120460
<{^_^}> [nixpkgs] @alyssais opened pull request #120461 → netbsd.common: just export the sources → https://github.com/NixOS/nixpkgs/pull/120461
<{^_^}> [nixpkgs] @Ma27 merged pull request #119981 → matrix-synapse: 1.30 -> 1.32.2 → https://github.com/NixOS/nixpkgs/pull/119981
<{^_^}> [nixpkgs] @Ma27 merged pull request #120052 → [20.09] matrix-synapse: 1.30.0 -> 1.32.2 → https://github.com/NixOS/nixpkgs/pull/120052
<{^_^}> [nixpkgs] @NinjaTrappeur opened pull request #120462 → nsjail: fix bison link error → https://github.com/NixOS/nixpkgs/pull/120462
<{^_^}> [nixpkgs] @lukegb opened pull request #120463 → Down integrate staging next → https://github.com/NixOS/nixpkgs/pull/120463
<{^_^}> [nixpkgs] @lukegb closed pull request #120463 → Down integrate staging next → https://github.com/NixOS/nixpkgs/pull/120463
<lukegb> No! Bad GitHub :<
<NinjaTrappeur> :D
<NinjaTrappeur> the pings already left port.
lom has quit [Ping timeout: 252 seconds]
cfinch has quit [Read error: Connection reset by peer]
<pennae> gah. want to open another PR that adds ipset to the fail2ban module, but changing security stuffs makes me antsy.
cfinch has joined #nixos
<{^_^}> [nixpkgs] @Ma27 merged pull request #120436 → deno: 1.9.1 -> 1.9.2 → https://github.com/NixOS/nixpkgs/pull/120436
<{^_^}> [nixpkgs] @primeos opened pull request #120464 → chromiumDev: Fix the configuration phase → https://github.com/NixOS/nixpkgs/pull/120464
gustavderdrache has quit [Quit: Leaving.]
pen has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @Ma27 merged pull request #120434 → neofetch: 7.1.0 -> unstable-2020-11-26 → https://github.com/NixOS/nixpkgs/pull/120434
<{^_^}> [nixpkgs] @fabaff opened pull request #120465 → python3Packages.pymetno: 0.8.2 -> 0.8.3 → https://github.com/NixOS/nixpkgs/pull/120465
zakame has quit [Ping timeout: 265 seconds]
<{^_^}> [nixpkgs] @alyssais pushed 29 commits to staging-next: https://git.io/JODzc
lsix has quit [Ping timeout: 260 seconds]
stree has quit [Quit: Caught exception]
stree has joined #nixos
lsix has joined #nixos
<{^_^}> [nixpkgs] @Ma27 merged pull request #120359 → safeeyes: 2.0.9 -> 2.1.3 → https://github.com/NixOS/nixpkgs/pull/120359
<{^_^}> [nixpkgs] @AndersonTorres opened pull request #120466 → Vulnerability Roundups: libnbd and jasper → https://github.com/NixOS/nixpkgs/pull/120466
<{^_^}> [nixpkgs] @primeos merged pull request #120464 → chromiumDev: Fix the configuration phase → https://github.com/NixOS/nixpkgs/pull/120464
<{^_^}> [nixpkgs] @magthe opened pull request #120467 → Unbreak openapi3 and servant-openapi3 → https://github.com/NixOS/nixpkgs/pull/120467
zopieux has joined #nixos
cfinch has quit [Remote host closed the connection]
cfinch has joined #nixos
<{^_^}> [nixpkgs] @Ma27 merged pull request #120125 → nixos/nextcloud: Rename option disableImagemagick to enableImagemagick → https://github.com/NixOS/nixpkgs/pull/120125
ddellaco_ has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @lukegb merged pull request #120442 → ceph: substitute /bin/grep → https://github.com/NixOS/nixpkgs/pull/120442
ddellaco_ has joined #nixos
cfinch has quit [Read error: Connection reset by peer]
cr4y1_ has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @mweinelt merged pull request #120460 → python3Packages.xknx: 0.18.0 -> 0.18.1 → https://github.com/NixOS/nixpkgs/pull/120460
<{^_^}> [nixpkgs] @lukegb merged pull request #120317 → zfsUnstable: 2.1.0-rc3 -> 2.1.0-rc4 → https://github.com/NixOS/nixpkgs/pull/120317
<{^_^}> [nixpkgs] @fabaff opened pull request #120468 → python3Packages.watchdog: 2.0.2 -> 2.0.3 → https://github.com/NixOS/nixpkgs/pull/120468
zakame has joined #nixos
ddellaco_ has quit [Ping timeout: 240 seconds]
BenjiProd has quit [Quit: Leaving]
cfinch has joined #nixos
malook has joined #nixos
malook has quit [Client Quit]
__monty__ has quit [Quit: leaving]
cfinch has quit [Read error: Connection reset by peer]
cantstanya has quit [Remote host closed the connection]
cantstanya has joined #nixos
cfinch has joined #nixos
mkaito has quit [Quit: WeeChat 3.1]
<{^_^}> [nixpkgs] @fabaff opened pull request #120469 → python3Packages.python-picnic-api: init at 1.1.0 → https://github.com/NixOS/nixpkgs/pull/120469
<{^_^}> [nixpkgs] @Ericson2314 merged pull request #120461 → netbsd.common: just export the sources → https://github.com/NixOS/nixpkgs/pull/120461
zupo has joined #nixos
cfinch has quit [Remote host closed the connection]
cfinch has joined #nixos
cfinch has quit [Read error: Connection reset by peer]
KarlJoad has quit [Ping timeout: 240 seconds]
cfinch has joined #nixos
<{^_^}> [nixpkgs] @dotlambda merged pull request #120455 → imagemagick6: 6.9.12-3 -> 6.9.12-8 → https://github.com/NixOS/nixpkgs/pull/120455
KarlJoad has joined #nixos
ddellaco_ has joined #nixos
KarlJoad has quit [Client Quit]
shibboleth has joined #nixos
aaabbbbbbbbbb has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @Ericson2314 merged pull request #119833 → lib.systems.doubles.all: reorganize → https://github.com/NixOS/nixpkgs/pull/119833
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jimmiehansson has quit [Remote host closed the connection]
ddellaco_ has quit [Ping timeout: 252 seconds]
cfinch has quit [Read error: Connection reset by peer]
fendor has quit [Remote host closed the connection]
pushqrdx has quit [Remote host closed the connection]
pushqrdx has joined #nixos
echoa1s[m] has joined #nixos
<{^_^}> [nixpkgs] @erictapen pushed to release-20.09 « imagemagick6: 6.9.12-3 -> 6.9.12-8 »: https://git.io/JODwA
<{^_^}> [nixpkgs] @alyssais opened pull request #120470 → lib.systems.doubles.netbsd: expand → https://github.com/NixOS/nixpkgs/pull/120470
erasmas has quit [Quit: leaving]
Acou_Bass has quit [Quit: ZNC 1.8.2 - https://znc.in]
hyiltiz has quit [Ping timeout: 260 seconds]
sss has quit [Quit: WeeChat 3.1]
hyiltiz has joined #nixos
hyiltiz has joined #nixos
hyiltiz has quit [Changing host]
<{^_^}> [nixpkgs] @SFrijters opened pull request #120471 → openttd: 11.1.0 -> 11.1.1 → https://github.com/NixOS/nixpkgs/pull/120471
beertoagunfight has quit [Ping timeout: 252 seconds]
<{^_^}> [nixpkgs] @piegamesde opened pull request #120472 → python3Packages.{muscima, mung, omrdatasettools}: init → https://github.com/NixOS/nixpkgs/pull/120472
Acou_Bass has joined #nixos
ahmedelgabri has joined #nixos
growpotkin has joined #nixos
bn_work has quit [Quit: Connection closed for inactivity]
<ronthecookie> how/when does staging get merged into master?
<{^_^}> [nixpkgs] @dotlambda merged pull request #120456 → imagemagick: 7.0.11-6 -> 7.0.11-8 → https://github.com/NixOS/nixpkgs/pull/120456
<hexa-> ronthecookie: when it has stabilized
<Raito_Bezarius> if I have a nix shell with a dependency using src = ./some/local/path; does all derivations that depends on it will be rebuilt once I re-run the nix-shell?
<Raito_Bezarius> it seems like I'm not getting this behavior though I expect it
<Raito_Bezarius> (though if I change the version, it performs a rebuild)
<Raito_Bezarius> (but I'd like to do some editable package source thing)
ahmedelgabri has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @mweinelt merged pull request #120471 → openttd: 11.1.0 -> 11.1.1 → https://github.com/NixOS/nixpkgs/pull/120471
<ronthecookie> Raito_Bezarius: you mean you're doing something like .override or .overrideAttrs on a pkg and using that as a build input?
<Raito_Bezarius> ronthecookie: correct
<Raito_Bezarius> .overrideAttrs (old: { src = ./some/local/path; })
<Raito_Bezarius> I'm not using directly as a build input, this is overlayed somewhere
<Raito_Bezarius> and the thing which depends on it is used as a build input
<ronthecookie> oh I dunno then
<ronthecookie> maybe you could try using packageOverrides instead?
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #120458 → vim: add nvim-base16, lsp-colors-nvim → https://github.com/NixOS/nixpkgs/pull/120458
<Raito_Bezarius> ronthecookie: in a nix-shell ?
<Raito_Bezarius> I'd like everything to be contained in the shell.nix
<Raito_Bezarius> so I can share it with colleagues
<ronthecookie> yeah but never know if it'll work until you try :p https://nixos.org/manual/nixpkgs/stable/#sec-modify-via-packageOverrides
<Raito_Bezarius> that's not the point
ddellacosta has joined #nixos
<Raito_Bezarius> doing it this way might work, but it won't solve my problem of having it contained in the nix shell :)
<Raito_Bezarius> (and actually, I already have some setup like this for other stuff which ~works)
<ronthecookie> yeah I meant you should try it in the shell.nix
jmeredith has joined #nixos
<ronthecookie> you'll need to use nixpkgs.config.packageOverrides though unlike the user config.nix
<Raito_Bezarius> I'm trying now
<{^_^}> [nixpkgs] @mweinelt merged pull request #120469 → python3Packages.python-picnic-api: init at 1.1.0 → https://github.com/NixOS/nixpkgs/pull/120469
<Raito_Bezarius> changes are not picked up ronthecookie
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #120448 → tmux: fix cross-compilation → https://github.com/NixOS/nixpkgs/pull/120448
<ronthecookie> shame (although it'd be surprising if it did)
ddellacosta has quit [Ping timeout: 240 seconds]
<Raito_Bezarius> I'm pretty sure I was able to make it work in another circumstances
cfinch has joined #nixos
cfinch has quit [Read error: Connection reset by peer]
bennofs_ has joined #nixos
jesystani has joined #nixos
gustavderdrache has joined #nixos
<{^_^}> [nixpkgs] @mweinelt opened pull request #120474 → handlr: 0.5.0 -> 0.6.0 → https://github.com/NixOS/nixpkgs/pull/120474
<{^_^}> [nixpkgs] @aanderse opened pull request #120475 → redmine: 4.1.1 -> 4.1.2 → https://github.com/NixOS/nixpkgs/pull/120475
proofofkeags has quit [Ping timeout: 246 seconds]
ddellaco_ has joined #nixos
Qwerky_ has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #119285 → mautrix-signal: init at 0.1.1 → https://github.com/NixOS/nixpkgs/pull/119285
tomberek has quit [Quit: Connection closed]
<{^_^}> [nixpkgs] @aanderse merged pull request #119914 → nixos.vnstat: homedir -> statedir → https://github.com/NixOS/nixpkgs/pull/119914
Qwerky has quit [Ping timeout: 240 seconds]
shibboleth has quit [Quit: shibboleth]
sangoma has quit [Quit: WeeChat 3.1]
ddellaco_ has quit [Ping timeout: 240 seconds]
dev_mohe has joined #nixos
dev_mohe has quit [Client Quit]
<{^_^}> [nixpkgs] @erictapen opened pull request #120476 → maintainers: Change first name and mail of erictapen → https://github.com/NixOS/nixpkgs/pull/120476
stree has quit [Ping timeout: 252 seconds]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #120284 → python3Packages.rokuecp: init at 0.8.1 → https://github.com/NixOS/nixpkgs/pull/120284
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #120299 → esbuild: 0.11.12 -> 0.11.13 → https://github.com/NixOS/nixpkgs/pull/120299
<{^_^}> [nixpkgs] @globin pushed to structured-attrs « treewide: fix structured-attrs eval failures »: https://git.io/JODPq
lsix has quit [Ping timeout: 245 seconds]
supersandro2000 is now known as Guest38913
supersandro2000 has joined #nixos
jonringer has quit [Remote host closed the connection]
mbrgm_ has joined #nixos
mbrgm has quit [Ping timeout: 250 seconds]
mbrgm_ is now known as mbrgm
<Raito_Bezarius> huh, I'm trying to chain .override {}.overrideAttrs and it's failing with missing attr: overrideAttrs
<Raito_Bezarius> is it expected?
<Raito_Bezarius> ah nvm
<qyliss> (x.override {}).overrideAttrs
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #120308 → python3Packages.slack-sdk: 3.4.2 -> 3.5.0 → https://github.com/NixOS/nixpkgs/pull/120308
<Raito_Bezarius> parenthesis yes qyliss
<Raito_Bezarius> thanks!
Guest38913 has quit [Ping timeout: 240 seconds]
pushqrdx has quit [Remote host closed the connection]
nicoo has quit [Ping timeout: 240 seconds]
meh` has quit [Ping timeout: 246 seconds]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #120311 → prs: 0.2.7 -> 0.2.8 → https://github.com/NixOS/nixpkgs/pull/120311
Qwerky_ has quit [Remote host closed the connection]
stree has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #119962 → nheko: 0.8.1 -> 0.8.2 → https://github.com/NixOS/nixpkgs/pull/119962
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #120326 → python3Packages.ytmusicapi: 0.15.1 -> 0.16.0 → https://github.com/NixOS/nixpkgs/pull/120326
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #120337 → scheme-manpages: 2021-01-17 -> 2021-03-11 → https://github.com/NixOS/nixpkgs/pull/120337
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #120333 → python3Packages.sendgrid: 6.6.0 -> 6.7.0 → https://github.com/NixOS/nixpkgs/pull/120333
meh` has joined #nixos
quinn has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #120332 → python3Packages.twitterapi: 2.7.1 -> 2.7.2 → https://github.com/NixOS/nixpkgs/pull/120332
<{^_^}> [nixpkgs] @erictapen pushed to release-20.09 « imagemagick: 7.0.11-6 -> 7.0.11-8 »: https://git.io/JODXG
nicoo has joined #nixos
Qwerky has joined #nixos
<Raito_Bezarius> I tried overrideAttrs but it is not picked up
<Raito_Bezarius> so I simply overriden the stuff in attrs
<Raito_Bezarius> but ${edk2} makes it so that it is now desync'd
<{^_^}> [nixpkgs] @mweinelt merged pull request #120476 → maintainers: Change first name and mail of erictapen → https://github.com/NixOS/nixpkgs/pull/120476
<Raito_Bezarius> I tried to overlay edk2 but it does not get picked up neither
Qwerky has quit [Ping timeout: 240 seconds]
rail has joined #nixos
jesystani has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @mweinelt opened pull request #120477 → ajour: 1.0.0 -> 1.1.0 → https://github.com/NixOS/nixpkgs/pull/120477
<Raito_Bezarius> okay nuclear option seems to be working