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
<sterni> maralorn: you can't override stuff inside haskellPackages using overlays because it has its own fixed point and extend only fixes it to the top-level pkgs fix point
<sterni> maralorn: so what you have to do is write an overlay for nixpkgs which swaps out haskellPackages for an overriden version of haskellPackages
<sterni> I think passing overrides is similar to using overrideScope'
<sterni> but would have to check how it's implemented exactly
clime has joined #nixos
<maralorn> sterni: Great thanks!
<{^_^}> [nixpkgs] @petabyteboy opened pull request #115026 → Partially revert "pythonPackages.setuptools-rust: cleanup, add python… → https://github.com/NixOS/nixpkgs/pull/115026
<maralorn> btw, are you related to sternenseemann, sterni?
cosimone has quit [Ping timeout: 240 seconds]
justanotheruser has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #114717 → luakit: 2.2.1 -> 2.3 → https://github.com/NixOS/nixpkgs/pull/114717
supersandro2000 has quit [Disconnected by services]
supersandro2000 has joined #nixos
apache801 has joined #nixos
delan_ has joined #nixos
vk3wtf has quit [Ping timeout: 260 seconds]
puffnfresh has quit [Ping timeout: 260 seconds]
delan has quit [Ping timeout: 260 seconds]
<sterni> maralorn: I actually am the same person :p
<sterni> very related
<sterni> our relation is the identity relation
apache8080 has quit [Ping timeout: 276 seconds]
seku has quit [Quit: Connection closed]
<redmp> i'm not really understanding how overlays work for what i need ... they require changing how i import nixpkgs, but i already have the nixpkgs i need and a haskellPackages with my package attached to it.. i just want to overlay the nixpkgs to have my haskellPackages, heh.
<sterni> redmp: you can also just have the changed haskellPackages set in some random let binding if that works
<redmp> this worked: `elsewhere.nixpkgs // { haskellPackages = elsewhere.haskellPackages; }`
<sterni> redmp: better to use pkgs.extend for that
evanjs has quit [Read error: Connection reset by peer]
<redmp> sterni: i can't put the haskellPackages in a let binding because i'm returning the nixpkgs for use by nixops
<sterni> redmp: because if you happen to use a package from nixpkgs which depends on haskellPackages it will pull in the old unchanged one
mananamenos has quit [Ping timeout: 264 seconds]
<sterni> redmp: try pkgs.extend (self: super: { haskellPackages = elsewhere.haskellPackages; })
<redmp> that probably explains where all my disk space has bene going
<sterni> *nixpkgs.extend in that case of course
<{^_^}> [nixpkgs] @mweinelt merged pull request #114909 → python3Packages.pillow: 8.1.0 -> 8.1.1 → https://github.com/NixOS/nixpkgs/pull/114909
MmeQuignon has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #115027 → libspectrum: 1.4.4 -> 1.5.0 → https://github.com/NixOS/nixpkgs/pull/115027
evanjs has joined #nixos
<redmp> thanks, i'll try that
<redmp> quick question: are flakes replacing or complementing overlays?
<colemickens> neither.
<redmp> totally orthogonal then?
<colemickens> Basically. You might use flakes to reference/pull in overlays, though.
<redmp> so flakes are a pattern for pinning dependencies, and overlays are a pattern for combining .. stuff?
<colemickens> that's a pretty good take, yeah
puffnfresh has joined #nixos
vk3wtf has joined #nixos
orivej has joined #nixos
<redmp> sterni: "if you happen to use a package from nixpkgs which depends on haskellPackages it will pull in the old unchanged one" ... how can i tell when that happens, aside from longer build times and bigger nix stores?
<{^_^}> [nixpkgs] @mweinelt pushed 53 commits to staging-next: https://git.io/JqvPM
<redmp> i have maybe 5 or 6 projects that are all interrelated and pinned against eachother with ad-hoc fetchGit and whatnot .. it's starting to become unmaintainable, so i need to look into flakes and overlays soon
<redmp> but i had no idea it might be pulling in multiple generations of things incorrectly :/
<sterni> redmp: no easy way to detect it, you'll have to check the expression pretty much
<sterni> if you build machines from it you could check the closure of the resulting store path if the same package with the same version occurs multiple times with different hashes in the store path I think
<sterni> but that might happen naturally as well
<{^_^}> [nixpkgs] @ralph-amissah opened pull request #115028 → ldc: 1.24.0 -> 1.25.1 update (fixes broken) ldc and enable dub to build with alternative D compilers → https://github.com/NixOS/nixpkgs/pull/115028
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #114754 → umr: init at unstable-2021-02-18 → https://github.com/NixOS/nixpkgs/pull/114754
<{^_^}> [nixpkgs] @buckley310 opened pull request #115029 → brave: 1.20.110 -> 1.21.73 → https://github.com/NixOS/nixpkgs/pull/115029
<redmp> ok, but what i'm hearing is that there are correct ways of achieving overrides and incorrect ways, and the incorrect ways are prone to problems which could balloon the nix store
<{^_^}> [nixpkgs] @otavio opened pull request #115030 → cargo-cross: init at 0.2.1 → https://github.com/NixOS/nixpkgs/pull/115030
<redmp> as a beginner, this is intimidating
<sterni> redmp: and also not achieving what you want
<redmp> but it sounds like if i learn about overlays and reorganize my projects to combine using overlays, it should put me back on a better path w.r.t. nix store sizes and build times?
rajivr has joined #nixos
<sterni> redmp: say nixpkgs has packages a and b and a depends on b; you want to use a special flag for b so you override b
<sterni> redmp: if you do something like newNixpkgs = nixpkgs // { b = nixpkgs.b.override { … }; } a will not pick up on the change (how would it, you are just changing a set)
<sterni> with overlays you can basically inject stuff into the evaluation of nixpkgs where the dependencies are resolved etc. which makes a use the overriden b as an input like you'd want
<redmp> right, that makes sense
<redmp> instead of providing a tree, i'm providing a function which says "i'm part of a tree with holes"
<sterni> more or less, but the holes are just lazily evaluated :)
<sterni> it makes use of a concept from functional programming called fixed-point combinator
<sterni> but you don't need to necessarily understand it to write overlays
<{^_^}> [nixpkgs] @otavio opened pull request #115031 → cargo-limit: 0.0.6 -> 0.0.7 → https://github.com/NixOS/nixpkgs/pull/115031
<{^_^}> [nixpkgs] @petabyteboy closed pull request #115026 → Partially revert "pythonPackages.setuptools-rust: cleanup, add python… → https://github.com/NixOS/nixpkgs/pull/115026
clime has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #114501 → pythonPackages.sfepy: 2019.4 -> 2020.4 → https://github.com/NixOS/nixpkgs/pull/114501
<redmp> ok, the extend didn't work either... the nixpkgs has the correct nixpkgs.haskellPackages.my-lib on it, but when that goes into the environment as `NIX_PATH = "nixpkgs=${pkgs.path}";` it seems that the extension is lost
<redmp> (typo; `pkgs` is an alias of `nixpkgs` in the expression)
<redmp> i'll have to ro rearchitect this whole thing i guess; thanks anyhow
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #115022 → nodejs-10_x: build with icu67 → https://github.com/NixOS/nixpkgs/pull/115022
cmk_zzz_ has joined #nixos
mbrgm_ has joined #nixos
<sterni> redmp: yeah the you have to get the overlay into NIX_PATH as well
cmk_zzz has quit [Ping timeout: 264 seconds]
<sterni> there is a NIX_PATH entry for this which is also documented in the manual
m0rphism1 has quit [Ping timeout: 245 seconds]
mbrgm has quit [Ping timeout: 272 seconds]
mbrgm_ is now known as mbrgm
jkachmar has joined #nixos
sigmundv_ has quit [Read error: Connection reset by peer]
sigmundv_ has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #115004 → s2n: 0.10.23->1.0.0, rename package to s2n-tls → https://github.com/NixOS/nixpkgs/pull/115004
redmp has quit [Ping timeout: 276 seconds]
KreysDante[m] is now known as Dante[m]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #115031 → cargo-limit: 0.0.6 -> 0.0.7 → https://github.com/NixOS/nixpkgs/pull/115031
simba1 has quit [Ping timeout: 240 seconds]
Dante[m] is now known as KreysDante[m]
ahmedelgabri has joined #nixos
simba1 has joined #nixos
cole-h has quit [Quit: Goodbye]
mniip has quit [Ping timeout: 600 seconds]
pbb_ has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
cole-h has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #115021 → python3Packages.bleach: 3.2.1 -> 3.3.0 → https://github.com/NixOS/nixpkgs/pull/115021
pbb has joined #nixos
redmp has joined #nixos
bokononi3t has quit [Ping timeout: 264 seconds]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #115017 → python3Packages.dulwich: 0.20.18 -> 0.20.20 → https://github.com/NixOS/nixpkgs/pull/115017
<{^_^}> [nixpkgs] @peterhoeg merged pull request #114969 → kdeApplications.kamoso: init at 20.12.1 → https://github.com/NixOS/nixpkgs/pull/114969
ris has quit [Ping timeout: 260 seconds]
simba1 has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #115019 → nano: 5.6 -> 5.6.1 → https://github.com/NixOS/nixpkgs/pull/115019
ahmedelgabri has quit [Ping timeout: 258 seconds]
stree has quit [Ping timeout: 264 seconds]
cole-h has quit [Quit: Goodbye]
mcornick has joined #nixos
cole-h has joined #nixos
inkbottle has joined #nixos
cole-h has quit [Client Quit]
prsteele has joined #nixos
zebrag has quit [Ping timeout: 245 seconds]
cole-h has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #115032 → nats-streaming-server: 0.20.0 -> 0.21.0 → https://github.com/NixOS/nixpkgs/pull/115032
puffnfresh has quit [Ping timeout: 276 seconds]
<prsteele> hello, and apologies if there is a better channel --- I'm just getting started with Nix packaging, and I want to rebuild my local copy of Nixpkgs. The README points to good documentation on how I might contribute my changes, but I'd like to test them first. Any pointers to a doc on the build process?
puffnfresh has joined #nixos
<tpw_rules> nixpkgs-review is probably the most straightforward way
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #115030 → cargo-cross: init at 0.2.1 → https://github.com/NixOS/nixpkgs/pull/115030
<prsteele> thanks, I'll check that out
apache801 has quit [Ping timeout: 276 seconds]
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage-packages.nix: automatic Haskell package set update »: https://git.io/JqvMc
cole-h has quit [Quit: Goodbye]
redmp has quit [Ping timeout: 260 seconds]
stree has joined #nixos
sigmundv__ has joined #nixos
<prsteele> channel is pretty quiet, so for posterity I'm going to try to use https://nixos.wiki/wiki/Nixpkgs/Create_and_debug_packages which seems promising
<tpw_rules> afaik nixpkgs-review has obsoleted nox-review
sigmundv_ has quit [Ping timeout: 264 seconds]
gustavderdrache has quit [Quit: Leaving.]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #114530 → python37: remove win64 workaround to fix aarch64-darwin → https://github.com/NixOS/nixpkgs/pull/114530
<{^_^}> [nixpkgs] @jonringer opened pull request #115034 → solc: 0.7.4 -> 0.8.2 → https://github.com/NixOS/nixpkgs/pull/115034
<prsteele> is there a way to point to the derivation of a package? Take something like irrsi that can be installed --- can I ask nix for the expressions that built it? (I'm trying to reverse engineer how something is built)
mcornick has quit [Remote host closed the connection]
Gohla has quit [Quit: Bye.]
<clever> prsteele: nix show-derivation nixpkgs#irssi
mcornick has joined #nixos
hmi has quit [Ping timeout: 265 seconds]
<clever> prsteele: it will run builder, with args, everything in env is an env var, and the things under inputDrvs will be build, and placed in the sandbox, the things in inputSrcs are raw source files
<clever> prsteele: you can also `nix edit nixpkgs#irssi` to view the nix expr that created those directions
<prsteele> that's probably even closer to what I want, thanks
<prsteele> to avoid the X|Y problem, I have a functioning derivation and I'm trying to figure out how to get the arguments it expects
Gohla has joined #nixos
<prsteele> but `nix edit` was *exactly* what I was asking for, thanks
<tpw_rules> callPackage?
<{^_^}> [nixpkgs] @r-ryantm opened pull request #115035 → mediastreamer: 4.4.24 -> 4.4.32 → https://github.com/NixOS/nixpkgs/pull/115035
<prsteele> no, I don't think I want callPackage --- I think I need to provide a bunch of arguments to get something I can pass to callPackage
<prsteele> well I don't think, I know, but I'm trying to figure out how to get my hands on those arguments
<{^_^}> [nixpkgs] @fortuneteller2k opened pull request #115036 → papirus-icon-theme: 20210201 -> 20210302 → https://github.com/NixOS/nixpkgs/pull/115036
<{^_^}> [nixpkgs] @r-ryantm opened pull request #115037 → meteor: 1.12 -> 2.1 → https://github.com/NixOS/nixpkgs/pull/115037
<tpw_rules> what do you mean?
<tpw_rules> callPackage looks at the arguments your function takes and provides those arguments, more or less
sigmundv__ has quit [Read error: Connection reset by peer]
hmi has joined #nixos
<prsteele> it is definitely possible I underestimated how much magic there is in callPackage
gustavderdrache has joined #nixos
<tpw_rules> grr it is so inconvenient that search no longer works on git
<tpw_rules> didn't someone set up some sort of online grep thing?
mcornick has quit [Quit: bbiab]
<tpw_rules> anyway yes as long as you use the callPackage from haskellPackages it should just work™
fps_ has quit [Ping timeout: 260 seconds]
<prsteele> okay I was about to say "it looks like haskellPackages overrides callPackage"
skrzyp has quit [Ping timeout: 276 seconds]
sterni has quit [Ping timeout: 265 seconds]
dbmikus has quit [Ping timeout: 264 seconds]
<tpw_rules> for real though, didn't someone set up a ripgrep instance or something for nixpkgs?
<prsteele> thanks for your help. I'm going to try to work backwords and figure out where things like `self` come from there
<tpw_rules> i believe it's an overlay
vldn has quit [Remote host closed the connection]
<prsteele> thanks for that keyword, reading https://nixos.wiki/wiki/Overlays
<{^_^}> [nixpkgs] @r-ryantm opened pull request #115038 → mongodb-compass: 1.24.6 -> 1.25.0 → https://github.com/NixOS/nixpkgs/pull/115038
<prsteele> (I've been successful using Nixos so far as an end user, now I'm trying to figure out how to actually use it to be productive)
<prsteele> (and I need a newer version of that package than is available in nixpkgs, and the new version has new dependencies)
fps has joined #nixos
<{^_^}> [nixpkgs] @Ericson2314 merged pull request #114999 → buildPythonPackage: Fix after #112276 → https://github.com/NixOS/nixpkgs/pull/114999
sterni has joined #nixos
apache801 has joined #nixos
skrzyp has joined #nixos
<andoriyu> okay, i guess issue with my serial over otg is that dwc2 overlay is not applied
<clever> andoriyu: the dtoverlay= doesnt work when using u-boot
<andoriyu> yup, that's what I've discovered. do I have to use u-boot?
<clever> andoriyu: you can switch over to using the raw firmware
<{^_^}> [nixpkgs] @SuperSandro2000 opened pull request #115039 → topgrade: 6.6.0 -> 6.7.0 → https://github.com/NixOS/nixpkgs/pull/115039
<clever> andoriyu: https://gist.github.com/cleverca22/1820062745c727343458ff6300aa88bd and make sure the fat32 is mounted to /boot before you nixos-rebuild switch
<clever> andoriyu: line 5 and 24 must also refer to the right model
<clever> that will swap you over to no u-boot, with the firmware directly loading the rpi fork of linux, and then booting into nixos
<andoriyu> version as in version of rpi? i.e. for zero it's 0 ?
<clever> probably
<clever> maybe version=0 and _rpi1
<andoriyu> I kniw _rpi0 is just an alias for rpi1, so probably either one is fine
<clever> they are the identical SoC
<clever> the only difference is the addition of wifi and the absence of the ethernet/hub
<clever> which the firmware will deal with for you, by loading diff dtb's
<clever> oh right, i forgot a step
<clever> you need to ensure the https://github.com/raspberrypi/firmware/tree/master/boot/overlays are in /boot/overlays
<andoriyu> how do I do that?
<clever> just clone it, and cp -r
<clever> i havent made a clean way to do it right yet
<andoriyu> well, I mean with nix expression I'm trying to build a sd card image
<{^_^}> [nixpkgs] @SuperSandro2000 opened pull request #115040 → hound: unstable-2021-01-26 -> 0.4.0 → https://github.com/NixOS/nixpkgs/pull/115040
<andoriyu> so https://github.com/illegalprime/nixos-on-arm this old version worked with u-boot btw
<clever> andoriyu: sdImage.populateFirmwareCommands = "shell code";
<andoriyu> ah
<clever> andoriyu: this shell code gets ran while building the fat32 partition on the sd image, so you can insert a `cp -r ${firmware}/overlays .` cmd
<andoriyu> Thanks
h0m1 has quit [Ping timeout: 240 seconds]
slack1256 has joined #nixos
h0m1 has joined #nixos
<andoriyu> what happened to populateBootCommands?
dbmikus has joined #nixos
<colemickens> nixos-on-arm has extra goodies for the otg stuff https://github.com/illegalprime/nixos-on-arm/blob/master/machines/raspberrypi-zero/otg.nix
xwvvvvwx has quit [Ping timeout: 260 seconds]
<clever> boot.loader.raspberryPi.firmwareConfig = "dtoverlay=dwc2";
<andoriyu> yeah, i have that. In fact, I have whole otg.nix.
<clever> colemickens: that may be unreliable, depending on what the u-boot dtb is doing
nek0 has quit [Ping timeout: 264 seconds]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #114476 → yabridge, yabridgectl: 3.0.0 -> 3.0.1 → https://github.com/NixOS/nixpkgs/pull/114476
<andoriyu> nix-on-arm builds fine and works. But it's 2 years old...
<andoriyu> Which I guess 2 years ago what nix-on-arm did worked, and now it doesn't.
dbmikus has quit [Ping timeout: 276 seconds]
Sigyn has quit [*.net *.split]
Lord_of_Life_ has joined #nixos
<andoriyu> well something is building
mcornick has joined #nixos
Lord_of_Life has quit [Ping timeout: 264 seconds]
Lord_of_Life_ is now known as Lord_of_Life
xwvvvvwx has joined #nixos
nek0 has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 opened pull request #115041 → R: switch to pname + version → https://github.com/NixOS/nixpkgs/pull/115041
Sigyn has joined #nixos
brown121407 has quit [Ping timeout: 260 seconds]
swflint has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #111701 → llvmPackages_11.compiler-rt: fix build on darwin → https://github.com/NixOS/nixpkgs/pull/111701
mkaito has quit [Quit: WeeChat 3.0.1]
babbaj[m] has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #114589 → erlang: 23.1.4 -> 23.2.6, 22.3 -> 22.3.4.16, 21.3.8.3 -> 21.3.8.21 → https://github.com/NixOS/nixpkgs/pull/114589
justan0theruser has joined #nixos
justanotheruser has quit [Ping timeout: 240 seconds]
brown121407 has joined #nixos
brown121407 has joined #nixos
brown121407 has quit [Changing host]
swflint has joined #nixos
raghavgururajan has quit [Ping timeout: 260 seconds]
dingenskirchen has quit [Ping timeout: 246 seconds]
risson has quit [Ping timeout: 260 seconds]
SOO7 has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #115039 → topgrade: 6.6.0 -> 6.7.0 → https://github.com/NixOS/nixpkgs/pull/115039
prsteele has quit [Quit: Leaving]
<{^_^}> [nixpkgs] @maralorn opened pull request #115042 → nix-output-monitor: 1.0.1.1 -> 1.0.2.0 → https://github.com/NixOS/nixpkgs/pull/115042
<{^_^}> [nixpkgs] @chuahou opened pull request #115043 → Add stork → https://github.com/NixOS/nixpkgs/pull/115043
ahmedelgabri has joined #nixos
SOO7 has joined #nixos
berberman_ has joined #nixos
dbmikus has joined #nixos
dingenskirchen has joined #nixos
mcornick has quit [Quit: zzzzzzzz]
berberman has quit [Ping timeout: 272 seconds]
ahmedelgabri has quit [Ping timeout: 272 seconds]
c3hou has joined #nixos
evils has joined #nixos
risson has joined #nixos
ddellacosta has joined #nixos
<{^_^}> [nixpkgs] @marsam merged pull request #115014 → libimagequant: 2.14.0 -> 2.14.1 → https://github.com/NixOS/nixpkgs/pull/115014
ddellacosta has quit [Ping timeout: 264 seconds]
m1cr0man has quit [Ping timeout: 260 seconds]
cYmen__ has quit [Ping timeout: 240 seconds]
globin_ has quit [Ping timeout: 265 seconds]
supersandro2000 has quit [Quit: The Lounge - https://thelounge.chat]
supersandro2000 has joined #nixos
stree has quit [Ping timeout: 276 seconds]
<{^_^}> [nixpkgs] @lionello opened pull request #115045 → quantum-espresso: enable on darwin → https://github.com/NixOS/nixpkgs/pull/115045
cYmen_ has joined #nixos
globin_ has joined #nixos
m1cr0man has joined #nixos
stree has joined #nixos
Dr8128 has quit [Ping timeout: 245 seconds]
AlpineLlama has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
<{^_^}> [nixpkgs] @peterhoeg opened pull request #115046 → broadlink-cli: 0.15 -> 0.16 → https://github.com/NixOS/nixpkgs/pull/115046
AlpineLlama has joined #nixos
ddellacosta has joined #nixos
raghavgururajan has joined #nixos
andreas303 has quit [Ping timeout: 268 seconds]
andreas303 has joined #nixos
ddellacosta has quit [Ping timeout: 276 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #115047 → ortp: 4.4.24 -> 4.4.32 → https://github.com/NixOS/nixpkgs/pull/115047
apache801 has quit [Ping timeout: 264 seconds]
<{^_^}> Channel nixos-20.09-small advanced to https://github.com/NixOS/nixpkgs/commit/c14bb3039f2 (from 15 hours ago, history: https://channels.nix.gsc.io/nixos-20.09-small)
dbmikus has quit [Ping timeout: 260 seconds]
apache801 has joined #nixos
endformationage has quit [Quit: WeeChat 2.9]
inkbottle has quit [Quit: Konversation terminated!]
oldandwise has joined #nixos
oldandwise has quit [Client Quit]
oldandwise has joined #nixos
ddellacosta has joined #nixos
Supersonic112 has joined #nixos
cmk_zzz has joined #nixos
Supersonic has quit [Ping timeout: 258 seconds]
Supersonic112 is now known as Supersonic
ddellacosta has quit [Ping timeout: 245 seconds]
cmk_zzz_ has quit [Ping timeout: 265 seconds]
redmp has joined #nixos
apache801 has quit [Ping timeout: 245 seconds]
mniip has joined #nixos
lstanley has joined #nixos
skiffr has joined #nixos
jbox has quit [Quit: WeeChat 3.0.1]
jbox has joined #nixos
lord| has quit [Quit: https://i.imgur.com/xacQ09F.mp4]
ahmedelgabri has joined #nixos
oldandwise has quit [Ping timeout: 245 seconds]
ddellacosta has joined #nixos
ahmedelgabri has quit [Ping timeout: 240 seconds]
ddellacosta has quit [Ping timeout: 246 seconds]
dbmikus has joined #nixos
orivej has quit [Ping timeout: 245 seconds]
dbmikus has quit [Ping timeout: 245 seconds]
<RyuKurisu[m]> <levels "I kind of missed that setting on"> And did it work? Maybe a great addition to the NixOS wiki if it did? (I haven't finished reading the backlog)
slack1256 has quit [Ping timeout: 256 seconds]
gustavderdrache has quit [Quit: Leaving.]
sb0 has joined #nixos
<sb0> hi. i bricked a headless raspberry pi with incorrect network settings, and I don't have a suitable hdmi monitor to fix it. how can I edit the sd card to make it boot an older generation?
<sb0> I tried changing the init= string in cmdline.txt to an older init, but that did not work
<DigitalKiwi> can you attach a keyboard?
orivej has joined #nixos
<DigitalKiwi> might be able to do it without a monitor if you just up arrow the right amount of times
<DigitalKiwi> that's how i used to start sshd >.>
<DigitalKiwi> just type very carefully lol
stree has quit [Ping timeout: 260 seconds]
megawatt has joined #nixos
apache801 has joined #nixos
palo1 has joined #nixos
stree has joined #nixos
sangoma has joined #nixos
palo has quit [Ping timeout: 256 seconds]
palo1 is now known as palo
growpotkin has quit [Quit: ZNC 1.8.2 - https://znc.in]
skiffr has quit [Quit: WeeChat 2.9]
ronthecookie has quit [Excess Flood]
ronthecookie has joined #nixos
<{^_^}> cleverca22/not-os#12 (by Mic92, 2 days ago, open): add MIT license
<clever> dang, a ~3 year old issue!
ddellacosta has joined #nixos
<clever> Mic92: checking the git history, the only change paumr did was http -> https in the readme, and matthewbauer just changed `rm` -> `rm -f` in linux-build-slave.nix
<clever> do such minor changes really need them to agree to the new license?
apache801 has quit [Ping timeout: 245 seconds]
Dotz0cat has quit [Ping timeout: 245 seconds]
<Mic92> clever: A lawyer would probably say yes, but I don't think they would sue you for this.
<clever> and its kind of hard to re-write the http -> https change, without it being an identical copy, lol
<Mic92> clever: I can also send both an email an email if you want.
ddellacosta has quit [Ping timeout: 245 seconds]
<clever> sure
tomberek has joined #nixos
<Mic92> clever: I am using your project now in my research for full integration tests
Dotz0cat has joined #nixos
clime has joined #nixos
_novafacing has joined #nixos
waleee-cl has quit [Quit: Connection closed for inactivity]
<sb0> DigitalKiwi: hmm maybe, should I also press enter afterwards?
<DigitalKiwi> sb0: yeah
<sb0> DigitalKiwi: doesn't seem to work, isn't there another key I am required to press in order to get the boot menu?
<sb0> it keeps booting straight into the broken generation
bahamas has joined #nixos
vidbina has joined #nixos
<DigitalKiwi> idk :(
<DigitalKiwi> can you no look rollback?
<sb0> ah and I don't have u-boot, this is rpi4
<sb0> I cannot login
_bin has quit [Ping timeout: 240 seconds]
graf_blutwurst has joined #nixos
<DigitalKiwi> doesn't it boot to a login prompt even if you can't see it?
grawlinson has quit [Quit: SIGTERM]
<DigitalKiwi> samueldr clever
chhou has joined #nixos
c3hou has quit [Remote host closed the connection]
simba1 has joined #nixos
<sb0> aha, got it to work
c3hou has joined #nixos
<sb0> via editing init= in cmdline.txt
<sb0> it turns out that the first init I had tried had been GC'd, even though it still had an entry in /boot/old
<sb0> that's why it didn't work the first time
chhou has quit [Ping timeout: 265 seconds]
<sb0> nixos is really cool. couldn't have done this on other distros :)
mallox has joined #nixos
rdk31 has joined #nixos
_bin has joined #nixos
AndroUser2 has quit [Ping timeout: 245 seconds]
cole-h has joined #nixos
dbmikus has joined #nixos
ddellacosta has joined #nixos
kaliumxyz has quit [Ping timeout: 265 seconds]
jbox has quit [Quit: WeeChat 3.0.1]
lord| has joined #nixos
cfricke has joined #nixos
ddellacosta has quit [Ping timeout: 245 seconds]
<{^_^}> [nixpkgs] @peterhoeg merged pull request #115046 → broadlink-cli: 0.15 -> 0.16 → https://github.com/NixOS/nixpkgs/pull/115046
heywoodlh has quit [Ping timeout: 245 seconds]
kaliumxyz has joined #nixos
grawlinson has joined #nixos
ahmedelgabri has joined #nixos
orivej has quit [Ping timeout: 246 seconds]
ahmedelgabri has quit [Ping timeout: 240 seconds]
redmp has quit [Ping timeout: 276 seconds]
vidbina has quit [Ping timeout: 260 seconds]
mananamenos has joined #nixos
dbmikus has quit [Ping timeout: 240 seconds]
lord| has quit [Quit: https://i.imgur.com/xacQ09F.mp4]
saschagrunert has joined #nixos
riksteri has joined #nixos
freeman42x[m]_ has joined #nixos
ahmedelgabri has joined #nixos
dbmikus has joined #nixos
vidbina has joined #nixos
cript0nauta has quit [Ping timeout: 245 seconds]
ahmedelgabri has quit [Ping timeout: 272 seconds]
kaliumxyz has quit [Ping timeout: 264 seconds]
ahmedelgabri has joined #nixos
dbmikus has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @adisbladis opened pull request #115048 → python2Packages.requests: Unbreak → https://github.com/NixOS/nixpkgs/pull/115048
lord| has joined #nixos
ahmedelgabri has quit [Ping timeout: 240 seconds]
ddellacosta has joined #nixos
kaliumxyz has joined #nixos
simba1 has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @danieldk opened pull request #115049 → python3Packages.etebase: 0.31.1 -> 0.31.2, switch away from buildRustPackage → https://github.com/NixOS/nixpkgs/pull/115049
respawn_ has joined #nixos
kaliumxyz has quit [Remote host closed the connection]
ddellacosta has quit [Ping timeout: 256 seconds]
ahmedelgabri has joined #nixos
simba1 has joined #nixos
lord| has quit [Quit: https://i.imgur.com/xacQ09F.mp4]
lord| has joined #nixos
civodul has joined #nixos
lsix has joined #nixos
ece has quit [Read error: Connection reset by peer]
ece has joined #nixos
kaliumxyz has joined #nixos
vidbina has quit [Ping timeout: 256 seconds]
fendor has joined #nixos
heywoodlh has joined #nixos
<{^_^}> [nixpkgs] @adisbladis merged pull request #115048 → python2Packages.requests: Unbreak → https://github.com/NixOS/nixpkgs/pull/115048
<{^_^}> [nixpkgs] @Mic92 opened pull request #115050 → python3.pkgs.coinmarketcap: remove → https://github.com/NixOS/nixpkgs/pull/115050
ManiacOfMadness has joined #nixos
dbmikus has joined #nixos
c3hou has quit [Quit: Left to pet cats]
<Ke> how can one remove entries from /nix/var/nix/profiles/per-user/root/channels/
<{^_^}> [nixpkgs] @siraben opened pull request #115051 → treewide (darwin): fix or enable darwin build for many packages → https://github.com/NixOS/nixpkgs/pull/115051
<Ke> it's apparently a part of user-environment package
<Ke> can I make that package somehow declarative?
<Ke> based on system
dbmikus has quit [Ping timeout: 265 seconds]
<Ke> environment.etc.profiles/per-user/${name}" maybe?
avaq has joined #nixos
<Ke> I guess I could mkForce that, but seems painful
stree has quit [Ping timeout: 265 seconds]
zupo has joined #nixos
<{^_^}> [nixpkgs] @fgaz opened pull request #115052 → lmdbxx: switch to active fork, 0.9.14.0 -> 1.0.0; nheko: 0.8.1 -> ??? → https://github.com/NixOS/nixpkgs/pull/115052
apteryx_ has joined #nixos
apteryx has quit [Killed (kornbluth.freenode.net (Nickname regained by services))]
apteryx_ is now known as apteryx
sangoma has quit [Quit: WeeChat 3.0]
<{^_^}> [nixpkgs] @vbgl pushed to master « ocamlPackages.bigarray-compat: use Dune 2 »: https://git.io/JqfI1
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jiribenes_ has joined #nixos
<{^_^}> [nixpkgs] @NinjaTrappeur opened pull request #115053 → pleroma-otp: 2.2.2 -> 2.3.0 → https://github.com/NixOS/nixpkgs/pull/115053
respawn_ has quit [Quit: Leaving]
parseval_ has joined #nixos
oharvey_ has joined #nixos
tnks_ has joined #nixos
ynotperez_ has joined #nixos
ajmcmiddlin_ has joined #nixos
thoughtpolice_ has joined #nixos
mpickering_ has joined #nixos
Tritlo_ has joined #nixos
edwardk_ has joined #nixos
ggp0647 has joined #nixos
illustris_ has joined #nixos
wildsebastian_ has joined #nixos
atriq has joined #nixos
midchildan_ has joined #nixos
aria_ has joined #nixos
jmercouris_ has joined #nixos
visl_ has joined #nixos
georgyo_ has joined #nixos
bgupta_ has joined #nixos
dgpratt_ has joined #nixos
typetetris_ has joined #nixos
ocharles_ has joined #nixos
steveeJ_ has joined #nixos
yrashk_ has joined #nixos
asymmetric_ has joined #nixos
belst_ has joined #nixos
manveru_ has joined #nixos
cz3_ has joined #nixos
betawaffle_ has joined #nixos
mgsk__ has joined #nixos
sneakweb__ has joined #nixos
sorear_ has joined #nixos
Shados_ has joined #nixos
mog- has joined #nixos
simba1 has quit [Ping timeout: 240 seconds]
infinisi1 has joined #nixos
omnigoat_ has joined #nixos
higherorder__ has joined #nixos
englishm__ has joined #nixos
lvrp16_ has joined #nixos
amfl_ has joined #nixos
lopsided98_ has joined #nixos
XgFgX has joined #nixos
XgF has quit [Disconnected by services]
ztrawhcse has joined #nixos
tazjin_ has joined #nixos
nyaanotech has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #115054 → python37Packages.azure-mgmt-containerservice: 14.0.0 -> 15.0.0 → https://github.com/NixOS/nixpkgs/pull/115054
GlennS has joined #nixos
Xena has joined #nixos
_Qubasa has joined #nixos
tomcur_ has joined #nixos
NaN-irc_ has joined #nixos
tom39291_ has joined #nixos
bkv has joined #nixos
weechat3 has joined #nixos
litschio has joined #nixos
amfl has quit [Ping timeout: 240 seconds]
amfl_ is now known as amfl
sylvain has joined #nixos
bar_ has joined #nixos
zml1 has joined #nixos
morr_ has joined #nixos
wouter2 has joined #nixos
nikola has joined #nixos
hax404_ has joined #nixos
gerschtli2 has joined #nixos
ashkitte1 has joined #nixos
thonkpod_ has joined #nixos
nextloop1 has joined #nixos
beaky_ has joined #nixos
simba1 has joined #nixos
swflint has quit [Ping timeout: 264 seconds]
eri has joined #nixos
eri is now known as Guest23381
dexter has joined #nixos
hexagoxe- has joined #nixos
freeman42x[m]1 has joined #nixos
kinroy1 has joined #nixos
S0rin_ has joined #nixos
comex_ has joined #nixos
wirew0rm2 has joined #nixos
edwardk has quit [Disconnected by services]
edwardk_ is now known as edwardk
swflint has joined #nixos
stree has joined #nixos
Aleksejs_Home has joined #nixos
cz3 has quit [Disconnected by services]
cz3_ is now known as cz3
<eyJhb> abathur: If I run the script you provided with resholve, then `/usr/sbin/smartctl` will be converted to `/usr/sbin//nix/store/..../` even with the fix. Is there anything I can do?
<eyJhb> Atm. I have just done `substituteInPlace smartmon.sh --replace '/usr/sbin/smartctl' 'smartctl'`
vidbina has joined #nixos
S0rin_ has quit [Quit: WeeChat 2.3]
S0rin_ has joined #nixos
S0rin_ has quit [Client Quit]
S0rin_ has joined #nixos
freeman42x[m] has quit [*.net *.split]
f0x2 has quit [*.net *.split]
jess has quit [*.net *.split]
PorkySpine has quit [*.net *.split]
tom39291 has quit [*.net *.split]
lopsided98 has quit [*.net *.split]
Qubasa has quit [*.net *.split]
samhza has quit [*.net *.split]
illustris has quit [*.net *.split]
snajpa has quit [*.net *.split]
Glenn has quit [*.net *.split]
georgyo has quit [*.net *.split]
bgupta has quit [*.net *.split]
omnigoat has quit [*.net *.split]
parseval has quit [*.net *.split]
tazjin has quit [*.net *.split]
belst has quit [*.net *.split]
betawaffle has quit [*.net *.split]
elibrokeit has quit [*.net *.split]
mog has quit [*.net *.split]
litschi has quit [*.net *.split]
bqv has quit [*.net *.split]
gerschtli1 has quit [*.net *.split]
Cadey has quit [*.net *.split]
Shados has quit [*.net *.split]
ggp0647- has quit [*.net *.split]
higherorder_ has quit [*.net *.split]
dexterfoo has quit [*.net *.split]
nikola4 has quit [*.net *.split]
Taneb has quit [*.net *.split]
asymmetric has quit [*.net *.split]
infinisil has quit [*.net *.split]
nyanotech has quit [*.net *.split]
thoughtpolice has quit [*.net *.split]
sorear has quit [*.net *.split]
thonkpod has quit [*.net *.split]
manveru has quit [*.net *.split]
ynotperez has quit [*.net *.split]
yrashk has quit [*.net *.split]
ajmcmiddlin has quit [*.net *.split]
steveeJ has quit [*.net *.split]
typetetris has quit [*.net *.split]
sneakweb_ has quit [*.net *.split]
mgsk has quit [*.net *.split]
ocharles has quit [*.net *.split]
englishm_ has quit [*.net *.split]
wouter1 has quit [*.net *.split]
wirew0rm1 has quit [*.net *.split]
woffs has quit [*.net *.split]
diamondburned has quit [*.net *.split]
tdeo has quit [*.net *.split]
Aleksejs has quit [*.net *.split]
jmercouris has quit [*.net *.split]
mpickering has quit [*.net *.split]
Tritlo has quit [*.net *.split]
eri451 has quit [*.net *.split]
lvrp16 has quit [*.net *.split]
visl has quit [*.net *.split]
S0rin has quit [*.net *.split]
midchildan has quit [*.net *.split]
dgpratt has quit [*.net *.split]
tnks has quit [*.net *.split]
ashkitten has quit [*.net *.split]
NaN-irc has quit [*.net *.split]
myme has quit [*.net *.split]
hax404 has quit [*.net *.split]
hexagoxel has quit [*.net *.split]
wildsebastian has quit [*.net *.split]
oharvey has quit [*.net *.split]
aria has quit [*.net *.split]
sephii has quit [*.net *.split]
morr has quit [*.net *.split]
tomcur has quit [*.net *.split]
beaky has quit [*.net *.split]
weechat_1 has quit [*.net *.split]
kinroy has quit [*.net *.split]
nextloop has quit [*.net *.split]
zml has quit [*.net *.split]
comex has quit [*.net *.split]
asymmetric_ is now known as asymmetric
mog- is now known as mog
hexagoxe- is now known as hexagoxel
illustris_ is now known as illustris
thoughtpolice_ is now known as thoughtpolice
parseval_ is now known as parseval
freeman42x[m]_ is now known as freeman42x[m]
ynotperez_ is now known as ynotperez
georgyo_ is now known as georgyo
bkv is now known as bqv
jmercouris_ is now known as jmercouris
mpickering_ is now known as mpickering
midchildan_ is now known as midchildan
Tritlo_ is now known as Tritlo
bgupta_ is now known as bgupta
sorear_ is now known as sorear
ajmcmiddlin_ is now known as ajmcmiddlin
omnigoat_ is now known as omnigoat
yrashk_ is now known as yrashk
manveru_ is now known as manveru
oharvey_ is now known as oharvey
steveeJ_ is now known as steveeJ
visl_ is now known as visl
aria_ is now known as aria
typetetris_ is now known as typetetris
ocharles_ is now known as ocharles
lvrp16_ is now known as lvrp16
tnks_ is now known as tnks
wildsebastian_ is now known as wildsebastian
mgsk__ is now known as mgsk
dgpratt_ is now known as dgpratt
jonringer has quit [Ping timeout: 240 seconds]
diamondburned has joined #nixos
tdeo has joined #nixos
samhza has joined #nixos
<{^_^}> [nixpkgs] @peterhoeg opened pull request #115055 → deluge: shut up ngettext error on webui start → https://github.com/NixOS/nixpkgs/pull/115055
myme has joined #nixos
swflint has quit [Ping timeout: 246 seconds]
stree has quit [Excess Flood]
S0rin_ has quit [Client Quit]
stree has joined #nixos
S0rin has joined #nixos
swflint has joined #nixos
simba1 has quit [Ping timeout: 240 seconds]
zupo has joined #nixos
Boomerang has joined #nixos
simba1 has joined #nixos
atriq is now known as Taneb
j0ni[m] has quit [Quit: Idle for 30+ days]
d4rkshad0w has quit [Quit: Idle for 30+ days]
ram19890[m] has quit [Quit: Idle for 30+ days]
CodeBitCookie[m] has quit [Quit: Idle for 30+ days]
anonymouserobot[ has quit [Quit: Idle for 30+ days]
hiro98 has joined #nixos
hzertez7[m] has quit [Quit: Idle for 30+ days]
enick_980 has quit [Quit: Idle for 30+ days]
simba1 has quit [Ping timeout: 272 seconds]
andymandias_ has quit [Quit: ZNC 1.8.1 - https://znc.in]
andymandias has joined #nixos
beaky_ is now known as beaky
simba1 has joined #nixos
fendor has quit [Remote host closed the connection]
fendor has joined #nixos
<madonius[m]> the other day I stumbled upon a script/widget that adds the "pending updates" in the waybar. Now I can not find it?
woffs has joined #nixos
<madonius[m]> * the other day I stumbled upon a script/widget that adds the "pending updates" in the waybar. Now I can not find it. Anyone an Idea?
PorkySpine has joined #nixos
fendor_ has joined #nixos
fendor has quit [Ping timeout: 260 seconds]
nixuser has joined #nixos
turlando has joined #nixos
ashkitte1 is now known as ashkitten
attila_lendvai has joined #nixos
attila_lendvai has joined #nixos
attila_lendvai has quit [Changing host]
jess has joined #nixos
<{^_^}> [nix] @DavHau opened pull request #4603 → improve man page for nix.conf (builders) → https://github.com/NixOS/nix/pull/4603
sigmundv__ has joined #nixos
<nixbitcoin> Is it possible to run firefox with wayland inside dwm?
berberman has joined #nixos
berberman_ has quit [Ping timeout: 272 seconds]
ManiacOfMadness has quit [Ping timeout: 258 seconds]
<{^_^}> [nixpkgs] @danieldk opened pull request #115056 → exa: remove perl dependency → https://github.com/NixOS/nixpkgs/pull/115056
jimmiehansson has joined #nixos
ManiacOfMadness has joined #nixos
ddellacosta has joined #nixos
ManiacOfMadness has quit [Ping timeout: 258 seconds]
<{^_^}> [nixpkgs] @danieldk opened pull request #115057 → wrangler: build against system OpenSSL → https://github.com/NixOS/nixpkgs/pull/115057
ddellacosta has quit [Ping timeout: 246 seconds]
<{^_^}> [nixpkgs] @bb2020 closed pull request #114581 → nixos/minidlna: add startupDelay option → https://github.com/NixOS/nixpkgs/pull/114581
<{^_^}> [nixpkgs] @maralorn merged pull request #115042 → nix-output-monitor: 1.0.1.1 -> 1.0.2.0 → https://github.com/NixOS/nixpkgs/pull/115042
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
makergrl has joined #nixos
freeman42x[m] has quit [Quit: Connection closed for inactivity]
megawatt has left #nixos [#nixos]
<{^_^}> [nixpkgs] @aforemny opened pull request #115058 → Update email address → https://github.com/NixOS/nixpkgs/pull/115058
<{^_^}> [nixpkgs] @aforemny closed pull request #115058 → Update email address → https://github.com/NixOS/nixpkgs/pull/115058
<{^_^}> [nixpkgs] @markus1189 opened pull request #115059 → aws-vault: install completions → https://github.com/NixOS/nixpkgs/pull/115059
<{^_^}> [nixpkgs] @aforemny opened pull request #115060 → maintainers: update my email address → https://github.com/NixOS/nixpkgs/pull/115060
m0rphism1 has joined #nixos
clime has quit [Ping timeout: 276 seconds]
<{^_^}> [nixpkgs] @kalekseev opened pull request #115061 → mailhog: fix --version output → https://github.com/NixOS/nixpkgs/pull/115061
XgFgX is now known as XgF
hiro98 has quit [Quit: hiro98]
sb0 has quit [Quit: Leaving]
<{^_^}> [nixpkgs] @danieldk merged pull request #114009 → [20.09] _1password-gui: 0.9.9-3 -> 0.9.13 → https://github.com/NixOS/nixpkgs/pull/114009
dsrt^ has quit [Ping timeout: 260 seconds]
dsrt^ has joined #nixos
ManiacOfMadness has joined #nixos
zupo has joined #nixos
meh` has joined #nixos
avaq has quit [Remote host closed the connection]
avaq has joined #nixos
<{^_^}> [nixpkgs] @aforemny merged pull request #115060 → maintainers: update my email address → https://github.com/NixOS/nixpkgs/pull/115060
clime has joined #nixos
avaq has quit [Ping timeout: 245 seconds]
avaq has joined #nixos
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
mananamenos_ has joined #nixos
mananamenos has quit [Ping timeout: 245 seconds]
sangoma has joined #nixos
thc202 has joined #nixos
<{^_^}> [nixpkgs] @manveru opened pull request #115062 → cbonsai: init at 1.0.0 → https://github.com/NixOS/nixpkgs/pull/115062
o1lo01ol1o has quit [Remote host closed the connection]
seanparsons has quit [Ping timeout: 264 seconds]
<mananamenos_> hi, I'm using configuration.nix. When some package does not build from the unstable channel im subscribed to, I can do something like `(let stablePkgs = import <stable> { }; in [ stablePkgs.some-package ])` and concat these to unstable packages. Now, can I solve in a similar way the issue that the combination of `boot.kernelPackages = pkgs.linuxPackages_latest;` and `virtualisation.virtualbox.host.enable = true;` does not
<mananamenos_> work. Can I make virtualbox work with linuxPackages_latest?
seanparsons has joined #nixos
cosimone has joined #nixos
cole-h has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @primeos pushed to master « chromiumDev: 90.0.4427.5 -> 90.0.4430.11 »: https://git.io/JqfCC
ddellacosta has joined #nixos
stree has quit [Ping timeout: 260 seconds]
ddellacosta has quit [Ping timeout: 260 seconds]
betawaffle_ is now known as betawaffle
vidbina has quit [Ping timeout: 260 seconds]
primeos has quit [Quit: WeeChat 2.8]
stree has joined #nixos
<xdej> mananamenos_: can you paste the configure.nix doing what you describe at 11h45 ?
<xdej> (bpaste.de, ...)
n-osborne has joined #nixos
n-osborne has quit [Remote host closed the connection]
jiribenes_ is now known as jiribenes
<mananamenos_> xdej, https://bpa.st/3W6Q
blahblah441 has quit [Read error: Connection reset by peer]
primeos has joined #nixos
<mananamenos_> xdej, when doing nixos-rebuild it fails with virtualbox errors. I suppose there's no easy way..https://github.com/NixOS/nixpkgs/issues/107648 just found this post which might be relevant
<{^_^}> #107648 (by asbachb, 9 weeks ago, closed): virtualbox: Unable to compile VirtualBox kernel modules with kernel 5.10
<xdej> mananamenos_: I mean, please bpaste the last working version of configuration.nix
<mananamenos_> it's the one i've pasted with either `boot.kernelPackages = pkgs.linuxPackages_latest;` or `virtualisation.virtualbox.host.enable = true;` commented
bahamas has quit [Ping timeout: 260 seconds]
bahamas has joined #nixos
<{^_^}> [nixpkgs] @zimbatm merged pull request #115059 → aws-vault: install completions → https://github.com/NixOS/nixpkgs/pull/115059
<{^_^}> Channel nixos-20.09-small advanced to https://github.com/NixOS/nixpkgs/commit/29f96451621 (from 16 hours ago, history: https://channels.nix.gsc.io/nixos-20.09-small)
fuiltilt has quit [Quit: WeeChat 2.9]
bahamas has quit [Ping timeout: 245 seconds]
<xdej> mananamenos_: I tried to reproduce but got: error: file 'stable' was not found in the Nix search path (add it using $NIX_PATH or -I), at /etc/nixos/configuration.
hax404_ has quit [Quit: WeeChat 2.9]
hax404 has joined #nixos
MmeQuignon has joined #nixos
h4ck3rm4n has joined #nixos
lsix has quit [Ping timeout: 258 seconds]
<mananamenos_> xdej, oh, it's because I have this `nix-channel --list` => `stable https://nixos.org/channels/nixos-20.09`
<mananamenos_> just remove that stable package part, it's completely irrelevant to the problem
respawn_ has joined #nixos
<{^_^}> [nixpkgs] @teto opened pull request #115063 → dig: alias to bind.dnsutils → https://github.com/NixOS/nixpkgs/pull/115063
blahblah441 has joined #nixos
Hurttila has joined #nixos
<{^_^}> [nixpkgs] @andir opened pull request #115064 → update terraform-providers.{helm,kubernetes} to 2.0.2 → https://github.com/NixOS/nixpkgs/pull/115064
<Hurttila> Is it mandatory to define the used shell when configuring a user in configuration.nix? For some reason when I leave the line declaring the shell out of the configuration I can't use the konsole at all. I only get a flashing konsole window with "~:nologin - konsole" at the top.
ddellacosta has joined #nixos
<Hurttila> Meaning that I cant open the konsole on desktop. I then have to switch user to root to be able to modify the configuration.nix and put the shell configuration of the user back in
<{^_^}> [nixpkgs] @petabyteboy merged pull request #115053 → pleroma-otp: 2.2.2 -> 2.3.0 → https://github.com/NixOS/nixpkgs/pull/115053
ddellacosta has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #115043 → stork: init at 1.1.0 → https://github.com/NixOS/nixpkgs/pull/115043
<{^_^}> [nixpkgs] @doronbehar opened pull request #115065 → zoom-us: 5.5.7011.0206 → 5.5.7938.0228 → https://github.com/NixOS/nixpkgs/pull/115065
ahmedelgabri has quit [Ping timeout: 258 seconds]
ahmedelgabri has joined #nixos
mananamenos_ has quit [Ping timeout: 264 seconds]
<{^_^}> [nixpkgs] @maralorn pushed 2 commits to haskell-updates: https://git.io/JqfBy
<Ke> can I somehow evaluate <nixpkgs> like expression, where its like <"${channel}">
<Ke> ie. variable, not literal
<Ke> I want to declaratively set nixPath
<Ke> I guess I could always just fetch the channel
<Ke> like aa = builtins.fetchTarball ...
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #115036 → papirus-icon-theme: 20210201 -> 20210302 → https://github.com/NixOS/nixpkgs/pull/115036
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #115040 → hound: unstable-2021-01-26 -> 0.4.0 → https://github.com/NixOS/nixpkgs/pull/115040
<puck> Ke: builtins.findFile (builtins.nixPath) (channel)
<{^_^}> [nixpkgs] @fgaz opened pull request #115067 → shattered-pixel-dungeon: specify gpl3Plus → https://github.com/NixOS/nixpkgs/pull/115067
<{^_^}> [nixpkgs] @r-ryantm opened pull request #115068 → aide: 0.17.1 -> 0.17.3 → https://github.com/NixOS/nixpkgs/pull/115068
lsix has joined #nixos
<tad-lispy[m]> Hi! Is it possible to install a package with a `flake.nix` using Home Manager?
<{^_^}> [rfc39-record] @grahamc pushed commit from rfc39 to main « Automated team sync results. »: https://git.io/JqfRl
<tad-lispy[m]> I mean a package from outside the `nixpkgs` repository. Like this one: https://github.com/tad-lispy/jd/commit/61a916f791cd49b0c88e92f611d6c89ee4db465a
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #115045 → quantum-espresso: enable on darwin → https://github.com/NixOS/nixpkgs/pull/115045
Dr_Facepalm has joined #nixos
<Dr_Facepalm> Hey, looking at nixpkgs, i can see the `wine` package but I can't find `wine64` . Are they one and the same? and if not why is `wine64` not in nixpkgs?
noudle has joined #nixos
<sterni> tad-lispy[m]: I think it says in the home manager readme it doesn't support flakes, but check again, I'm not sure anymore
<clever> Dr_Facepalm: i think you want wineWowPackages.base
ddellacosta has joined #nixos
bahamas has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #113177 → dirdiff: init at 2.1 → https://github.com/NixOS/nixpkgs/pull/113177
<{^_^}> [nixpkgs] @r-ryantm opened pull request #115070 → autocutsel: 0.10.0 -> 0.10.1 → https://github.com/NixOS/nixpkgs/pull/115070
sdier has quit []
sdier has joined #nixos
ddellacosta has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @jlesquembre opened pull request #115071 → vimPlugin.nvim-treesitter: Add tree-sitter parsers → https://github.com/NixOS/nixpkgs/pull/115071
lsix has quit [Ping timeout: 264 seconds]
<Dr_Facepalm> @clever that did the trick thanks!
doronbehar has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #115072 → bchoppr: 1.10.2 -> 1.10.4 → https://github.com/NixOS/nixpkgs/pull/115072
<{^_^}> [nixpkgs] @adisbladis opened pull request #115073 → poetry2nix: 1.15.5 -> 1.16.0 → https://github.com/NixOS/nixpkgs/pull/115073
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #115041 → R: switch to pname + version → https://github.com/NixOS/nixpkgs/pull/115041
BlessJah_ has joined #nixos
ahmedelgabri has quit [Ping timeout: 240 seconds]
Dr_Facepalm has quit [Quit: Connection closed]
<{^_^}> [nixpkgs] @vojta001 opened pull request #115074 → mainstainers: add vojta001 → https://github.com/NixOS/nixpkgs/pull/115074
BlessJah has quit [Ping timeout: 246 seconds]
vidbina has joined #nixos
Xena is now known as Cadey
foldingcookie has joined #nixos
foldingcookie has left #nixos [#nixos]
AndroUser2 has joined #nixos
cosimone has quit [Quit: cosimone]
bahamas has quit [Ping timeout: 260 seconds]
<leo60228> is there a good way to deploy a self-contained service to a nixos server?
<leo60228> currently i git push and nix-build it, pull the copy on the server referenced in the nixos config, then nix copy it over
<leo60228> but i feel like there should be a better way
<{^_^}> [nixpkgs] @siraben opened pull request #115075 → treewide: remove stdenv where not needed → https://github.com/NixOS/nixpkgs/pull/115075
ahmedelgabri has joined #nixos
lsix has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #114459 → libjwt: init at 1.12.1 → https://github.com/NixOS/nixpkgs/pull/114459
<leo60228> to be clear, i do want the config to stay declarative
Dr8128 has joined #nixos
<leo60228> what i'm looking for is, like, a mostly-automated way to go from "i `git push` a flake on my workstation" to "my server's config has been rebuilt against the new version, with my workstation building the flake itself"
<leo60228> (i'd prefer to build the configuration as a whole on the server, since its network is much faster and there's no point in doing remote builds of the vast majority of things in my config, but the applications in question are very slow to build so i'd prefer to do them on my workstation)
<{^_^}> [nixpkgs] @jD91mZM2 opened pull request #115076 → xidlehook: v0.9.1 -> v0.10.0 → https://github.com/NixOS/nixpkgs/pull/115076
hc_ is now known as hc
<leo60228> hmm
<leo60228> i could use a standard nixos flake deployment tool
<leo60228> then while doing the build i'd set up the target as a remote builder
zupo has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #115077 → bupstash: 0.6.4 -> 0.7.0 → https://github.com/NixOS/nixpkgs/pull/115077
<leo60228> and give the derivation a requiredSystemFeatures that my workstation has but not my server
stree has quit [Ping timeout: 245 seconds]
zebrag has joined #nixos
griff_ has joined #nixos
domogled has quit [Quit: domogled]
simba1 has quit [Ping timeout: 264 seconds]
Guest23381 is now known as eri451
simba1 has joined #nixos
mkaito__ has joined #nixos
mkaito__ has quit [Client Quit]
davidv7_ has quit [Remote host closed the connection]
stree has joined #nixos
simba1 has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #115078 → checkstyle: 8.40 -> 8.41 → https://github.com/NixOS/nixpkgs/pull/115078
ggp0647 has quit [Ping timeout: 264 seconds]
ggp0647- has joined #nixos
bougyman has quit [Excess Flood]
bougyman has joined #nixos
simba1 has joined #nixos
<maralorn> I am trying to build a haskell package out of tree and I need to overwrite haskeline. But no matter what I do my build always uses the core haskeline from the ghc package. Does anyone have any clue what to do about that?
<{^_^}> [rfc39-record] @grahamc pushed commit from rfc39 to main « Automated team sync results. »: https://git.io/Jqf2O
LilleCarl1 has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #115079 → circleci-cli: 0.1.12214 -> 0.1.15085 → https://github.com/NixOS/nixpkgs/pull/115079
<Hurttila> Is it mandatory to define the used shell when configuring a user in configuration.nix? For some reason when I leave the line declaring the shell out of the configuration, I can't use the konsole at all from desktop. I only get a flashing konsole window with "~:nologin - konsole" at the top and have to switch the user to root to be able to open the
<Hurttila> konsole and but the user's shell line back in the configuration.nix
LilleCarl has quit [Ping timeout: 246 seconds]
davidv7 has joined #nixos
graf_blu` has joined #nixos
<installnixos[m]> <Hurttila "Is it mandatory to define the us"> I think there should be some default value there if you do not set it.
<installnixos[m]> That's super weird
graf_blutwurst has quit [Remote host closed the connection]
mrcorp has joined #nixos
mrcorp has quit [Client Quit]
chisui has joined #nixos
clime has quit [Ping timeout: 265 seconds]
<chisui> Hey, how do I disable tests when using callCabal2nix?
dev_mohe has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #115080 → cntr: 1.5.0 -> 1.5.1 → https://github.com/NixOS/nixpkgs/pull/115080
<{^_^}> [nixpkgs] @vojta001 opened pull request #115081 → pythonPackages.pysideShiboken: enable it for Python2 as well → https://github.com/NixOS/nixpkgs/pull/115081
<srk> chisui: you can use haskell.lib.dontCheck ( ... callCabal2nix ... )
<chisui> skr thanks
<chisui> ^srk
<{^_^}> [nixpkgs] @r-ryantm opened pull request #115082 → codeql: 2.4.3 -> 2.4.4 → https://github.com/NixOS/nixpkgs/pull/115082
<Mic92> ma27[m]: I am currently on d774b423 and for some weird reason php extension specific by nextcloud php-fpm are not loaded. This break at the point where it tries to load apcu
mkaito__ has joined #nixos
<Mic92> etu: I can point fingers in your direction, but you were the last person that modified something in php. Any ideas?
<Mic92> *I cannot point
<Mic92> I am looking at /nix/store/*-php-with-extensions-7.4.15/lib/php.ini and it should acpu according to this: https://github.com/NixOS/nixpkgs/blob/d6eb2044a70a5694ce15d9e619d7862ce9dbecc0/nixos/modules/services/web-apps/nextcloud.nix#L15
<Mic92> but it does not contain this line
<{^_^}> [nixpkgs] @osener opened pull request #115083 → dockerTools: fix build on Darwin → https://github.com/NixOS/nixpkgs/pull/115083
<ma27[m]> will take a look. Something similar was reported in the nextcloud21 PR IIRC
clime has joined #nixos
oida has quit [Ping timeout: 268 seconds]
oida has joined #nixos
i1l has joined #nixos
ddellacosta has joined #nixos
i1l has left #nixos ["Leaving"]
i1l has joined #nixos
<Hurttila> installnixos[m] I also tought there would be a default option if I don't define the shell for the user. Could the home.nix file of home manager mess that up somehow?
<ma27[m]> ok seems as the PHP extensions thing is broken on master
ddellacosta has quit [Ping timeout: 260 seconds]
ahmedelgabri has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @armijnhemel opened pull request #115084 → yara: 4.0.1 -> 4.0.5 → https://github.com/NixOS/nixpkgs/pull/115084
turlando has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #115085 → dapper: 0.5.5 -> 0.5.6 → https://github.com/NixOS/nixpkgs/pull/115085
qbit has joined #nixos
<qbit> hio!
<etu> Mic92, ma27[m]: Interesting, I did drop the copy of the config file and replaced it with a symlink when I did a whole bunch of changes recently.
<qbit> is there a way to see a "changelog" sorta thing when doing a 'nixos-rebuild switch --upgrade'?
<etu> ma27[m]: Did you see that we now have working tests for each version in php80.tests, php74.tests and php73.tests?
<Mic92> etu: yeah I saw that change, but it looked innocent.
<ma27[m]> I don't know, for some reason PHP expects a relative path in php.ini for extensions, no idea why though
<ma27[m]> as all recent changes looked kinda innocent I'm currently doing a git bisect now
<etu> Mic92: Yeah, my thought as well.
<Mic92> ma27[m]: thanks a lot
<etu> ✨ ma27
<{^_^}> ma27's karma got increased to 6
orivej has joined #nixos
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
chisui has quit [Quit: Connection closed]
<ma27[m]> reverting the commit fixes the problem for me
<ma27[m]> I have no idea why that causes the issue though :D
dev_mohe has quit [Remote host closed the connection]
simba1 has quit [Ping timeout: 240 seconds]
<ma27[m]> (didn't push it yet as I'd prefer to get feedback for this result from etu )
<lukegb> please include a nixos test :P
Lord_of_Life has quit [Quit: Laa shay'a waqi'un moutlaq bale kouloun moumkine]
<etu> ma27[m]: What... That's super weird
Lord_of_Life has joined #nixos
<ma27[m]> yup. double-checked that because I didn't trust the result initially :)
<etu> ma27[m]: Yeah, I agree with lukegb. Feel free to make a test that fails with that commit applied and then revert that commit and make a PR.
<{^_^}> [nixpkgs] @r-ryantm opened pull request #115086 → disfetch: 1.18 -> 1.20 → https://github.com/NixOS/nixpkgs/pull/115086
simba1 has joined #nixos
<etu> ma27[m]: Our current tests works, so we should add things to them to break on this
<etu> ma27[m]: It could be added to the fpm test I guess
aswanson has joined #nixos
<{^_^}> [nixpkgs] @fabaff opened pull request #115087 → python3Packages.HAP-python: 3.1.0 -> 3.3.2 → https://github.com/NixOS/nixpkgs/pull/115087
<{^_^}> [nixpkgs] @r-ryantm opened pull request #115088 → dolt: 0.22.13 -> 0.23.9 → https://github.com/NixOS/nixpkgs/pull/115088
zupo has joined #nixos
ahmedelgabri has joined #nixos
simba1 has quit [Ping timeout: 264 seconds]
orivej has quit [Ping timeout: 256 seconds]
simba1 has joined #nixos
fendor_ is now known as fendor
infinisi1 is now known as infinisil
<{^_^}> [nixpkgs] @Ma27 opened pull request #115089 → Revert "php: Add php package versions to extensions/packages pnames" → https://github.com/NixOS/nixpkgs/pull/115089
<{^_^}> [nixpkgs] @raboof opened pull request #115090 → jekyll: update various plugins → https://github.com/NixOS/nixpkgs/pull/115090
<{^_^}> #115089 (by Ma27, 53 seconds ago, open): Revert "php: Add php package versions to extensions/packages pnames"
<{^_^}> [nixpkgs] @roberth merged pull request #115075 → treewide: remove stdenv where not needed → https://github.com/NixOS/nixpkgs/pull/115075
orivej has joined #nixos
<etu> ma27[m]: Couln't "php -m | grep $ext | wc -l" be enough?
<{^_^}> [nixpkgs] @r-ryantm opened pull request #115091 → eiskaltdcpp: 2.4.1 -> 2.4.2 → https://github.com/NixOS/nixpkgs/pull/115091
<{^_^}> [nixpkgs] @armijnhemel closed pull request #115084 → yara: 4.0.1 -> 4.0.5 → https://github.com/NixOS/nixpkgs/pull/115084
<ma27[m]> actually yes, but apparently I didn't know that option :D
<ma27[m]> thanks
<etu> grep -i though
<etu> then we can keep looking for opcache
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<nixbitcoin> What's the proper way to give programs wrapped in custom scripts priority over the upstream packages?
ahmedelgabri has quit [Ping timeout: 260 seconds]
attila_lendvai has quit [Ping timeout: 265 seconds]
<nixbitcoin> Trying to make bubblewrap work like firejail
<Mic92> ma27[m]: thanks. This makes my prometheus happy again
<gchristensen> ma27[m]: any opinions on this one? https://github.com/NixOS/nixpkgs/pull/115024 :)
<{^_^}> #115024 (by cole-h, 15 hours ago, open): nixos/hydra: append `application_name` to HYDRA_DBI
foozibarzi has joined #nixos
<ma27[m]> right I saw that one, but wasn't entirely awake and forgot about it then :D will take a look
turlando has joined #nixos
<gchristensen> no worries :)
<gchristensen> I've looked at your PR a couple of times but I get intimidated and lose focus (
<gchristensen> :(
<{^_^}> [nixpkgs] @NeQuissimus opened pull request #115092 → python3Packages.sagemaker: 2.27.0 -> 2.28.0 → https://github.com/NixOS/nixpkgs/pull/115092
clime has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @NeQuissimus opened pull request #115093 → awscli: 1.19.18 -> 1.19.20 → https://github.com/NixOS/nixpkgs/pull/115093
<{^_^}> [nixpkgs] @adisbladis merged pull request #115073 → poetry2nix: 1.15.5 -> 1.16.0 → https://github.com/NixOS/nixpkgs/pull/115073
<etu> ma27[m]: I'm still not sure why it broke nextcloud though, and I don't see how that change of the tests would check for that in the future... 🤔
<ma27[m]> etu: updated the PR :)
turlando has quit [Ping timeout: 245 seconds]
neiluj has quit [Quit: leaving]
<ma27[m]> etu: we could make the test failable by adding `apcu` and checking if it exists. (just confirmed that this one is actually missing in php -m with my buidEnv test-expr on master)
<ma27[m]> I guess this broke nextcloud because some other extensions that were needed couldn't be loaded
foozibarzi has quit [Quit: Connection closed]
zupo has joined #nixos
jonringer has joined #nixos
<{^_^}> [nixpkgs] @grahamc merged pull request #115024 → nixos/hydra: append `application_name` to HYDRA_DBI → https://github.com/NixOS/nixpkgs/pull/115024
<{^_^}> [hydra] @grahamc merged pull request #881 → module: append `application_name` to HYDRA_DBI → https://github.com/NixOS/hydra/pull/881
griff_ has quit [Quit: griff_]
<etu> ma27[m]: I'll look into it in a bit, wrapping up work atm
respawn_ has quit [Quit: Leaving]
<adisbladis> etu: Maybe a good idea to add nextcloud to php.passthru.tests ?
<{^_^}> Channel nixos-20.09-small advanced to https://github.com/NixOS/nixpkgs/commit/16fc9eb7364 (from 5 hours ago, history: https://channels.nix.gsc.io/nixos-20.09-small)
<ma27[m]> IIRC this wasn't caught by any test
<adisbladis> Ok =)
<adisbladis> Ignore me!
<{^_^}> [nixpkgs] @globin pushed 1000 commits to structured-attrs: https://git.io/Jqf6s
selfsymmetric-mu has joined #nixos
griff_ has joined #nixos
<selfsymmetric-mu> I'm noticing an exceptionally long or stuck build for chromium-unwrapped-89.0.4389.72.drv-0. Anyone else experiencing this? I don't see a relevant issue reported yet.
<gchristensen> how long is that? 8h isn't uncommon afaik
YoDawg has joined #nixos
<selfsymmetric-mu> gchristensen: Goodness I had no idea. Guess I'll wait.
<exarkun> services.matomo doesn't seem very configurable. am I missing anything?
<selfsymmetric-mu> gchristensen: About 2h so far.
<gchristensen> yeah ...
philr has quit [Ping timeout: 264 seconds]
<YoDawg> Hey, what's up, I was trying to build a dev environment for a go lang project using Bazel, so far I'm having no luck. I keep hitting this `/external/go_sdk/bin/go’: No such file or directory` issue. Any ideas on how I can get this to work?
<gchristensen> I got it down to 20 minutes one on all NVMe with 64G ram and 24 physical cores (48 threads) and some tuning to the build process which made it impossible to build on anything smaller
<selfsymmetric-mu> I'm using the default binary cache configuration. Still, 8h to install a browser on stable?
<gchristensen> only if you have to build it yourself, I guess it probably failed in the build farm if you're on the stable channel
<selfsymmetric-mu> I see…yeah, it's not making any more output either. It's stuck on [8629/44237].
YoDawg has quit [Client Quit]
YoDawg has joined #nixos
turlando has joined #nixos
zceejkr has joined #nixos
sangoma has quit [Read error: Connection reset by peer]
turlando has quit [Ping timeout: 264 seconds]
<pisquo[m]> Hi everyone, for a university course I have to install STM32CubeIDE (https://www.st.com/content/st_com/en/products/development-tools/software-development-tools/stm32-software-development-tools/stm32-ides/stm32cubeide.html), as of now I managed to pass the sh with a simlink from /run/current-system/sw/bin/bash to /bin/bash and I used patchelf to run the binary in the directory but I get and error regarding the java binary in
<pisquo[m]> the plugin directory but I'm a bit lost. Has anyone managed to run it? Otherwise have you got any advices on how to run it (as of now I'm thinking virtualbox/dualboot)
mallox has quit [Quit: WeeChat 3.0.1]
orivej has quit [Ping timeout: 245 seconds]
aither has quit [Quit: ZNC 1.7.1 - https://znc.in]
<pisquo[m]> * Hi everyone, for a university course I have to install STM32CubeIDE (https://www.st.com/content/st_com/en/products/development-tools/software-development-tools/stm32-software-development-tools/stm32-ides/stm32cubeide.html), as of now I managed to pass the sh with a simlink from /run/current-system/sw/bin/bash to /bin/bash and I used patchelf to run the binary in the installation directory but I get and error regarding a
<pisquo[m]> java binary (that I think they have hardcoded) and I'm a bit lost. Has anyone managed to run it? Otherwise have you got any advices on how to run it (as of now I'm thinking virtualbox/dualboot)
<abathur> eyJhb: d'oh! just a bug I think; I'll see if I can track it down and get a fix out
gustavderdrache has joined #nixos
snajpa has joined #nixos
<{^_^}> [nixpkgs] @NeQuissimus opened pull request #115094 → sbt-extras: 2021-03-01 → 2021-03-03 → https://github.com/NixOS/nixpkgs/pull/115094
snajpa has quit [Remote host closed the connection]
stampirl has joined #nixos
cript0nauta has joined #nixos
stree has quit [Ping timeout: 265 seconds]
snajpa has joined #nixos
<ar> hm. I wanted to try FreeCAD on nixos-unstable, but it segfaults for me: https://dpaste.com/GV5D7A928.txt
<ar> can anyone reproduce this?
kw has joined #nixos
kw has quit [Client Quit]
sangoma has joined #nixos
orivej has joined #nixos
<evils> ar: starts from nixpkgs-unstable
tazjin_ is now known as tazjin
davidv7 has quit [Remote host closed the connection]
<ar> evils: your FreeCAD binary is /nix/store/8h8k6wviz6rhf4a6439w24qkwyabbw50-freecad-unstable-2020-12-08/bin/FreeCAD?
aither has joined #nixos
<evils> /nix/store/vgamrl862ycnf853s38wrx0mjy1r2jpz-freecad-unstable-2020-12-08/bin/FreeCAD
Kritnich has quit [Quit: Bye bye.]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #115095 → gdu: 4.6.5 -> 4.7.0 → https://github.com/NixOS/nixpkgs/pull/115095
stree has joined #nixos
<{^_^}> [nixpkgs] @roberth merged pull request #115083 → dockerTools: fix build on Darwin → https://github.com/NixOS/nixpkgs/pull/115083
<evils> ar: /nix/store/8h8k6.../FreeCAD fails here
<ar> evils: thanks
Dr8128 has quit [Ping timeout: 260 seconds]
<ar> so I guess i'll just have to get /nix/store/vgam…/FreeCAD somehow
<ar> ;)
<evils> ar: get it from nixpkgs-unstable
<evils> or wait until it comes to nixos-unstable
nixuser has quit [Remote host closed the connection]
orivej has quit [Ping timeout: 276 seconds]
YoDawg has quit [Ping timeout: 240 seconds]
truby has quit [Quit: Idle for 30+ days]
pinkieval has quit [Quit: We're here, we're queer, connection reset by peer.]
turlando has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #115096 → gleam: 0.14.1 -> 0.14.2 → https://github.com/NixOS/nixpkgs/pull/115096
<etu> ma27[m]: Ok, I'm back now, had a bit of walking before it became dark outside. Will test around a bit :)
<ar> evils: hm. https://dpaste.com/AUZ4FBV7T.txt this should've worked, right?
attila_lendvai has joined #nixos
attila_lendvai has joined #nixos
attila_lendvai has quit [Changing host]
pinkieval has joined #nixos
<evils> ar: hmm, did you install freecad previously?
<evils> ar: i just did `nix run nixpkgs.freecad`
dev_mohe has joined #nixos
<{^_^}> [nixpkgs] @storvik opened pull request #115097 → pcl: add wrapQt, remove broken and run nixpkgs-fmt → https://github.com/NixOS/nixpkgs/pull/115097
sangoma has quit [Quit: WeeChat 3.0]
davidv7 has joined #nixos
sumner has quit [Quit: The Lounge - https://thelounge.chat]
turlando has quit [Ping timeout: 276 seconds]
graf_blu` has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #115098 → go-ethereum: 1.9.25 -> 1.10.0 → https://github.com/NixOS/nixpkgs/pull/115098
<ar> evils: first time today, by adding to environment.systemPackages (from which it is now removed)
attila_lendvai has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @ryantm merged pull request #114900 → ft2-clone: 1.43 -> 1.44_fix → https://github.com/NixOS/nixpkgs/pull/114900
<{^_^}> [nixpkgs] @r-ryantm opened pull request #115099 → golangci-lint: 1.37.1 -> 1.38.0 → https://github.com/NixOS/nixpkgs/pull/115099
YoDawg has joined #nixos
simba1 has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @zimbatm merged pull request #115064 → update terraform-providers.{helm,kubernetes} to 2.0.2 → https://github.com/NixOS/nixpkgs/pull/115064
erasmas has joined #nixos
simba1 has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #115100 → gosec: 2.6.1 -> 2.7.0 → https://github.com/NixOS/nixpkgs/pull/115100
clime has joined #nixos
tetdim has quit [Read error: Connection reset by peer]
<{^_^}> [nixpkgs] @NeQuissimus opened pull request #115101 → Kernel updates 2021-03-04 → https://github.com/NixOS/nixpkgs/pull/115101
cfricke has quit [Quit: WeeChat 3.0.1]
p01ar_ has joined #nixos
p01ar has quit [Read error: Connection reset by peer]
tetdim has joined #nixos
<etu> ma27[m]: Do you mind if I compose my own PR as well?
<etu> ma27[m]: Thinking to have the cli test as a separate test
Boomerang has quit [Ping timeout: 264 seconds]
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
sumner has joined #nixos
Dr8128 has joined #nixos
lunik1 has joined #nixos
attila_lendvai has joined #nixos
griff__ has joined #nixos
cosimone has joined #nixos
dev_mohe has quit [Quit: dev_mohe]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #115102 → gtk-layer-shell: 0.5.2 -> 0.6.0 → https://github.com/NixOS/nixpkgs/pull/115102
griff_ has quit [Ping timeout: 265 seconds]
griff__ is now known as griff_
<ar> evils: somehow, I'm unable to pickup the working version. https://dpaste.com/AY7DLE2TU.txt and even trying to build freecad with git master nixpkgs gives me a non-working version. oh well
p01ar_ has quit [Quit: ZNC 1.7.5 - https://znc.in]
tetdim has quit [Quit: ZNC 1.7.5 - https://znc.in]
zupo has joined #nixos
p01ar has joined #nixos
tetdim has joined #nixos
<{^_^}> [nixpkgs] @TredwellGit opened pull request #115104 → linux_5_11: 5.11.2 -> 5.11.3 → https://github.com/NixOS/nixpkgs/pull/115104
<abathur> eyJhb: I've released resholve 0.5.1 with `hash = "sha256-+9MjvO1H+A3Ol2to5tWqdpNR7osQsYcbkX9avAqyrKw=";` to fix this
<{^_^}> [nixpkgs] @r-ryantm opened pull request #115105 → hal-hardware-analyzer: 3.2.5 -> 3.2.6 → https://github.com/NixOS/nixpkgs/pull/115105
<ma27[m]> etu: no. Optionally you can also use my branch as base and push on top of it :)
<ma27[m]> whatever you'd prefer
<etu> ma27[m]: I'm making a separate CLI test :)
<etu> ma27[m]: As part of it
<ma27[m]> etu: I'm wondering if we want to do this as part of e.g. installCheckPhase then though. VM tests are kinda expensive.
<ma27[m]> (or are there reasons for a vm test that I'm missing?)
endformationage has joined #nixos
YoDawg has quit [Quit: Connection closed]
YoDawg has joined #nixos
o1lo01ol1o has joined #nixos
<{^_^}> [nixpkgs] @roberth opened pull request #115106 → doc: Add README and format → https://github.com/NixOS/nixpkgs/pull/115106
<{^_^}> [nixpkgs] @roberth merged pull request #108914 → dockertools: Update doc to use CommonMark → https://github.com/NixOS/nixpkgs/pull/108914
NicholasVonWolff has joined #nixos
<etu> ma27[m]: Hmm, that's not a bad itea, that would probably mean that this would run for every combination that people make. And if we then look at the output to see that no extension failed to load we get a package -- otherwise not.
cosimone has quit [Quit: cosimone]
griff_ has quit [Ping timeout: 264 seconds]
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
redmp has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #115107 → helmfile: 0.138.4 -> 0.138.6 → https://github.com/NixOS/nixpkgs/pull/115107
<{^_^}> [nixpkgs] @TredwellGit closed pull request #115104 → linux_5_11: 5.11.2 -> 5.11.3 → https://github.com/NixOS/nixpkgs/pull/115104
<etu> ma27[m]: But I'll start by merging your PR so we get a fix in, then I can sit and tinker a bit more with things :)
<etu> ma27[m]: Just to have it fixed
<{^_^}> [nixpkgs] @etu merged pull request #115089 → Revert "php: Add php package versions to extensions/packages pnames" → https://github.com/NixOS/nixpkgs/pull/115089
<etu> Your test also covers this case now, which is good :)
noudle has quit []
NicholasVonWolff has quit [Quit: authenticating]
NicholasVonWolff has joined #nixos
ahmedelgabri has joined #nixos
NicholasVonWolff is now known as NicVW
turlando has joined #nixos
simba1 has quit [Ping timeout: 240 seconds]
waleee-cl has joined #nixos
ahmedelgabri has quit [Ping timeout: 258 seconds]
<{^_^}> [nixpkgs] @adisbladis merged pull request #115098 → go-ethereum: 1.9.25 -> 1.10.0 → https://github.com/NixOS/nixpkgs/pull/115098
simba1 has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #115061 → mailhog: fix --version output → https://github.com/NixOS/nixpkgs/pull/115061
jimmiehansson has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @NeQuissimus merged pull request #115094 → sbt-extras: 2021-03-01 → 2021-03-03 → https://github.com/NixOS/nixpkgs/pull/115094
<{^_^}> [nixpkgs] @NeQuissimus merged pull request #115092 → python3Packages.sagemaker: 2.27.0 -> 2.28.0 → https://github.com/NixOS/nixpkgs/pull/115092
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #114283 → zs-apc-spdu-ctl: init at 0.0.2 → https://github.com/NixOS/nixpkgs/pull/114283
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #115063 → dig: alias to bind.dnsutils → https://github.com/NixOS/nixpkgs/pull/115063
shibboleth has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #115067 → shattered-pixel-dungeon: specify gpl3Plus → https://github.com/NixOS/nixpkgs/pull/115067
Acou_Bass has quit [Quit: ZNC 1.8.2 - https://znc.in]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #115108 → jackett: 0.17.606 -> 0.17.617 → https://github.com/NixOS/nixpkgs/pull/115108
<{^_^}> [nixpkgs] @SuperSandro2000 closed pull request #115074 → mainstainers: add vojta001 → https://github.com/NixOS/nixpkgs/pull/115074
<{^_^}> [rfc39-record] @grahamc pushed commit from rfc39 to main « Automated team sync results. »: https://git.io/Jqf5P
Acou_Bass has joined #nixos
castorcete has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #115087 → python3Packages.HAP-python: 3.1.0 -> 3.3.2 → https://github.com/NixOS/nixpkgs/pull/115087
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #115065 → zoom-us: 5.5.7011.0206 → 5.5.7938.0228 → https://github.com/NixOS/nixpkgs/pull/115065
<{^_^}> [nixpkgs] @abathur opened pull request #115109 → resholve: 0.5.0 -> 0.5.1 → https://github.com/NixOS/nixpkgs/pull/115109
<unclechu> hey, is there a way to get a link to tarball used as a source for a derivation from nix repl?
<selfsymmetric-mu> gchristensen: Just closing the loop…I discovered that the eternal chromium-unwrapped build was coming from mermaid-cli, and not from the chromium package itself. nix-top doesn't show dependencies, if it had shown the relationship to mermaid-cli I would have realized more quickly. I queries the dependency of the derivation source in store from the regular nixos-update output.
<selfsymmetric-mu> I've disabled the mermaid build for now and now my configuration builds in a finite amount of time.
Robert[m] has joined #nixos
<castorcete> ,find bzlib.h
<{^_^}> ,find is temporarily unimplemented
<castorcete> agh!
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #115090 → jekyll: update various plugins → https://github.com/NixOS/nixpkgs/pull/115090
feepo has quit [Ping timeout: 272 seconds]
<simpson> castorcete: Probably `bzip2.dev`?
<evils> ,locate bzlib.h
<{^_^}> Found in packages: blast, bzip2.dev, plan9port, graalvm8-ce, graalvm11-ce, bzip2_1_1.dev, haskellPackages.bz2
pingveno has quit [Ping timeout: 272 seconds]
seku has joined #nixos
pingveno has joined #nixos
<{^_^}> [nixpkgs] @Ma27 pushed to master « gitea: 1.13.2 -> 1.13.3 »: https://git.io/JqfF0
mitsuhiko has quit [Ping timeout: 272 seconds]
feepo has joined #nixos
cole-h has joined #nixos
mitsuhiko has joined #nixos
stree has quit [Ping timeout: 264 seconds]
<castorcete> i look into https://search.nixos.org/packages but i can't find bzip2.dev
<lukegb> bzip2.dev isn't a package in its own right, it's an output of bzip2
<castorcete> Ah! Cool! Thanks for your help
rdk31 has quit [Quit: The Lounge - https://thelounge.chat]
<castorcete> I was trying to make a new derivation for a software that is not in the package list and the autotool couldn't find bzlib.h
<castorcete> i just needed to add bzip2 as a native build input
<simpson> castorcete++
chisui has joined #nixos
<{^_^}> castorcete's karma got increased to 1
Jackneill has quit [Read error: Connection reset by peer]
<chisui> Hey, why can't I create derivations with an `@` in their name? It's a perfectly valid path character.
dbmikus has joined #nixos
rajivr has quit [Quit: Connection closed for inactivity]
<{^_^}> [nixpkgs] @fabaff opened pull request #115113 → python3Packages.mullvad-api: init at 1.0.0 → https://github.com/NixOS/nixpkgs/pull/115113
apache801 has joined #nixos
<{^_^}> [nixpkgs] @Ma27 pushed to release-20.09 « gitea: 1.13.2 -> 1.13.3 »: https://git.io/Jqfb9
<selfsymmetric-mu> chisui: It could be a conflict with the pattern matching operator `@`. See https://nixos.wiki/wiki/Nix_Expression_Language#Accepting_unexpected_attributes_in_argument_set
<jared-w> my kingdom for irc + discord + matrix + slack + mattermost in one sane box without having awful/broken integrations
stree has joined #nixos
seku has quit [Ping timeout: 276 seconds]
<bbigras> Is there a way to run something when a package updates? I would like to clear a cache when one of my webapp updates.
<{^_^}> [nixpkgs] @fabaff opened pull request #115114 → python3Packages.libcst: 0.3.13 -> 0.3.17 → https://github.com/NixOS/nixpkgs/pull/115114
<chisui> selfsymmetric-mu: that's part of the expression language though. I use it like this: `mkDerivation { name = "a@b" ...` unless the name is evaluated as an expression that shouldn't be a problem
<{^_^}> [nixpkgs] @turboMaCk opened pull request #115115 → renoise: 3.2.2 -> 3.3.1 → https://github.com/NixOS/nixpkgs/pull/115115
<{^_^}> [nixpkgs] @r-ryantm opened pull request #115116 → libqb: 2.0.2 -> 2.0.3 → https://github.com/NixOS/nixpkgs/pull/115116
statusfailed has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @worldofpeace merged pull request #114483 → libayatana-appindicator: Make multi output → https://github.com/NixOS/nixpkgs/pull/114483
griff_ has joined #nixos
seku has joined #nixos
seku has quit [Client Quit]
YoDawg has quit [Quit: Connection closed]
saschagrunert has quit [Remote host closed the connection]
seku has joined #nixos
bvdw has quit [Quit: The Lounge - https://thelounge.chat]
Jackneill has joined #nixos
bvdw has joined #nixos
urkk has quit [Quit: leaving]
<{^_^}> [nixpkgs] @Ericson2314 opened pull request #115118 → android prebuilt: Fix eval → https://github.com/NixOS/nixpkgs/pull/115118
<{^_^}> [nixpkgs] @fabaff opened pull request #115119 → python3Packages.pyrituals: init at 0.0.2 → https://github.com/NixOS/nixpkgs/pull/115119
statusfailed has joined #nixos
ManiacOfMadness has quit [Ping timeout: 260 seconds]
turlando has quit [Remote host closed the connection]
turlando has joined #nixos
Jackneill has quit [Ping timeout: 276 seconds]
xantoz has quit [Ping timeout: 256 seconds]
<MarcWebe1> import gi -> python2.7 -> how to get that ? Trying to package linuxcnc
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #115081 → pythonPackages.pysideShiboken: enable it for Python2 as well → https://github.com/NixOS/nixpkgs/pull/115081
clime has quit [Ping timeout: 276 seconds]
<{^_^}> [nixpkgs] @maralorn opened pull request #115120 → nix-output-monitor: 1.0.2.0 -> 1.0.3.0 → https://github.com/NixOS/nixpkgs/pull/115120
barm has joined #nixos
ronthecookie has quit [Excess Flood]
ronthecookie has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #114249 → pythonPackages.psutil: disable impure cpu_freq test → https://github.com/NixOS/nixpkgs/pull/114249
<simpson> MarcWebe1: I forget which package "gi" corresponds to. Is it `python2Packages.pygobject3`?
clime has joined #nixos
leotaku has joined #nixos
<MarcWebe1> https://github.com/LinuxCNC/linuxcnc/issues/403 -> maybe I hsould try python3
<{^_^}> LinuxCNC/linuxcnc#403 (by fake-name, 3 years ago, closed): Python 2 EOL Roadmap?
Jackneill has joined #nixos
le0taku has quit [Ping timeout: 272 seconds]
turlando has quit [Ping timeout: 245 seconds]
<{^_^}> [nixpkgs] @mitchmindtree opened pull request #115121 → ardour: add a videoSupport option, harvid: init at 0.8.3, xjadeo: init at 0.8.10 → https://github.com/NixOS/nixpkgs/pull/115121
<viric> what do you do when busybox passwd tells you all the time "password too weak"
Forkk has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
<simpson> ar: numa numa iei, numa iei! That's a lot of CPUs. Are you wondering why they're not all at the same frequency? They might scale independently due to fluctuating heat across such a large package.
castorcete has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #115122 → messer-slim: 3.2.1 -> 3.6 → https://github.com/NixOS/nixpkgs/pull/115122
<ar> simpson: that's a single socket system (ryzen 5950x), and i'm aware of boost clocks, it's just i wouldn't expect it to report anything above 5000MHz
<Ke> there was a recent bug like that
<Ke> I guess you genuinely do not read phoronix
<ar> i'm pretty sure that something went wrong between linux reading the cpu clocks, and cpu reporting its frequency
<Ke> not even late at night without telling anyone
<ar> Ke: i avoid phoronix, yes
Forkk has joined #nixos
<ar> Ke: well, i'm on 5.11
<Ke> you did not get this link from me, I obviously do not read it either
<Ke> 5.10.20 is newer than some of the 5.11s
<ar> guess i'll need to try 5.11.3
<ar> but for now i'm bisecting nixpkgs to find out what broke freecad…
<Ke> compile or runtime
<ar> runtime, unfortunately
<Ke> at least on unstable it compiles again
<evils> ar: `nix run nixpkgs.freecad` didn't work for you?
<Ke> something other than just starting?
<ar> evils: nope
<ar> Ke: just starting
<ar> it segfaults for me
<Ke> yeah, crashed for me too
Jackneill has quit [Ping timeout: 260 seconds]
<Ke> on unstable it did not compile for a while, but now does again
<Ke> there was some python dep that did not install
<bbigras> freecad's compilation is often broken on unstable. I had to remove it form my config multiple times in the last year.
<ar> my bisect results so far: https://dpaste.com/6ERGS8JB8.txt
mkaito__ has quit [Quit: WeeChat 3.0.1]
<{^_^}> [nixpkgs] @Lassulus merged pull request #115062 → cbonsai: init at 1.0.0 → https://github.com/NixOS/nixpkgs/pull/115062
growpotkin has joined #nixos
domogled has joined #nixos
wnklmnn has joined #nixos
tex39 has joined #nixos
avaq has quit [Ping timeout: 245 seconds]
<tex39> Hello people! I have NixOS on my Laptop, trying VLC to play movies from minidlna on my media server. If firewall on Laptop is disabled everything works, but if default firewall is enabled on Laptop then VLC cannot find the minidlna server. I expected that firewall blocks incoming packets, not the out packets.... It doesn't work even if I enable UDP
<tex39> and TCP port 1900 on Laptop. Any idea what to do? I want to keep firewall enabled...
<{^_^}> [nixpkgs] @Pacman99 opened pull request #115123 → evolution-data-server: enable phone number support → https://github.com/NixOS/nixpkgs/pull/115123
<{^_^}> [nixpkgs] @Ericson2314 merged pull request #115118 → android prebuilt: Fix eval → https://github.com/NixOS/nixpkgs/pull/115118
lsix has quit [Ping timeout: 264 seconds]
<lassulus> tex39: have you opened udp port 1900 and tcp port 8200 ?
Boomerang has joined #nixos
chisui has quit [Quit: Connection closed]
<{^_^}> [nixpkgs] @fabaff opened pull request #115124 → python3Packages.pyplaato: init at 0.0.15 → https://github.com/NixOS/nixpkgs/pull/115124
<tex39> Yes
<tex39> networking.firewall.logRefusedConnections = true;
<tex39> networking.firewall.logRefusedPackets = true;
<tex39> networking.firewall.allowedTCPPorts = [ 443 1900 5900 8200 ];
<tex39> networking.firewall.allowedUDPPorts = [ 1900 39905 50633 33649 ];
<tex39> networking.firewall.allowPing = true;
<tex39> And it doesn't work.
tex39 has quit [Killed (Sigyn (Spam is off topic on freenode.))]
Jackneill has joined #nixos
rdk31 has joined #nixos
zakame has quit [Ping timeout: 245 seconds]
<{^_^}> [nixpkgs] @Lassulus merged pull request #111602 → blflash: init at 0.3.2 → https://github.com/NixOS/nixpkgs/pull/111602
berberman_ has joined #nixos
zakame has joined #nixos
berberman has quit [Ping timeout: 240 seconds]
berberman_ has quit [Max SendQ exceeded]
<{^_^}> [nixpkgs] @ralph-amissah closed pull request #115028 → ldc: 1.24.0 -> 1.25.1 update (fixes broken) ldc and enable dub to build with alternative D compilers → https://github.com/NixOS/nixpkgs/pull/115028
Jackneill has quit [Max SendQ exceeded]
berberman has joined #nixos
evils has quit [Ping timeout: 245 seconds]
ris has joined #nixos
<{^_^}> [nixpkgs] @NeQuissimus merged pull request #115093 → awscli: 1.19.18 -> 1.19.20 → https://github.com/NixOS/nixpkgs/pull/115093
Jackneill has joined #nixos
ahmedelgabri has joined #nixos
<{^_^}> [nixpkgs] @Lassulus merged pull request #113203 → nixos/ceph: fix ceph.client.extraOptions type → https://github.com/NixOS/nixpkgs/pull/113203
Jackneill has quit [Max SendQ exceeded]
Jackneill has joined #nixos
<{^_^}> [nixpkgs] @fabaff opened pull request #115125 → python3Packages.aiolyric: init at 1.0.5 → https://github.com/NixOS/nixpkgs/pull/115125
_novafacing has quit [Quit: _novafacing]
_novafacing has joined #nixos
simba1 has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #115126 → nfpm: 2.2.5 -> 2.3.1 → https://github.com/NixOS/nixpkgs/pull/115126
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #115120 → nix-output-monitor: 1.0.2.0 -> 1.0.3.0 → https://github.com/NixOS/nixpkgs/pull/115120
attila_lendvai has quit [Ping timeout: 240 seconds]
dev_mohe has joined #nixos
Jackneill has quit [Ping timeout: 260 seconds]
simba1 has joined #nixos
<eyJhb> Nice, thanks abathur ! Is there a PR to update it in Nixpkgs?
<{^_^}> [nixpkgs] @davidak merged pull request #103705 → plik: init at 1.3.1 → https://github.com/NixOS/nixpkgs/pull/103705
<rmcgibbo[m]> With a script that uses a nix-shell shebang, does anyone know how to pin nixpkgs?
<{^_^}> [nixpkgs] @TredwellGit opened pull request #115127 → libreoffice-fresh: 7.1.0.3 -> 7.1.1.2 → https://github.com/NixOS/nixpkgs/pull/115127
_novafacing has quit [Read error: Connection reset by peer]
o1lo01ol1o has quit [Remote host closed the connection]
<rmcgibbo[m]> i would like to do something like https://pastebin.com/jqmuxLw9, but it doesn't work
<{^_^}> [nixpkgs] @zowoq opened pull request #115128 → gh: 1.6.2 -> 1.7.0 → https://github.com/NixOS/nixpkgs/pull/115128
pushqrdx has joined #nixos
Jackneill has joined #nixos
mkaito has joined #nixos
mkaito has joined #nixos
mkaito has quit [Changing host]
<{^_^}> [nixpkgs] @fabaff opened pull request #115129 → python3Packages.pykmtronic: init at 0.0.2 → https://github.com/NixOS/nixpkgs/pull/115129
<{^_^}> [nixpkgs] @lovesegfault merged pull request #115056 → exa: remove perl dependency → https://github.com/NixOS/nixpkgs/pull/115056
<sterni> rmcgibbo[m]: try -I nixpkgs=<tarball>
orivej has joined #nixos
<gchristensen> ajs124: ping? I'm looking at your iscsi pr and I'm having a hard time with the tests failing, I'm wondering if you have some insight
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #113822 → gst_all_1.gst-plugins-bad: adds voaacenc support → https://github.com/NixOS/nixpkgs/pull/113822
<{^_^}> [nixpkgs] @Ekleog opened pull request #115130 → xfce module: enable notification daemon by default → https://github.com/NixOS/nixpkgs/pull/115130
<ajs124> gchristensen: what's doing what how?
Jackneill has quit [Max SendQ exceeded]
Jackneill has joined #nixos
griff_ has quit [Quit: griff_]
<gchristensen> ajs124: 1s I'll get some logs and stuff pasted!
<srid> Does anyone know how exactly tlp's `balance_performance` work? Can't find it in the docs.
portal_narlish has joined #nixos
ransom has joined #nixos
<{^_^}> [nixpkgs] @adisbladis opened pull request #115131 → emacs.pkgs.pdf-tools: Fix darwin build → https://github.com/NixOS/nixpkgs/pull/115131
Siyo has quit [Quit: Bye]
<{^_^}> [nixpkgs] @TredwellGit opened pull request #115132 → electron_9: 9.4.3 -> 9.4.4 → https://github.com/NixOS/nixpkgs/pull/115132
<rmcgibbo[m]> sterni: awesome. thanks!
<portal_narlish> I have a general question -- what are the basic URLs the nix package manager will hit when loading a package for the first time?
<portal_narlish> For example, if I run `nix-shell --packages wireshark` I see that the cache.nixos.org URL is being requested. But is there more to this?
Jackneill has quit [Read error: Connection reset by peer]
<{^_^}> [nixpkgs] @ralph-amissah opened pull request #115133 → ldc: 1.24.0 -> 1.25.1 update (fixes broken) ldc and enable dub to build with alternative D compilers #115028 → https://github.com/NixOS/nixpkgs/pull/115133
<{^_^}> [nixpkgs] @fabaff opened pull request #115134 → python3Packages.faadelays: init at 0.0.6 → https://github.com/NixOS/nixpkgs/pull/115134
meh` has quit [Ping timeout: 264 seconds]
vidbina has quit [Ping timeout: 260 seconds]
<ar> Bisecting: 8 revisions left to test after this (roughly 3 steps)
<ar> [0e418a1a18e14b0c6bc62554c0f4c4eff2e9d4e6] Merge pull request #108888 from ttuegel/feature--staging--qt-no-mkDerivation
<ar> hmmm
<{^_^}> https://github.com/NixOS/nixpkgs/pull/108888 (by ttuegel, 7 weeks ago, merged): Qt: Do not require mkDerivation
Rainy has joined #nixos
ahmed_elgabri has joined #nixos
<Rainy> hi
<{^_^}> [nixpkgs] @aanderse opened pull request #115135 → apacheHttpdPackages.mod_auth_mellon: 0.13.1 -> 0.17.0 → https://github.com/NixOS/nixpkgs/pull/115135
Boomerang has quit [Remote host closed the connection]
<gchristensen> ajs124: https://gist.github.com/grahamc/84155c439004ffb0620c1b655a4c9d38#file-gistfile1-txt-L3249 the initiatorRootTargetName never manages to talk to the target. I've made some patches to the PR trying to make it work, but I haven't managed to get it to work yet. I'm getting those committed
<{^_^}> [nixpkgs] @fabaff opened pull request #115136 → python3Packages.pymazda: init at 0.0.9 → https://github.com/NixOS/nixpkgs/pull/115136
ahmedelgabri has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @zowoq merged pull request #115128 → gh: 1.6.2 -> 1.7.0 → https://github.com/NixOS/nixpkgs/pull/115128
o1lo01ol1o has joined #nixos
<{^_^}> [nixpkgs] @zowoq pushed to release-20.09 « gh: 1.6.2 -> 1.7.0 »: https://git.io/JqJJf
nly has joined #nixos
<gchristensen> ajs124: everything after the "formatting" commit is the interesting changes: https://github.com/NixOS/nixpkgs/compare/master...grahamc:iscsi (my editor always autoformats, and usually I do my work, and then re-apply it to nixpkgs without the autoformatting enabled once I've got it working.)
<nly> envfs is interesting
Jackneill has joined #nixos
<ajs124> gchristensen: this is what it currently looks like in our tree https://gist.github.com/ajs124/69c97414c222810b1422047cdea2720f but apparently the test fails there as well. it works in production though, soooo…
<gchristensen> ajs124: I noticed the VM was trying to connect to the 10.0.2.x IP address instead of the 192.168.x.x IP, and I futzed around with that ... but
<{^_^}> [nixpkgs] @fabaff opened pull request #115138 → python3Packages.python-smarttub: init at 0.0.19 → https://github.com/NixOS/nixpkgs/pull/115138
<gchristensen> hmmm maybe boot.initrd.network.enable = true
clime has quit [Ping timeout: 245 seconds]
<gchristensen> oh already covered
<{^_^}> [nixpkgs] @r-ryantm opened pull request #115139 → notcurses: 2.1.5 -> 2.2.2 → https://github.com/NixOS/nixpkgs/pull/115139
m0rphism1 has quit [Quit: WeeChat 2.7.1]
clime has joined #nixos
m0rphism has joined #nixos
<clime> I am trying to run Steam (and Steam game in particular) under NixOS but getting: Could not connect to X session manager: None of the authentication protocols specified are supported
<clime> [0304/201438.595679:INFO:crash_reporting.cc(270)] Crash reporting enabled for process: renderer
<gchristensen> ajs124: I'm not sure what your "sooo" means :P can you clarify? :)
<clime> also: /nix/store/wwfl5h92sydackmlcssbz3qrvqv19r8n-glib-networking-2.64.3/lib/gio/modules/libgiognutls.so: wrong ELF class: ELFCLASS64
bahamas has joined #nixos
stree has quit [Ping timeout: 260 seconds]
<gchristensen> ajs124: ah!
Siyo has joined #nixos
<ajs124> gchristensen: that means the test is broken but the modules work and the systems are running, so I don't really care.
<gchristensen> I made progress by changing the interface from ens3 to eth1 (d'oh, misread the output when I made that change before)
portal_narlish has quit [Quit: Connection closed]
<{^_^}> [nixpkgs] @fabaff opened pull request #115140 → python3Packages.openwrt-ubus-rpc: init at 0.0.3 → https://github.com/NixOS/nixpkgs/pull/115140
<{^_^}> [nixpkgs] @adisbladis merged pull request #115131 → emacs.pkgs.pdf-tools: Fix darwin build → https://github.com/NixOS/nixpkgs/pull/115131
nly has left #nixos ["ERC (IRC client for Emacs 27.1)"]
gianarb has joined #nixos
stree has joined #nixos
<{^_^}> [nixpkgs] @Ma27 merged pull request #114910 → citrix_workspace: remove myself (ma27) from maintainer list → https://github.com/NixOS/nixpkgs/pull/114910
<{^_^}> [nixpkgs] @TredwellGit opened pull request #115141 → electron_12: init at 12.0.0 → https://github.com/NixOS/nixpkgs/pull/115141
ransom has quit [Quit: Textual IRC Client: www.textualapp.com]
zakame has quit [Ping timeout: 276 seconds]
bahamas has quit [Ping timeout: 276 seconds]
<{^_^}> [nixpkgs] @fabaff merged pull request #115095 → gdu: 4.6.5 -> 4.7.0 → https://github.com/NixOS/nixpkgs/pull/115095
vidbina has joined #nixos
clime has quit [Ping timeout: 256 seconds]
slack1256 has joined #nixos
Jackneill has quit [Ping timeout: 264 seconds]
slack1256 has quit [Remote host closed the connection]
<tad-lispy[m]> From the installation USB is there a way to only reinstall bootloader? My dual boot Ubuntu broke grub so i just want to fix it. But nixos-install tries to rebuild the whole system.
<{^_^}> [nixpkgs] @Ma27 merged pull request #113958 → nextcloud21: init at 21.0.0, set as default version → https://github.com/NixOS/nixpkgs/pull/113958
supersandro2000 is now known as SuperSandro2000
SuperSandro2000 is now known as supersandro2000
<lordcirth_> tad-lispy[m], bind mount /dev, chroot in, nixos-rebuild boot?
<exarkun> Anyone used terraform-nixos? I can't get `nixos_deploy` to establish an ssh connection to a Terraform-managed EC2 instance.
<{^_^}> [hydra] @cole-h opened pull request #882 → tests/input-types: split out scminputs into individual tests → https://github.com/NixOS/hydra/pull/882
apache801 has quit [Ping timeout: 256 seconds]
<exarkun> thank you rubber duck. `ssh_agent = true`.
endvra has quit [Quit: ZNC 1.7.5 - https://znc.in]
dev_mohe has quit [Quit: dev_mohe]
endvra has joined #nixos
erasmas has quit [Quit: leaving]
<{^_^}> [nixpkgs] @yurrriq merged pull request #115107 → helmfile: 0.138.4 -> 0.138.6 → https://github.com/NixOS/nixpkgs/pull/115107
<{^_^}> [nixpkgs] @vbgl pushed to master « ocamlPackages.biniou: use Dune 2 »: https://git.io/JqJLL
<{^_^}> [nixpkgs] @yurrriq merged pull request #115096 → gleam: 0.14.1 -> 0.14.2 → https://github.com/NixOS/nixpkgs/pull/115096
noudle has joined #nixos
<tad-lispy[m]> Thanks lordcirth_ . In the end chroot and the `switch-to-configuration boot` command mentioned in https://nixos.wiki/wiki/Bootloader helped.
<{^_^}> [rfc39-record] @grahamc pushed commit from rfc39 to main « Automated team sync results. »: https://git.io/JqJL4
kaliumxyz has quit [Ping timeout: 260 seconds]
kaliumxyz has joined #nixos
ahmed_elgabri has quit [Ping timeout: 245 seconds]
<{^_^}> [nixpkgs] @jtojnar pushed 151 commits to staging-next: https://git.io/JqJLH
<{^_^}> [nixpkgs] @prusnak merged pull request #115141 → electron_12: init at 12.0.0 → https://github.com/NixOS/nixpkgs/pull/115141
ky0ko has joined #nixos
<{^_^}> [nixpkgs] @AndersonTorres merged pull request #114932 → Cleanups → https://github.com/NixOS/nixpkgs/pull/114932
fendor_ has joined #nixos
bahamas has joined #nixos
<{^_^}> [nixpkgs] @jtojnar pushed 356 commits to staging: https://git.io/JqJtE
fendor has quit [Ping timeout: 260 seconds]
simba1 has quit [Ping timeout: 272 seconds]
ahmed_elgabri has joined #nixos
<{^_^}> [nix] @bburdette opened pull request #4605 → 1184 large path error [WIP] → https://github.com/NixOS/nix/pull/4605
bahamas has quit [Ping timeout: 245 seconds]
apache801 has joined #nixos
<{^_^}> [nixpkgs] @Ma27 opened pull request #115142 → [20.09] nextcloud: init at 21.0.0 → https://github.com/NixOS/nixpkgs/pull/115142
<{^_^}> [nixpkgs] @prusnak merged pull request #115132 → electron_9: 9.4.3 -> 9.4.4 → https://github.com/NixOS/nixpkgs/pull/115132
kaliumxyz has quit [Ping timeout: 260 seconds]
kaliumxyz has joined #nixos
thc202 has quit [Ping timeout: 240 seconds]
zupo has joined #nixos
Hurttila has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @fabaff opened pull request #115143 → Updates Home Assistant dependencies (aiohttp-3.7.4) → https://github.com/NixOS/nixpkgs/pull/115143
z2z2z2z2z2z2z has joined #nixos
slack1256 has joined #nixos
riksteri has quit [Quit: riksteri]
shibboleth has quit [Quit: shibboleth]
belgacem has joined #nixos
<belgacem> Hi there! Can I install a package without declaring it in tnfiguration file located at /etc/nixos?
bahamas has joined #nixos
<selfsymmetric-mu> belgacem: Yes. You may invoke `nix-env -i <pkgname>`.
<belgacem> thank you
<selfsymmetric-mu> belgacem: My pleasure, good luck.
ztrawhcse has quit [Ping timeout: 272 seconds]
<belgacem> But with 'nix-env -i <package> : it will be installed to the wide system or only for the user?
<sterni> user only
dev_mohe has joined #nixos
clerie has joined #nixos
<cransom> as long as you don't do it as root
<dev_mohe> What's with https://hydra.nixos.org/build/138131052 and the strange "possible dns spoofing detected"? And will the nixos-unstable build be restarted soon?
<belgacem> Okay, I see thank you
bahamas has quit [Ping timeout: 265 seconds]
neiluj has joined #nixos
neiluj has joined #nixos
neiluj has quit [Changing host]
<{^_^}> [nixpkgs] @fabaff opened pull request #115146 → ssb: init at 0.1.1 → https://github.com/NixOS/nixpkgs/pull/115146
elibrokeit has joined #nixos
<sterni> cransom: as root it also installs it into a user profile (the root user's) I think
justan0theruser is now known as justanotheruser
<{^_^}> [nixpkgs] @r-ryantm opened pull request #115147 → acme-client: 1.1.0 -> 1.2.0 → https://github.com/NixOS/nixpkgs/pull/115147
ahmedelgabri has joined #nixos
ahmed_elgabri has quit [Ping timeout: 260 seconds]
philr has joined #nixos
twink0r has left #nixos ["The Lounge - https://thelounge.chat"]
evanjs has quit [Read error: Connection reset by peer]
evanjs has joined #nixos
<{^_^}> [nixpkgs] @fabaff opened pull request #115148 → galer: init at 0.0.2 → https://github.com/NixOS/nixpkgs/pull/115148
cript0nauta has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @andersk opened pull request #115149 → mypy: 0.790 → 0.812 → https://github.com/NixOS/nixpkgs/pull/115149
belgacem has quit [Quit: Leaving]
<{^_^}> [hydra] @grahamc merged pull request #882 → tests/input-types: split out scminputs into individual tests → https://github.com/NixOS/hydra/pull/882
z2z2z2z2z2z2z has quit [Quit: Leaving]
matrixbridgetest has joined #nixos
apache801 has quit [Ping timeout: 260 seconds]
apache8080 has joined #nixos
bahamas has joined #nixos
vidbina_ has joined #nixos
vidbina has quit [Ping timeout: 264 seconds]
bahamas has quit [Ping timeout: 245 seconds]
janneke_ has joined #nixos
vidbina_ has quit [Ping timeout: 260 seconds]
janneke has quit [Ping timeout: 272 seconds]
stree has quit [Ping timeout: 265 seconds]
fuiltilt has joined #nixos
ky0ko has quit [Remote host closed the connection]
Sigma has quit [Quit: ZNC - http://znc.in]
Sigma has joined #nixos
fendor_ has quit [Remote host closed the connection]
aswanson has quit [Remote host closed the connection]
gustavderdrache has quit [Quit: Leaving.]
stree has joined #nixos
bahamas has joined #nixos
<{^_^}> [hydra] @cole-h opened pull request #883 → Test improvements → https://github.com/NixOS/hydra/pull/883
ahmedelgabri has quit [Ping timeout: 260 seconds]
ahmedelgabri has joined #nixos
bahamas has quit [Ping timeout: 260 seconds]
simba1 has joined #nixos
ky0ko has joined #nixos
dev_mohe has quit [Remote host closed the connection]
dirkx_ has joined #nixos
davidv7 has quit [Remote host closed the connection]
davidv7 has joined #nixos
gurmble has joined #nixos
dirkx has quit [Quit: Bye and thanks for all the fish]
grumble has quit [Quit: K-Lined]
gurmble is now known as grumble
zupo has quit [Ping timeout: 260 seconds]
zupo has joined #nixos
civodul has quit [Quit: ERC (IRC client for Emacs 27.1)]
<avn> Folks! Are anyone live on nixpkgs' master? Is (or was) rxvt-unicode broken? After rebuild/switch from last weekend my urxvt spawns with broken fonts.
griff_ has joined #nixos
<Yaniel> with nixpkgs master any breakage is well within the realm of possibility
tomberek has quit [Quit: Connection closed]
<ar> avn: you always have the option to go down the rabbit hole of git bisect good/bad, nix-build ./ -A rxvt-unicode, and ./result/bin/whatever ;)
<ar> avn: also, by chance, was the font you were using a bitmap font?
<{^_^}> [nixpkgs] @worldofpeace merged pull request #114000 → nixos/plymouth: use bgrt theme → https://github.com/NixOS/nixpkgs/pull/114000
<{^_^}> [nixpkgs] @worldofpeace closed pull request #84158 → plymouth: attempt to make flicker-free → https://github.com/NixOS/nixpkgs/pull/84158
amk has quit [Read error: Connection reset by peer]
zimbatm_ has quit [Ping timeout: 264 seconds]
amk has joined #nixos
<avn> ar: xft:Inconsolata-LGC:bitmap_monospace=true:size=14,xft:Inconsolata:bitmap_monospace=true:size=12
Rainy has quit [Remote host closed the connection]
<drozdziak1> What's the best piece of documentation for remote builders? I have a non-nixos server that already works with `nix ping-store ssh://my-alias`, but calling `nix build --builders 'ssh://my-alias` fails with nix claiming it doesn't know the hostname
<clever> drozdziak1: the ssh is done by root, so it has a diff ~/.ssh/config
<avn> I can go back to old good bitmap cronyx ;) They look's ugly but familiar
<drozdziak1> oh okay, can I point it at mine somehow?
cript0nauta has joined #nixos
<clever> drozdziak1: with the right combination of sudo flags, yes
<clever> drozdziak1: if nix is ran as root via sudo, it wont talk to nix-daemon, and then you can control its env vars
<clever> drozdziak1: and sudo has a flag to leave $HOME "wrong" (pointing to your user, not root)
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #115134 → python3Packages.faadelays: init at 0.0.6 → https://github.com/NixOS/nixpkgs/pull/115134
<{^_^}> [nixpkgs] @zseri opened pull request #115151 → zstxtns-utils: init at 0.0.3 → https://github.com/NixOS/nixpkgs/pull/115151
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #115136 → python3Packages.pymazda: init at 0.0.9 → https://github.com/NixOS/nixpkgs/pull/115136
<{^_^}> [nixpkgs] @yanganto opened pull request #115152 → gitui: 0.11.0 -> 0.12.0 → https://github.com/NixOS/nixpkgs/pull/115152
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #115138 → python3Packages.python-smarttub: init at 0.0.19 → https://github.com/NixOS/nixpkgs/pull/115138
wnklmnn has quit [Quit: Leaving]
<{^_^}> [nixpkgs] @ajs124 opened pull request #115153 → dovecot: 2.3.13 -> 2.3.14, dovecot_pigeonhole: 0.5.13 -> 0.5.14 → https://github.com/NixOS/nixpkgs/pull/115153
<drozdziak1> clever I see, I think I'll just edit root's SSH config then
griff_ has quit [Quit: griff_]
<drozdziak1> clever Do you happen to know how to add an SSH key to gpg-agent? I have `enableSSHSupport` but `ssh-add` complains with no such file or directory (I specify the key as full path)
<clever> drozdziak1: `ssh-add -l` will list keys already in the agent, and $SSH_AUTH_SOCK must point to a socket made by gpg, like /run/user/1000/gnupg/S.gpg-agent.ssh
<clever> gpg is special, in that adding a key puts it into the gpg keyring, and it will persist after a reboot, which is why i also prefer it
mcornick has joined #nixos
Jackneill has joined #nixos
<sshow> What functions should I use to override a package's output files without having to recompile the package? I'm trying with an overlay with overrideAttrs postInstall, but it forces recompilation
<cole-h> You can't easily do that.
<sshow> is there some crazy work-around I can do, then? :P
<clever> sshow: buildEnv will merge 2 packages using symlinks
<cole-h> could also make a new derivation that takes that derivation as input and do the changes there
marcusr has quit [Remote host closed the connection]
<selfsymmetric-mu> Interesting, xfce4 would not start on my new build unless I installed xorg.xinit. I wonder why it's not just a dependency of the desktop manager.