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
red[evilred] has joined #nixos
<red[evilred]> vigoux (IRC): Firstly -=- Welcome! Secondly = I'm going to say something somewhat inflammatory about systemd and follow it up with a "But..."
<red[evilred]> I certainly qualify as someone who hates systemd on principle - because of its design, approach, and the way that it was introduced into the wider Linux ecosystem.
<red[evilred]> But...
<red[evilred]> The way that NixOS works - pretty much all of your exposure to systemd is abstracted away. I've been using NixOS for years now and I've pretty much forgotten that systemd exists
<red[evilred]> So - I would say, as long as you're not packaging services or daemons - chances are you're not even going to know that it's there in your day-to-day NixOS use.
<pushqrdx> can someone tell my why can't i add my shell script as a package like so
<pushqrdx> writeShellScriptBin "noto" ''
<pushqrdx> npath="$HOME/Notes/note-$ndate.md"
<pushqrdx> ndate=$(date +%Y-%m-%d)
<pushqrdx>
<pushqrdx> echo "# Notes for $ndate" > $npath
<pushqrdx> if [ ! -f $npath ]; then
<pushqrdx> fi
<pushqrdx>
<pushqrdx> -c "norm Go## $(date +%H:%M)" \
<pushqrdx> nvim -c "norm Go" \
<pushqrdx> -c "norm G2o" \
andreh1 has joined #nixos
<{^_^}> [nixpkgs] @mweinelt merged pull request #104821 → [20.09] bpytop: 1.0.47 -> 1.0.50 → https://git.io/JkMZH
<{^_^}> [nixpkgs] @mweinelt pushed 2 commits to release-20.09: https://git.io/JkMWv
cr4y1_ has quit [Ping timeout: 240 seconds]
<euandreh> pushqrdx: What were you trying to do? I didn't get how you're transforming the scriptinto a package
<euandreh> What error are you getting?
<{^_^}> [nixpkgs] @r-ryantm opened pull request #104827 → evolution-data-server: 3.38.1 -> 3.38.2 → https://git.io/JkMWG
<pushqrdx> i add writeShellScriptBin into my user.packages list
gustavderdrache has joined #nixos
<pushqrdx> i don't want to create any package for it because it's just a simple shell script i want it to be added to my bins
<pushqrdx> euandreh so i added that to the packages list
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #102728 → pmd: 6.26.0 -> 6.29.0 → https://git.io/JTNWF
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkMWa
<spacetato> pushqrdx: and it doesn't show up in your path after rebuild?
<euandreh> What error are you getting?
<pushqrdx> spacetato no it doesn't build at all throwing `A definition for option `users.users.pushqrdx.packages.[definition 1-entry 35]' is not of type `package'`
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #102729 → python3Packages: init shap at 0.36.0 → https://git.io/JTNlm
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkMWy
<spacetato> pushqrdx: did you wrap the call to `writeShellScriptBin` in parens or define it in a `let`?
<spacetato> `packages = [ writeShellScriptBin "..." "..." ] ` won't work because nix will think `writeShellScriptBin` is the first member of the array, and so on
<spacetato> so either `packages = [ (writeShellScriptBin "..." "...") ]; ` or `packages = let mypkg = writeShellScriptBin "..." "..."; in [ mypkg ];`
<pushqrdx> oh, i still confuse myself with the "functional" style in nix language
oxalica1 has joined #nixos
<pushqrdx> this seems to be building now
<spacetato> cool!
<euandreh> Nice!
<{^_^}> [nixpkgs] @matthewbauer opened pull request #104828 → installers/tools: add system.disableInstallerTools option → https://git.io/JkMlm
<euandreh> Its actually less about being functional and how Nix evaluates values
<spacetato> though calling functions without parens might look strange to you if you have only used some of the popular imperative languages :)
oxalica has quit [Ping timeout: 260 seconds]
oxalica1 is now known as oxalica
<pushqrdx> everything is an expression and is evaluated from left to right piping things in -> direction
<pushqrdx> spacetato yeah coming from 15 years c# and few c++ lol
<pushqrdx> so added ( ) around made that writeShellScriptBin function call an expression as far as i understand
<spacetato> without the parens you have an array with three members: the function `writeShellScriptBin`, the first string, and the second string
<spacetato> with the parens, the stuff in the parens is evaluated first
<spacetato> so that is evaluated by calling the function with those two strings as args
<spacetato> and the result is a derivation that becomes the sole member of the array
<pushqrdx> oh, so writeShellScriptBin was actually treated as if it's a package lol
<spacetato> exactly
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #102653 → openfortivpn: 1.14.1 -> 1.15.0 → https://git.io/JTbuB
<spacetato> hence "not of type 'package'"
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkMl1
<euandreh> precisely
<pushqrdx> makes sense now :D i just thought that nix would automagically figure it out because it had the strings args
<pushqrdx> silly assumption though
<euandreh> The example that spacetato gave before with a let doesn't need parentheses, because the thing after the "=" sign was the whole expression
<pushqrdx> i still can't grok that let/in stuff
<pushqrdx> i always avoid it because i feel lazy to even figure it out looks super weird to my eyes
<euandreh> It is just a way to declare a variable, because you can't declare them anywhere you want besides inside the let ... in
<pushqrdx> like packages = let foo = stuff then a freaking semicolon (why)? then `in` like what in
<spacetato> anywhere you can put an expression, you can instead put a `let` that defines some locally scoped names
<spacetato> so `4` is the same as `let x = 5; in 4`
<spacetato> or `let x = 5; y = 6; in 4`
<spacetato> or `let x = 4; in x`
<pushqrdx> hmmm what?
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #102526 → capitaine-cursors: fix build with inkscape => 1.0 → https://git.io/JTdPH
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkM8f
<spacetato> the part after `in` is the expression that the `let` evaluates to
<spacetato> open up `nix repl` and try pasting the expressions I sent above
<pushqrdx> so where did the 5 and 6 go
<spacetato> they didn't, because I didn't use `x` or `y`
<spacetato> so nix didn't evaluate them
<spacetato> it's `let`, followed by any number of `name = expression;` clauses, followed by `in`, and then another expression
<spacetato> and in that expression after `in`, you can use any of the names from the first part of the `let`
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #104822 → dislocker: 0.7.1 -> 0.7.3 → https://git.io/JkMZ5
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkM8s
<euandreh> like `let x = 5; y = 6; in x + y`
<spacetato> yep!
<spacetato> that will evaluate to 11
<spacetato> you may find this useful:
<pushqrdx> sorry someone was at the door
<pushqrdx> so it's basically this in c terms, define an anonymous function that does some stuff and returns a value, i might use that value or not
ngyj has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @zowoq pushed to release-20.09 « youtube-dl: 2020.11.21.1 -> 2020.11.24 »: https://git.io/JkM8w
<pushqrdx> cause i sometimes find a complicated lets before an `in`
m0rphism has quit [Ping timeout: 240 seconds]
kreyren has quit [Ping timeout: 240 seconds]
<pushqrdx> gonna restart real quick
<spacetato> right, but doesn't need to involve defining a function, it's the same as introducing a new scope in C with brackets
<spacetato> and if names are unused, nix won't even try to determine their values
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #102611 → minixml: 3.1 -> 3.2 → https://git.io/JTF6g
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkM8d
evanjs has quit [Quit: ZNC 1.8.2 - https://znc.in]
<pushqrdx> now let-in makes sense, thanks for breaking that wall for me! :D
evanjs has joined #nixos
mbrgm_ has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #104829 → gcompris: 0.98 -> 1.0 → https://git.io/JkM4O
mbrgm has quit [Ping timeout: 260 seconds]
mbrgm_ is now known as mbrgm
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #104814 → opensc: 0.20.0 -> 0.21.0 → https://git.io/JkMmH
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkM4z
<spacetato> pushqrdx: glad to hear it!
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #102578 → mdk: 1.2.10 -> 1.3.0 → https://git.io/JTFte
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkM4a
<spacetato> can somebody with commit rights check this out for me?
<{^_^}> #99688 (by kylesferrazza, 7 weeks ago, open): multilockscreen: init at 1.0.0
supersandro2000 has quit [Disconnected by services]
supersandro2000 has joined #nixos
<{^_^}> [nixpkgs] @Infinisil merged pull request #103632 → terraform-providers.gitlab: 2.9.0 -> 3.1.0 → https://git.io/Jkqdr
<{^_^}> [nixpkgs] @Infinisil pushed 2 commits to master: https://git.io/JkM45
ngyj has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #99761 → key: init at 2.6.3 → https://git.io/JUAOe
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkM4x
<{^_^}> Channel nixpkgs-20.03-darwin advanced to https://github.com/NixOS/nixpkgs/commit/16ee69c8720 (from 5 hours ago, history: https://channels.nix.gsc.io/nixpkgs-20.03-darwin)
<{^_^}> Channel nixpkgs-20.09-darwin advanced to https://github.com/NixOS/nixpkgs/commit/8c5df6d0226 (from 5 hours ago, history: https://channels.nix.gsc.io/nixpkgs-20.09-darwin)
<{^_^}> [nixpkgs] @Infinisil merged pull request #99688 → multilockscreen: init at 1.0.0 → https://git.io/JUNml
<{^_^}> [nixpkgs] @Infinisil pushed 2 commits to master: https://git.io/JkMBm
<infinisil> spacetato: Merged :)
<spacetato> infinisil: thanks!
cosimone has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 closed pull request #102423 → junit: remove (broken since 2015) → https://git.io/JT5tF
ngyj has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #104830 → gnome3.gnome-getting-started-docs: 3.36.2 -> 3.38.0 → https://git.io/JkMB2
<{^_^}> [nixpkgs] @flokli merged pull request #102938 → nixos/stage-1: create /dev/std{in,out,err} symlinks → https://git.io/JTx7C
<{^_^}> [nixpkgs] @flokli pushed 2 commits to master: https://git.io/JkMBa
thc202 has quit [Ping timeout: 260 seconds]
bbarker has quit [Remote host closed the connection]
rajivr has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #102411 → emacs26Packages.prolog-mode: unbreak → https://git.io/JT5JK
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkMR4
<{^_^}> [nixpkgs] @penguwin opened pull request #104832 → glow: 1.2.0 -> 1.2.1 → https://git.io/JkMRH
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #102589 → libsidplayfp: 2.0.4 -> 2.0.5 → https://git.io/JTFn0
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkM0v
evanjs has quit [Quit: ZNC 1.8.2 - https://znc.in]
ris has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #102154 → palemoon: 28.14.2 -> 28.15.0 → https://git.io/JTSWk
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkM03
evanjs has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 closed pull request #102682 → pentobi: 18.1 -> 18.2 → https://git.io/JTbQN
<{^_^}> [nixpkgs] @cole-h opened pull request #104833 → alacritty: 0.6.0-rc1 -> 0.6.0 → https://git.io/JkM0V
<{^_^}> Channel nixos-20.03-small advanced to https://github.com/NixOS/nixpkgs/commit/16ee69c8720 (from 6 hours ago, history: https://channels.nix.gsc.io/nixos-20.03-small)
<{^_^}> [nixpkgs] @SuperSandro2000 closed pull request #102600 → idea: various versions updated by script → https://git.io/JTF4I
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #104829 → gcompris: 0.98 -> 1.0 → https://git.io/JkM4O
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkMEe
cole-h has quit [Ping timeout: 240 seconds]
<siraben> `kernel/tty.h: No such file or directory`, which package provides this header?
<samueldr> doesn't looks like (according to nix-locate) that any provides it outright
Ariakenom has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @mweinelt opened pull request #104834 → python3Packages.pyHS100: 0.3.5.1 -> 0.3.5.2 → https://git.io/JkME3
<samueldr> but it might be part of the kernel headers package, but not actually found in a "kernel" directory
<siraben> Trying to build https://github.com/rm-hull/byok
<samueldr> siraben: they do, don't they?
bbarker has joined #nixos
<siraben> Interesting, `makeFlags = [ "CC=cc" ];` is the only modification I have to the build
<{^_^}> [nixpkgs] @redvers opened pull request #104835 → cassandra: 3.11.4 -> 3.11.9 → https://git.io/JkMEc
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage-packages.nix: automatic Haskell package set update »: https://git.io/JkMEu
<siraben> Not sure why it can't find the include then
<{^_^}> [nixpkgs] @ncfavier opened pull request #104836 → nixos/nat: support IPv6 NAT → https://git.io/JkMEg
<{^_^}> Channel nixpkgs-20.09-darwin advanced to https://github.com/NixOS/nixpkgs/commit/d31c86b1243 (from 3 hours ago, history: https://channels.nix.gsc.io/nixpkgs-20.09-darwin)
heyitsrama has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #104837 → gnome3.gnome-music: 3.38.1 -> 3.38.2 → https://git.io/JkMEb
<{^_^}> [nixpkgs] @jtojnar merged pull request #104827 → evolution-data-server: 3.38.1 -> 3.38.2 → https://git.io/JkMWG
<{^_^}> [nixpkgs] @jtojnar pushed commit from @r-ryantm to master « evolution-data-server: 3.38.1 -> 3.38.2 »: https://git.io/JkMEA
<{^_^}> [nixpkgs] @jtojnar merged pull request #104830 → gnome3.gnome-getting-started-docs: 3.36.2 -> 3.38.0 → https://git.io/JkMB2
<{^_^}> [nixpkgs] @jtojnar pushed commit from @r-ryantm to master « gnome3.gnome-getting-started-docs: 3.36.2 -> 3.38.0 »: https://git.io/JkMuJ
tarruda has quit [Ping timeout: 246 seconds]
Lord_of_Life_ has joined #nixos
Lord_of_Life has quit [Ping timeout: 256 seconds]
tarruda has joined #nixos
pushqrdx has quit [Remote host closed the connection]
<siraben> How do I specify an older version of gcc in my build?
<bourbon> I think you'd do it by specifying a different version of nixpkgs much like you would for pulling something in from unstable to stable
<bourbon> since you refer to unstable by commit
<siraben> Looks like I'll need `i686-elf-gcc (GCC) 4.9.1`
<bourbon> at least... that's my intuition as a build guy who is bad at nix
<siraben> I think I should be able to specify GCC v4, no?
<{^_^}> [nixpkgs] @redvers opened pull request #104838 → cassandra_2_1: 2.1.20 -> 2.1.22 → https://git.io/JkMzC
<bourbon> I thikn so
<bourbon> ya
<bourbon> nixpkgs.gcc49
<bourbon> for 4.9.4
<bourbon> might need to see if there's a version of nixpkgs that has 4.9.1 if your build is that fiddly
iH8c0ff33 has joined #nixos
pushqrdx has joined #nixos
<pushqrdx> so i want to use this https://github.com/mjlbach/neovim-nightly-overlay and i followed the instructions about installing and adding the cachix user
<aterius> And was there a problem?
<pushqrdx> i also added the overlay to my .config/nixpkgs/overlays/neovim.nix
<aterius> Are you not hitting the cache?
<pushqrdx> nix-env -iA nixpkgs.neovim-nightly just says error: attribute 'neovim-nightly' in selection path 'neovim-nightly' not found
<aterius> Hmm, did you add it to your root or user overlays?
<aterius> I only install through home-manager
<pushqrdx> the one thing i had to run with root was the cachix add command, but the overlay itself i added to $HOME/.config...
<aterius> Yeah so the cachix has nothing to do with the missing neovim-nightly
<aterius> wouldn't worry about that
<pushqrdx> sorry `cachix use mjlbach` command was the thing i ran with sudo
<aterius> Yeah, I figured, that's fine
iH8c0ff33 has quit [Ping timeout: 246 seconds]
<pushqrdx> idk why it doesn't seem to find the package then
selfsymmetric-mu has joined #nixos
<aterius> I just (double) checked and I have it available via nix-env too
<samueldr> siraben: instead of stdenv, use gcc49Stdenv
<selfsymmetric-mu> Anyone running Nix on M1 Big Sur yet? I'm curious to know if that's viable.
<aterius> Maybe your overlays are set in home-manager?
<aterius> Or somewhere else?
<aterius> Such that it's not actually reading the overlays folder
<pushqrdx> i don't have home-manager and my setup is just nixos as is i haven't changed anything
<aterius> Right, so nixpkgs is set in your configuration.nix then?
<adisbladis> selfsymmetric-mu: Only via rosetta so far. The code signing situation is still unclear afaik.
<aterius> Maybe overlays are set there?
<selfsymmetric-mu> Thanks adisbladis!
<pushqrdx> aterius i don't think i ever fiddled with something about overlays before
<pushqrdx> greping overlay in my configuration.nix there seems to be nothing altering or mentioning it
<aterius> Hmm, I don't know then
<{^_^}> [nixpkgs] @r-ryantm opened pull request #104839 → gnome-user-docs: 3.38.1 -> 3.38.2 → https://git.io/JkMgu
<aterius> That's strange
<pushqrdx> the only thing about nixpkgs in configuration.nix is this
<aterius> So you have a file $HOME/.config/overlays/neovim.nix with what's in the readme?
<pushqrdx> yes
<pushqrdx> nixpkgs = {
<aterius> FWIW here is my setup
growpotk- has joined #nixos
<{^_^}> [nixpkgs] @Atemu closed pull request #103934 → linux_zen: 5.9.6 -> 5.9.8 → https://git.io/JkZXY
<pushqrdx> so in my configuration.nix i have a nixpkgs = { config.allowUnfree = true; config.packageOverrides = pkgs: {vaapiIntel = pkgs.vaapiIntel.override { enableHybridCodec = true; };}; };
<pushqrdx> but that's it nothing else that would alter the place of overlays
teto has quit [Ping timeout: 260 seconds]
<aterius> Hmm, not sure if the overrides might conflict
<aterius> Can you try removing that for now?
iH8c0ff33 has joined #nixos
<pushqrdx> sure i will remove it and rebuil/reboot and come back
<aterius> Sorry for the hassle :(
<pushqrdx> no! thanks for providing the overlay
<{^_^}> [nixpkgs] @redvers opened pull request #104840 → cassandra_2_2: 2.2.14 -> 2.2.19 → https://git.io/JkM2z
pushqrdx has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #102470 → case.kak.nix: Update description → https://git.io/JT5yZ
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkM2g
hyiltiz has quit [Quit: hyiltiz]
hyiltiz has joined #nixos
hyiltiz has joined #nixos
pushqrdx has joined #nixos
iH8c0ff33 has quit [Ping timeout: 264 seconds]
growpotk- has quit [Ping timeout: 264 seconds]
<pushqrdx> rebuilt, tried to run vim $HOME/.config/nixpkgs/overlays/neovim.nix to triple sure that it exists and has the lines
<pushqrdx> is there any weird typos in this?
<pushqrdx> looks good to me
<pushqrdx> running the install still gets me `error: attribute 'nixpkgs' in selection path 'nixpkgs.neovim-nightly' not found`
hyiltiz has quit [Client Quit]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #102440 → pythonPackages.xmljson: init at 0.2.1 → https://git.io/JT54q
hyiltiz has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkM2D
alp has joined #nixos
hyiltiz has quit [Client Quit]
* red[evilred] does the PR dance
hyiltiz has joined #nixos
hyiltiz has joined #nixos
h0m1 has quit [Ping timeout: 264 seconds]
hyiltiz has quit [Client Quit]
hyiltiz has joined #nixos
h0m1 has joined #nixos
<aterius> Wait attribute nixpkgs not found
<aterius> try pkgs
turlando has quit [Ping timeout: 256 seconds]
<aterius> ```
<aterius> ```
<aterius> nix-env -iA pkgs.neovim-nightly
<pushqrdx> same... how can i make sure that this cachix thing was properly registered, i mean installed it, ran the cachix use command (which added a file to my /etc that i imported in my config.nix) and rebuilt
bbarker has quit [Remote host closed the connection]
iH8c0ff33 has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #102437 → hdhomerun-config-gui: 20200521 -> 20200907 → https://git.io/JT5ld
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkMVU
<{^_^}> [nixpkgs] @redvers opened pull request #104841 → cassandra_3_0: 3.0.17 -> 3.0.23 → https://git.io/JkMVI
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #102462 → heimer: 1.20.0 -> 1.21.0 → https://git.io/JT56t
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkMVL
<supersandro2000> red[evilred]: ?
<red[evilred]> pr dance?
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #102463 → python3Packages.mlxtend: init at 0.17.3 → https://git.io/JT5iT
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkMVZ
<red[evilred]> I just opened a whole bunch of PRs
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #92735 → tpm2-pkcs11: 1.2.0 -> 1.3.0 → https://git.io/JJqi7
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkMVc
<red[evilred]> and after getting some advice on how to make better PRs, I'm feeling a little more confident
iH8c0ff33 has quit [Ping timeout: 240 seconds]
<red[evilred]> Specifically - the four cassandra packages for CVE-2020-13946
<red[evilred]> all four versions had the same CVE which made fixing the four of them a little easier.
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #101644 → gpscorrelate: wrap to avoid crashing due to lack of schemas → https://git.io/JTrPW
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkMV2
turlando has joined #nixos
hlolli_ has joined #nixos
lordcirth has quit [Remote host closed the connection]
gustavderdrache has quit [Quit: Leaving.]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #104843 → gnome3.gedit: 3.38.0 -> 3.38.1 → https://git.io/JkMwv
hlolli__ has quit [Ping timeout: 272 seconds]
lordcirth has joined #nixos
<{^_^}> [nixpkgs] @veprbl merged pull request #104373 → linux_zen: 5.9.6 -> 5.9.10 → https://git.io/Jkgmc
<{^_^}> [nixpkgs] @veprbl pushed 2 commits to master: https://git.io/JkMwb
hlolli_ has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @marsam opened pull request #104844 → mpv: fix build on darwin → https://git.io/JkMrI
jneto has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #104845 → glade: 3.38.1 -> 3.38.2 → https://git.io/JkMr4
<sss2> hi all, how to remove iso image left from nix-build -A config.system.build.isoImage from store ?
<{^_^}> [nixpkgs] @mweinelt merged pull request #104844 → mpv: fix build on darwin → https://git.io/JkMrI
<{^_^}> [nixpkgs] @mweinelt pushed 2 commits to master: https://git.io/JkMrg
marcusr has quit [Remote host closed the connection]
marcusr has joined #nixos
<V> sss2: nix-collect-garbage
<V> if there's a symlink (usually called 'result') pointing to it, you'll need to delete that first
<{^_^}> [nixpkgs] @marsam opened pull request #104846 → nodejs: 12.19.1 -> 12.20.0, 15.2.1 -> 15.3.0 → https://git.io/JkMrA
diwr has joined #nixos
<sss2> but nix-store --verify --repair recreated it
puffnfresh has joined #nixos
<{^_^}> [nixpkgs] @hjones2199 opened pull request #104848 → kstars: 3.4.3 -> 3.5.0 → https://git.io/JkMo7
diwr has quit [Remote host closed the connection]
<V> sss2: can you run `nix-store --query --referrers /nix/store/0adwh2w75bzq5x61qix2ina1930c36ry-nixos-21.03pre-git-x86_64-linux.iso`?
<V> anything that shows up here depends on it
<V> also s/--referrers/--roots/
<V> for the actual gc roots
supersandro2000 has quit [Ping timeout: 246 seconds]
<aterius> pushqrdx: Cachix wouldntbhave anything to do with this
<sss2> it says /nix/store/0adwh2w75bzq5x61qix2ina1930c36ry-nixos-21.03pre-git-x86_64-linux.iso
<sss2> just one line
<V> ??????
<V> very confused
<sss2> like this
<sss2> ah, roots looks more useful
<sss2> : /home/sss/git/nix/nixpkgs/nixos/result -> /nix/store/0adwh2w75bzq5x61qix2ina1930c36ry-nixos-21.03pre-git-x86_64-linux.is
<V> oh, there you go
<V> just delete that and then gc and you're good to go
ilmu1 has quit [Ping timeout: 260 seconds]
<V> in future, you can pass --no-out-link to nix-build to make it not produce those 'result' symlinks
ilmu1 has joined #nixos
<V> (for ephemeral stuff)
<sss2> thx
<sss2> for info
<{^_^}> [nixpkgs] @IvarWithoutBones opened pull request #104849 → pkgs/tools/compression: cleanup of various packages → https://git.io/JkMK0
supersandro2000 has joined #nixos
D_ has quit [Remote host closed the connection]
<jneto> I'm settting my flake registry system-wide with "nix.registry" and use them within home-manager via "builtins.getFlake" but I'm having trouble with nur flake.
<jneto> cannot write modified lock file of flake 'flake:nur' (use '--no-write-lock-file' to ignore)
D_ has joined #nixos
<jneto> yes, I could use '--no-write-lock-file' but I cannot pass this option to home-manager.
<{^_^}> [nixpkgs] @marsam merged pull request #104551 → libseccomp: 2.5.0 -> 2.5.1 → https://git.io/Jkwzv
<{^_^}> [nixpkgs] @marsam pushed 2 commits to staging: https://git.io/JkMK9
<jneto> nur is the only flake I'm using that is giving me this errors - and the only to have a flake.lock.
<jneto> I've tried to override its flake.lock via "inputs.nur.inputs.nixpkgs", no success.
gentauro has quit [Ping timeout: 240 seconds]
patagonicus9 has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #104851 → gnupg: 2.2.23 -> 2.2.24 → https://git.io/JkM6a
patagonicus has quit [Ping timeout: 240 seconds]
patagonicus9 is now known as patagonicus
<rogerr> what's the home manager way to add another dir to my path? i use bash fwiw
gentauro has joined #nixos
<rogerr> ah sessionPath
growpotk- has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #104852 → gnome3.gnome-devel-docs: 3.38.1 -> 3.38.2 → https://git.io/JkMi2
<jneto> I've only removed the flake.lock and now it works as intended.
<{^_^}> [nixpkgs] @r-ryantm opened pull request #104853 → glib: 2.66.2 -> 2.66.3 → https://git.io/JkMPk
aw has quit [Quit: Quitting.]
spacefrogg has quit [Quit: Gone.]
aw has joined #nixos
spacefrogg has joined #nixos
growpotk- has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #104854 → gnome3.gnome-boxes: 3.38.1 -> 3.38.2 → https://git.io/JkMPS
<rogerr> why doesn't `home.sessionPath = ["~/.local/share/foo/"];` work? echo $PATH doesn't show it in list even tho ~/.nix-profile/etc/profile.d/hm-session-vars.sh is sourced and it contains `export PATH="$PATH${PATH:+:}~/.local/share/foo/"`
<{^_^}> [nixpkgs] @jekor opened pull request #104855 → vips: add librsvg dependency → https://git.io/JkMPA
<{^_^}> [nixpkgs] @ryantm closed pull request #98772 → kotlin: 1.4.0 -> 1.4.10 → https://git.io/JUa1L
bbarker has joined #nixos
stephank has quit [Quit: stephank]
<{^_^}> [nixpkgs] @workflow opened pull request #104856 → vimPlugins.vim-textobj-entire: init at 2018-01-19 → https://git.io/JkMXS
stephank has joined #nixos
<{^_^}> Channel nixos-20.09-small advanced to https://github.com/NixOS/nixpkgs/commit/af87b1b4830 (from 3 hours ago, history: https://channels.nix.gsc.io/nixos-20.09-small)
<{^_^}> [nixpkgs] @svmhdvn closed pull request #104743 → haskellPackages.fmt: unbreak → https://git.io/JkPQ9
selfsymmetric-mu has left #nixos ["gone to the land of dead hiccups and extinguished light bulbs"]
<sss2> nix-build -A config.system.build.isoImage -I nixos-config=modules/installer/cd-dvd/installation-cd-minimal.nix --arg system \"i686-linux\" default.nix
<sss2> what wrong here ?
<sss2> last time i executed it it was worked
<sss2> and now it failing with error: a 'i686-linux' with features {big-parallel} is required to build '/nix/store/d78z4c8jw8m3ixwg2g2jlpgm2h2pqmrq-linux-5.4.80.drv', but I am a 'x86_64-linux' with features {kvm}
jmeredith has quit [Quit: Connection closed for inactivity]
<{^_^}> [nixpkgs] @redvers opened pull request #104857 → corosync: 2.4.3 -> 2.4.5 → https://git.io/JkMMs
<siraben> TIL pypandoc depends on pandoc depends on Haskell
<{^_^}> [nixpkgs] @marsam merged pull request #104846 → nodejs: 12.19.1 -> 12.20.0, 15.2.1 -> 15.3.0 → https://git.io/JkMrA
<{^_^}> [nixpkgs] @marsam pushed 3 commits to master: https://git.io/JkMMa
<clever> sss2: you want --argstr system i686-linux
<clever> sss2: though i'm not sure on the other part of the error
<{^_^}> [nixpkgs] @r-ryantm opened pull request #104858 → gnome3.gnome-calculator: 3.38.1 -> 3.38.2 → https://git.io/JkMM9
Supersonic112 has joined #nixos
Supersonic has quit [Ping timeout: 260 seconds]
Supersonic112 is now known as Supersonic
<{^_^}> Channel nixpkgs-20.09-darwin advanced to https://github.com/NixOS/nixpkgs/commit/af87b1b4830 (from 4 hours ago, history: https://channels.nix.gsc.io/nixpkgs-20.09-darwin)
iH8c0ff33 has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #104859 → flyway: 7.2.0 -> 7.2.1 → https://git.io/JkMyc
cosimone has quit [Quit: cosimone]
<siraben> Is it possible to contribute to Nix documentation using markdown instead of docbook?
<{^_^}> [nixpkgs] @RaghavSood merged pull request #104444 → bottom: 0.4.7 -> 0.5.1 → https://git.io/Jk2Sc
<{^_^}> [nixpkgs] @RaghavSood pushed 2 commits to master: https://git.io/JkMSv
<ryantm> siraben: Yes, the Nix repo already switched over to all markdown.
<ryantm> In nixpkgs, it has been possible to write whole sections in markdown for a couple years.
<siraben> ryantm: Oh, great!
<siraben> Hm, but I still see things like `doc/stdenv/cross-compilation.xml`
<ryantm> siraben: Yeah, most of the nixpkgs manual is still in Docbook.
<ryantm> It seems like a good path forward might be to start rewriting sections in markdown one at a time.
<ryantm> The machinery is already in place to compile sections written in markdown.
endformationage has quit [Quit: WeeChat 2.9]
<{^_^}> [nixpkgs] @berbiche opened pull request #104860 → cagebreak: 1.4.3 -> 1.4.4 → https://git.io/JkM9X
<{^_^}> [nixpkgs] @r-ryantm opened pull request #104861 → tmuxp: 1.6.2 -> 1.6.3 → https://git.io/JkMHn
iH8c0ff33 has quit [Ping timeout: 246 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #104862 → vimwiki-markdown: 0.3.2 -> 0.3.3 → https://git.io/JkMQi
<siraben> ryantm: Thanks.
<siraben> Anyone know if there a collection of common errors encountered when trying to cross-compile things?
<siraben> This is the second time I've seen `ld: cannot find crti.o: No such file or directory`, hm.
iH8c0ff33 has joined #nixos
SanchayanMaity has joined #nixos
iH8c0ff33 has quit [Ping timeout: 272 seconds]
lord| has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @kylewlacy opened pull request #104863 → plex-media-player: remove myself as a maintainer → https://git.io/JkMdz
lord| has joined #nixos
lopsided98 has quit [Ping timeout: 264 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #104864 → urh: 2.8.9 -> 2.9.0 → https://git.io/JkMbY
bbarker has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @berbiche opened pull request #104865 → mpv: enable sixel support → https://git.io/JkMAO
Rusty1 has quit [Quit: WeeChat 2.3]
growpotkin has quit [Quit: ZNC 1.8.2 - https://znc.in]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #104866 → mavproxy: 1.8.24 -> 1.8.27 → https://git.io/JkMhM
mutantmell has quit [Quit: WeeChat 2.9]
jonatanb has joined #nixos
waleee-cl has quit [Quit: Connection closed for inactivity]
mutantmell has joined #nixos
jonatanb has quit [Ping timeout: 272 seconds]
ddellacosta has quit [Ping timeout: 240 seconds]
alp has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @RaghavSood merged pull request #104863 → plex-media-player: remove myself as a maintainer → https://git.io/JkMdz
palo1 has joined #nixos
<{^_^}> [nixpkgs] @RaghavSood pushed 2 commits to master: https://git.io/JkDv6
palo has quit [Ping timeout: 240 seconds]
palo1 is now known as palo
Ariakenom has joined #nixos
noudle has joined #nixos
orivej has quit [Ping timeout: 246 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #104867 → vcstool: 0.2.14 -> 0.2.15 → https://git.io/JkDfB
raghavsood has joined #nixos
alp has joined #nixos
supercoven has joined #nixos
<rogerr> why doesn't `home.sessionPath = ["~/.local/share/foo/"];` work? echo $PATH doesn't show it in list even tho ~/.nix-profile/etc/profile.d/hm-session-vars.sh is sourced and it contains `export PATH="$PATH${PATH:+:}~/.local/share/foo/"`
negaduck has joined #nixos
ericsagnes has quit [Ping timeout: 264 seconds]
supersandro2000 has quit [Ping timeout: 265 seconds]
<typetetris> Many Thanks to whomever invented that NIXOS_LUSTRATE stuff !
<typetetris> Works like a charm.
supersandro2000 has joined #nixos
raghavsood has quit [Ping timeout: 245 seconds]
<ivan> people who liked NIXOS_LUSTRATE also liked emergency-kexec
<{^_^}> [nixpkgs] @vbgl opened pull request #104868 → coqPackages.coq-ext-lib: 0.11.2 → 0.11.3 → https://git.io/JkDkk
ericsagnes has joined #nixos
<{^_^}> [nixpkgs] @vbgl merged pull request #104145 → ocaml-ng.ocamlPackages_4_12.ocaml: init at 4.12.0-α1 → https://git.io/JkBTN
<{^_^}> [nixpkgs] @vbgl pushed 2 commits to master: https://git.io/JkDkY
<{^_^}> [nixpkgs] @r-ryantm opened pull request #104869 → jira-cli: 2.2 -> 3.0 → https://git.io/JkDkc
<{^_^}> [nixpkgs] @jonringer merged pull request #104833 → alacritty: 0.6.0-rc1 -> 0.6.0 → https://git.io/JkM0V
<{^_^}> [nixpkgs] @jonringer pushed commit from @cole-h to master « alacritty: 0.6.0-rc1 -> 0.6.0 »: https://git.io/JkDkE
iH8c0ff33 has joined #nixos
justanotheruser has quit [Quit: WeeChat 2.9]
justanotheruser has joined #nixos
domogled has joined #nixos
cole-h has joined #nixos
pushqrdx has quit [Ping timeout: 246 seconds]
eoli3n has joined #nixos
<{^_^}> [nixpkgs] @FRidh opened pull request #104870 → nixos auto-upgrade: remove flag when flake → https://git.io/JkDL9
thc202 has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #104871 → python37Packages.Wand: 0.6.3 -> 0.6.4 → https://git.io/JkDLF
<{^_^}> [nixpkgs] @cdepillabout merged pull request #104741 → haskellPackages: unbreak packages → https://git.io/JkPDJ
<{^_^}> [nixpkgs] @cdepillabout pushed 3 commits to haskell-updates: https://git.io/JkDqC
mallox has joined #nixos
FRidh has joined #nixos
deadpixels has joined #nixos
<bqv> Am I wrong in some way when I assume that for someone on github to not respond and demonstrably ignore a direct ping, is quite rude?
<{^_^}> [nixpkgs] @r-ryantm opened pull request #104872 → python37Packages.thinc: 7.4.2 -> 7.4.3 → https://git.io/JkDmv
<bqv> I feel like I should ask because it's happened a lot of times now
<bqv> In fairness, not exclusively in the context of nix, just mostly
<deadpixels> Hi! A newbie question here: I was playing around with nix-shell yesterday and really love it. however when I try to run the command with --pure the build fails because ALSA cannot be found. I assume I have to enable pulseaudio or similar in the same way I do in my nix configuration. How do I do that when invoking nix-shell?
Sellow has joined #nixos
<Abdullah> I want to enable pulseaudio support for polybar. How can I do that?
<ivan> bqv: are people obligated to respond to things?
<Abdullah> pulseaudio and mp3 support for polybar
<Sellow> Is this search https://search.nixos.org/packages also used for searching for packages for just Nix (not NixOS)?
<bqv> ivan: that's my question. As a policy, I always at least respond that I don't have time currently or I don't care. I assumed everyone would at least extend that courtesy too, but that is seeming wrong
<{^_^}> [nixpkgs] @peti pushed 2 commits to haskell-updates: https://git.io/JkDmd
red[evilred] has quit [Quit: Idle timeout reached: 10800s]
cr4y1_ has joined #nixos
<ivan> bqv: sometimes the best way to express my total disinterest or disapproval is through silence
<bqv> So I'm right to assume it's rude, then
karantan has joined #nixos
<ivan> I think there's some level of projection involved in considering it rude in general, though it can be obviously rude in some contexts
<bqv> Hm, ok.
<ivan> you can consider some edge cases with e.g. very popular people
<energizer> bqv: some people manage their time/attention by turning off github notifications, or only respond to emails on fridays, or are too in-demand to respond to everyone, or whatever. so it's not necessarily disrespect. but that's certainly one of the things it can indicate.
<bqv> Fair point
<Abdullah> How can I compile polybar with extra features like puluseaudio and mpd?
<{^_^}> [nixpkgs] @r-ryantm opened pull request #104873 → python37Packages.jupyterlab-git: 0.22.3 -> 0.23.1 → https://git.io/JkDY4
<karantan> hi, how can I get the path of the haproxy config? I want to change the "ExecStartPre" command but I want to keep the original part ("${pkgs.haproxy}/sbin/haproxy -c -f ${haproxyCfg}")
alp has quit [Ping timeout: 272 seconds]
<karantan> but I don't know how to define `haproxyCfg` var
<simpson> Abdullah: `polybar.override { mpdSupport = true; pulseSupport = true; }` might work; I'm checking to see whether it builds. Reading the derivation for polybar will show you the different available flags. (There's also `polybarFull`, built with everything.)
<energizer> it can be sorta odd when an expert is hanging out in a support channel, someone asks a reasonable question and expert doesnt respond. on one hand they could easily answer the question; on the other hand that's pretty much always true and cumulatively could create huge demands on their time.
<Abdullah> energizer: I wish I could. Its my 3rd day in this channel and 2nd day on nixos. I hope someone will answer you
<{^_^}> [nixpkgs] @r-ryantm opened pull request #104874 → python37Packages.trimesh: 3.8.13 -> 3.8.14 → https://git.io/JkDOI
<energizer> Abdullah: i'm responding to bqv's query, i dont have a question of my own
<energizer> tho actually i did have one earlier
<Abdullah> simpson: giving me error. error: syntax error, unexpected '{', expecting '.' or '=', at /etc/nixos/configuration.nix:141:20
<sphalerite> bqv: yep, agree with energizer. I have a long list of github notifications that I intend to get to "eventually" and haven't yet — definitely not out of intentional rudeness. Maybe I could manage my time better, but eeeeh.
<Abdullah> polybar.override { mpdSupport = true;
<energizer> Abdullah: for a syntax error you'll probably have to post your code
<rogerr> anyone doing neovim with rust support? help me get mine set up?
werner291 has joined #nixos
<rogerr> home manager fwiw
<bqv> sphalerite: yeah, makes sense
<sphalerite> bqv: and I guess it's the same old open-source thing: most of us aren't getting paid to support ~randomers on github issues and have personal lives or jobs that are more important and therefore get more of our limited resources.
cyphase has quit [Ping timeout: 256 seconds]
<simpson> Abdullah: Put it in parentheses and put it in your list of packages.
cfricke has joined #nixos
<bqv> sphalerite: at least in the context of nixpkgs, that to me screams the need for more maintainers, yet everyone seems against that idea?
<Abdullah> polybar.override { mpdSupport = true; pulseSupport = true }; ?
<Abdullah> simpson:^^
<etu> (polybar.override { mpdSupport = true; pulseSupport = true })
<etu> (polybar.override { mpdSupport = true; pulseSupport = true; })
<Abdullah> Thanks
<simpson> Abdullah: Consult your Nix tutorial. `packages = [ ... (polybar.override ...) ... ];` Recall that Nix has strange rules for lists; spaces, not commas, separate list items.
<sphalerite> bqv: I don't know where you get that impression from. I'm not against that for example.
<Abdullah> working now
<bqv> Last I saw it discussed, I thought the outcome was that the requirements to gain commit access were not lowered
<bqv> And instead, those with access but idle were dropped
cyphase has joined #nixos
<sphalerite> bqv: also, if it's only a matter of access, you can for example post it in https://discourse.nixos.org/t/prs-in-distress/3604
<sphalerite> bqv: idle members being dropped isn't in contradiction with more people getting access.
<bqv> It's not, but you can see how combined with the previous, it gave me the impression
<energizer> it is tho
<energizer> it causes fewer people to have access rather than more
teto has joined #nixos
werner291 has quit [Ping timeout: 272 seconds]
werner292 has joined #nixos
saschagrunert has joined #nixos
<{^_^}> [nixpkgs] @etu merged pull request #104870 → nixos auto-upgrade: remove flag when flake → https://git.io/JkDL9
<{^_^}> [nixpkgs] @etu pushed 2 commits to master: https://git.io/JkDsH
zupo has joined #nixos
werner292 is now known as werner291
dadada_ has quit [Ping timeout: 240 seconds]
dadada_ has joined #nixos
<sphalerite> energizer: ok, but idle maintainers aren't helpful from the getting-stuff-done perspective
vidbina has joined #nixos
afics has quit [Ping timeout: 240 seconds]
lunik1 has quit [Ping timeout: 240 seconds]
<energizer> sphalerite: they're idle until they're not
Sellow has left #nixos ["The Lounge - https://thelounge.chat"]
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<eyJhb> For how long do they need to be inactive to be dropped?
afics has joined #nixos
m0rphism has joined #nixos
malook has joined #nixos
cyphase has quit [Ping timeout: 272 seconds]
<sphalerite> iirc it was a year or two
<eyJhb> Well, that seems OK then. Thought it was maybe 6 months
<eyJhb> Because I know I have little time during a semester, etc.
<cole-h> rfcs#55
<cole-h> It's a year.
<{^_^}> https://github.com/NixOS/rfcs/pull/55 (by tilpner, 1 year ago, merged): [RFC-0055] Retire inactive nixpkgs committers
davidv7 has joined #nixos
<{^_^}> [darwin-stubs] @thefloweringash opened pull request #4 → Add github workflow to upload stable tarball → https://git.io/JkDct
cyphase has joined #nixos
domogled has quit [Ping timeout: 240 seconds]
cole-h has quit [Quit: Goodbye]
<omasanori[m]> my optimistic thought: less maintenance cost, breakage, something → less burn out → less idle maintainers
zupo has joined #nixos
Boomerang has joined #nixos
SanchayanMaity has quit [Quit: SanchayanMaity]
Boomerang has quit [Remote host closed the connection]
Boomerang has joined #nixos
SanchayanMaity has joined #nixos
jonathan[m] has quit [Quit: Idle for 30+ days]
tristan[m] has quit [Quit: Idle for 30+ days]
betux[m] has quit [Quit: Idle for 30+ days]
betrion[m] has quit [Quit: Idle for 30+ days]
cyphase has quit [Ping timeout: 272 seconds]
hlolli_ has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #104875 → pwntools: 4.2.2 -> 4.3.0 → https://git.io/JkDlJ
<{^_^}> [nixpkgs] @FRidh pushed 0 commits to python-unstable: https://git.io/JkDlU
<{^_^}> [nixpkgs] @jtojnar merged pull request #104839 → gnome-user-docs: 3.38.1 -> 3.38.2 → https://git.io/JkMgu
<{^_^}> [nixpkgs] @jtojnar pushed commit from @r-ryantm to master « gnome-user-docs: 3.38.1 -> 3.38.2 »: https://git.io/JkD8T
<{^_^}> [nixpkgs] @jtojnar merged pull request #104837 → gnome3.gnome-music: 3.38.1 -> 3.38.2 → https://git.io/JkMEb
<{^_^}> [nixpkgs] @jtojnar pushed commit from @r-ryantm to master « gnome3.gnome-music: 3.38.1 -> 3.38.2 »: https://git.io/JkD8Y
<{^_^}> [nixpkgs] @guillaumecherel closed pull request #94881 → mblaze: fix mcom to use file utility. → https://git.io/JJXte
<{^_^}> [nixpkgs] @erictapen opened pull request #104876 → meli: fix runtime error with libnotmuch5 → https://git.io/JkD8l
<{^_^}> [nixpkgs] @jtojnar merged pull request #104843 → gnome3.gedit: 3.38.0 -> 3.38.1 → https://git.io/JkMwv
<{^_^}> [nixpkgs] @jtojnar pushed commit from @r-ryantm to master « gnome3.gedit: 3.38.0 -> 3.38.1 »: https://git.io/JkD8o
<{^_^}> [nixpkgs] @vincentbernat opened pull request #104877 → iosevka: update location of parameters.toml → https://git.io/JkD8P
FRidh has quit [Ping timeout: 240 seconds]
FRidh has joined #nixos
<{^_^}> [nixpkgs] @jtojnar merged pull request #104858 → gnome3.gnome-calculator: 3.38.1 -> 3.38.2 → https://git.io/JkMM9
<{^_^}> [nixpkgs] @jtojnar pushed commit from @r-ryantm to master « gnome3.gnome-calculator: 3.38.1 -> 3.38.2 »: https://git.io/JkD87
ATuin has joined #nixos
<{^_^}> [nixpkgs] @06kellyjac opened pull request #104878 → terragrunt: 0.26.4 -> 0.26.5 → https://git.io/JkD8N
werner292 has joined #nixos
werner291 has quit [Ping timeout: 272 seconds]
werner292 is now known as werner291
hnOsmium0001 has quit [Quit: Connection closed for inactivity]
<FRidh> uh oh, I have a Python change that succeeds locally, but fails on Hydra
<FRidh> with sandbox enabled
mananamenos has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #104879 → python37Packages.bellows: 0.20.3 -> 0.21.0 → https://git.io/JkDRI
pushqrdx has joined #nixos
<FRidh> ah its an i686 build, phew
<{^_^}> [nixpkgs] @sevenfourk opened pull request #104880 → viber: fixed sha256 mismatch → https://git.io/JkDR4
<{^_^}> [nixpkgs] @FRidh pushed to staging-next « Revert "Revert "Revert "cpython: fix finding headers when cross-compiling extension modules""" »: https://git.io/JkDRK
<dutchie> revert revert revert
pushqrdx has quit [Ping timeout: 246 seconds]
<siraben> yet another revert revert revert
<ar> we need to go deeper
<typetetris> Updated to nixos-20.09, now my menu-bar is missing from libreoffice now. Already tried `libreoffice --safe-mode` and disable opengl-stuff. But to no avail. Anyone has seen this and has a solution to get the menu bar back?
FRidh has quit [Ping timeout: 272 seconds]
deadpixels has quit [Ping timeout: 260 seconds]
FRidh has joined #nixos
sigmundv has joined #nixos
<{^_^}> [nixpkgs] @Br1ght0ne merged pull request #104832 → glow: 1.2.0 -> 1.2.1 → https://git.io/JkMRH
<{^_^}> [nixpkgs] @Br1ght0ne pushed 2 commits to master: https://git.io/JkDEt
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/6cea12ccff6 (from 3 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
<{^_^}> [nixpkgs] @doronbehar merged pull request #104877 → iosevka: update location of parameters.toml → https://git.io/JkD8P
<{^_^}> [nixpkgs] @doronbehar pushed 2 commits to master: https://git.io/JkDEp
kim0 has joined #nixos
domogled has joined #nixos
<FRidh> ar: that's been a while it seems 05a02c639e27ddfc8b3f9ef440a14fdccf821fc2
<{^_^}> [nixpkgs] @samuelgrf opened pull request #104881 → [20.09] pcsx2: multiple improvements → https://git.io/JkDuS
<Abdullah> What does python39Full provides?
<Abdullah> If I install it, I don't have to install pip etc?
<{^_^}> [nixpkgs] @matthiasbeyer opened pull request #104882 → wordgrinder: 0.7.2 -> 0.8 → https://git.io/JkDz3
<{^_^}> [nixpkgs] @jtojnar merged pull request #104845 → glade: 3.38.1 -> 3.38.2 → https://git.io/JkMr4
<{^_^}> [nixpkgs] @jtojnar pushed commit from @r-ryantm to master « glade: 3.38.1 -> 3.38.2 »: https://git.io/JkDzn
thibm has joined #nixos
<{^_^}> [nixpkgs] @jtojnar merged pull request #104852 → gnome3.gnome-devel-docs: 3.38.1 -> 3.38.2 → https://git.io/JkMi2
<{^_^}> [nixpkgs] @jtojnar pushed commit from @r-ryantm to master « gnome3.gnome-devel-docs: 3.38.1 -> 3.38.2 »: https://git.io/JkDz0
<vuko> Abdullah: no pip is in separate package
<Abdullah> vuko: what's best strategy to install those python packages? using pip --user or something else exists?
rprije has quit [Quit: Leaving]
kreyren has joined #nixos
ngyj has joined #nixos
<vuko> Abdullah: you can install packages from python3Packages namespace
<vuko> for python 39 it's python39Packages
kreyren has quit [Remote host closed the connection]
<Abdullah> okay
kreyren has joined #nixos
<{^_^}> [nixpkgs] @erictapen merged pull request #104876 → meli: fix runtime error with libnotmuch5 → https://git.io/JkD8l
<{^_^}> [nixpkgs] @erictapen pushed to master « meli: fix runtime error with libnotmuch5 »: https://git.io/JkDgL
justanotheruser has quit [Quit: WeeChat 2.9]
justanotheruser has joined #nixos
sangoma has joined #nixos
supersandro2000 has quit [Quit: The Lounge - https://thelounge.chat]
supersandro2000 has joined #nixos
<{^_^}> [nixpkgs] @doronbehar opened pull request #104883 → openjdk: Merge passthrus → https://git.io/JkDaT
werner292 has joined #nixos
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<FRidh> Abdullah: please read the Python section of the Nixpkgs manual
werner291 has quit [Ping timeout: 272 seconds]
werner292 is now known as werner291
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #103466 → open-vm-tools: 11.1.5 -> 11.2.0 → https://git.io/JkLGj
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkDaw
pushqrdx has joined #nixos
alp has joined #nixos
gnidorah has joined #nixos
<gnidorah> ma27[m]: hi. perhaps we could merge this? https://github.com/NixOS/nixpkgs/pull/104294
<{^_^}> #104294 (by gnidorah, 5 days ago, open): openxray: replace fix with proper patch
<{^_^}> [nixpkgs] @Mic92 opened pull request #104884 → yubioath: fix python git dependency → https://git.io/JkDVQ
<pushqrdx> can someone assist me getting that cachix thing to work, i am trying to use an
<pushqrdx> Second i added the overlay to $HOME/.config/nixpkgs/overlays/neovim.nix
<pushqrdx> First i installed cachix, ran cachix use, added the import to my configuration.nix rebuilt and rebooted
<pushqrdx> overlay but i can't get nix-env to see it.
<pushqrdx> Now i am trying to run `nix-env -iA nixpkgs.neovim-nightly` but getting error: attribute 'nixpkgs' in selection path 'nixpkgs.neovim-nightly' not found
<pushqrdx> i can see the cache added to my nix.conf correctly so i don't know why nix-env can't recognize it
zarel has quit [Ping timeout: 256 seconds]
zarel has joined #nixos
<{^_^}> [nix] @regnat opened pull request #4282 → fix the hash rewriting for ca-derivations → https://git.io/JkDrY
iH8c0ff33 has quit [Ping timeout: 272 seconds]
CMCDragonkai1 has joined #nixos
negaduck has quit [Quit: Textual IRC Client: www.textualapp.com]
iH8c0ff33 has joined #nixos
damjan has joined #nixos
FRidh has quit [Ping timeout: 272 seconds]
FRidh has joined #nixos
iH8c0ff33 has quit [Ping timeout: 272 seconds]
<thibm> pushqrdx: what is the output of `nix-channel --list`?
CMCDragonkai1 has quit [Remote host closed the connection]
<pushqrdx> on user level it's nothing, on root it's the nix unstable
<thibm> what is the name of the channel?
<thibm> pushqrdx: in "nix-env -iA nixpkgs.neovim-nightly", nixpkgs is the name of the channel
<damjan> how would I write a derivation that fetches more than one tarball and combines them all?
<thibm> you may replace nixpkgs by nixos
<damjan> I do have this line to fetch them all `additionalApps = map ({url, sha256, ...}: pkgs.fetchurl {inherit url sha256;}) apps;`
za1b1tsu has joined #nixos
<za1b1tsu> Hey, I'm trying to learn Nix Expressions, building etc
<za1b1tsu> but I think I'm not smart enough for the official documentation
<etu> za1b1tsu: Have you looked at the nix pills?
<za1b1tsu> you fine folks can recommend some more noob friendly tutorials
<za1b1tsu> ?
<za1b1tsu> no, what are those
<thibm> damjan: I think there are several solutions. You can take a look at symlinkJoin
<damjan> thibm: let me see
<thibm> if what you want is all the files in one directory
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #102478 → openapi-generator-cli: 4.2.2 -> 4.3.1 → https://git.io/JT5F7
<pushqrdx> thibm good god, that was it, i have been banging my head for hours lol
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkDKo
<etu> za1b1tsu: Click links and you get to look at different concepts and things step by step
<za1b1tsu> etu, still official documentation
<za1b1tsu> but presented differently?
<thibm> pushqrdx: nixpkgs is the default channel name on non-NixOS Nix installation, on NixOS it's nixos ;)
zimbatm has quit [Ping timeout: 240 seconds]
<pushqrdx> thibm one other question though, if i do `cachix use` it modifyies /etc/nix/nix.conf adding the used cache, how can i remove something that i used?
zimbatm has joined #nixos
<thibm> pushqrdx: IIRC, it should modify /etc/nixos on nixos, not /etc/nix/nix.conf (which is, in fact, modified by the /etc/nixos configuration)
<thibm> to remove it just edit the lines
<{^_^}> [nixpkgs] @iAmMrinal0 opened pull request #104886 → google-cloud-sdk: 315.0.0 -> 319.0.0 → https://git.io/JkD6T
<thibm> I don't think the cli has such an option
<thibm> (On nixos deleting the file /etc/nixos/cachix/<name>.nix should be enough. But I never tried actually)
<pushqrdx> thibm so after i added the generated cachix.nix to my configuration and rebuilt i noticed that /etc/nix/nix.conf had the extra entries, so that's just my configuration after a rebuild that did that?
<thibm> yes
<pushqrdx> thibm makes sense, thanks for saving me :D
<etu> za1b1tsu: https://nixcloud.io/tour/?id=1 maybe?
<thibm> normally you import the generated cachix.nix from your configuration.nix (as told by the CLI), and this cachix.nix imports all files in /etc/nixos/cachix/. These files add the options nix.binaryCaches and nix.binaryCachePublicKeys, which are used to generate /etc/nix/nix.conf
<pushqrdx> thibm yup that's exactly it, i didn't notice the /cachix directory thanks for pointing it out
iH8c0ff33 has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #102566 → rdkafka: 1.4.4 -> 1.5.2 → https://git.io/JTdjn
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkDiC
da_dada has joined #nixos
dadada_ has quit [Ping timeout: 256 seconds]
iH8c0ff33 has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #102572 → mdds: 1.6.0 -> 1.7.0 → https://git.io/JTFUJ
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkDPY
<za1b1tsu> etu, thank you for your recommendations
<{^_^}> [nixpkgs] @primeos merged pull request #104789 → mesa: 20.2.2 -> 20.2.3 → https://git.io/Jk19g
<{^_^}> [nixpkgs] @primeos pushed to staging « mesa: 20.2.2 -> 20.2.3 (#104789) »: https://git.io/JkDPE
<{^_^}> [nixpkgs] @SuperSandro2000 opened pull request #104887 → mdds: mark broken on darwin → https://git.io/JkDPz
werner292 has joined #nixos
whald has joined #nixos
mkaito has joined #nixos
mkaito has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #104046 → franz: 5.5.0 -> 5.6.1 → https://git.io/JkWXK
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkDPy
werner291 has quit [Ping timeout: 272 seconds]
werner292 is now known as werner291
zimbatm_ has joined #nixos
<etu> za1b1tsu: I know I have seen something else at some point as well... But all I remember is that it was a repo on github... :D
zimbatm has quit [Ping timeout: 240 seconds]
kloenk has quit [Quit: WeeChat 2.9]
sangoma has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @primeos merged pull request #104791 → dav1d: 0.7.1 -> 0.8.0 → https://git.io/Jk1Hv
<{^_^}> [nixpkgs] @primeos pushed to staging « dav1d: 0.7.1 -> 0.8.0 (#104791) »: https://git.io/JkDXw
bobo_ has joined #nixos
<{^_^}> [nixpkgs] @doronbehar opened pull request #104888 → gnomeExtensions.easyScreenCast: init at 1.1.0 → https://git.io/JkDXA
bobo__ has joined #nixos
za1b1tsu has quit [Ping timeout: 240 seconds]
zimbatm has joined #nixos
bobo_ has quit [Ping timeout: 256 seconds]
kloenk[m] has joined #nixos
zimbatm_ has quit [Ping timeout: 260 seconds]
bobo__ has quit [Ping timeout: 240 seconds]
<adisbladis> etu: https://github.com/tazjin/nix-1p perhaps?
<etu> adisbladis: Yes! that's the one! And the person seems to be gone3
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #104834 → python3Packages.pyHS100: 0.3.5.1 -> 0.3.5.2 → https://git.io/JkME3
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkDM7
mkaito has quit [Quit: WeeChat 2.9-dev]
FRidh has quit [Ping timeout: 260 seconds]
mkaito has joined #nixos
mkaito has joined #nixos
FRidh has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #101539 → wordgrinder: 0.7.2 -> 0.8 → https://git.io/JTVMt
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkDDi
kloenk[m] has quit [Quit: authenticating]
wnklmnn has joined #nixos
kloenk has joined #nixos
boxscape has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #104864 → urh: 2.8.9 -> 2.9.0 → https://git.io/JkMbY
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkDyu
zimbatm_ has joined #nixos
zimbatm has quit [Ping timeout: 260 seconds]
za1b1tsu has joined #nixos
iH8c0ff33 has joined #nixos
<{^_^}> [nixos-homepage] @edolstra merged pull request #647 → Add the merch graphic to Donate page → https://git.io/JkPOl
<{^_^}> [nixos-homepage] @edolstra pushed 3 commits to master: https://git.io/JkDSt
<{^_^}> [nixos-homepage] @edolstra pushed 0 commits to donate-graphics: https://git.io/JkDSq
<{^_^}> [nixos-homepage] @edolstra merged pull request #648 → Change landing page description → https://git.io/JkXgl
<{^_^}> [nixos-homepage] @edolstra pushed 2 commits to master: https://git.io/JkDSB
<{^_^}> [nixos-homepage] @edolstra pushed 0 commits to change-landing-page-description-and-add-why-nix-icons: https://git.io/JkDSR
<za1b1tsu> etu, my connection failed, did you remember which github repo?
tarruda has quit [Ping timeout: 260 seconds]
sangoma has joined #nixos
sevenfourk has joined #nixos
<za1b1tsu> etu. cheeeers
ilmu1 has quit [Ping timeout: 264 seconds]
domogled has quit [Ping timeout: 256 seconds]
domogled has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 closed pull request #104853 → glib: 2.66.2 -> 2.66.3 → https://git.io/JkMPk
<{^_^}> [nixpkgs] @ztzg opened pull request #104889 → zookeeper: 3.4.12 -> 3.6.2 & assorted changes → https://git.io/JkDHU
werner292 has joined #nixos
werner291 has quit [Ping timeout: 272 seconds]
werner292 is now known as werner291
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #104872 → python37Packages.thinc: 7.4.2 -> 7.4.3 → https://git.io/JkDmv
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkDQL
<tazjin> speaking of nix-1p, would someone like to review https://github.com/tazjin/nix-1p/pull/5 ?
<{^_^}> tazjin/nix-1p#5 (by tazjin, 5 minutes ago, open): Add small section about `or` expressions
<tazjin> a minor change, but something that's been missing and should be included for completeness sake
orivej has joined #nixos
<tazjin> (cc adisbladis, gchristensen)
<{^_^}> [nixpkgs] @Flakebi opened pull request #104890 → rgp: 1.8 -> 1.9 → https://git.io/JkDQa
<adisbladis> tazjin: LGTM
lsix has joined #nixos
<adisbladis> The only thing to maybe add is what happens in the case of nested access
<adisbladis> `let set = { }; in set.x.y.z or 23`
<adisbladis> But idk, maybe not for a 1p
<mkaito> could someone explain to me why this results in infinite recursion? https://gist.github.com/mkaito/38bad4494f558235f8bc4d5f2b1d0a14
<tazjin> adisbladis: mhm, difficult balance
<adisbladis> mkaito: `config = ... lib.mapAttrsToList config ...`
<adisbladis> tazjin: Tbh I think I'd skip it
<adisbladis> It's easy enough to explore in the repl once you know the syntax exists in the first place
<{^_^}> [nixpkgs] @lukegb opened pull request #104891 → factorio-experimental, factorio-headless-experimental: 1.1.0 -> 1.1.1 → https://git.io/JkD7R
domogled has quit [Ping timeout: 246 seconds]
<mkaito> so why does something like `lib.mkMerge ([(flip mapAttrs' cfg.secrets` work
za1b1tsu has quit [Ping timeout: 256 seconds]
<mkaito> oh well guess I'm taking the uber annoying route
<mkaito> and setting each attr in config separately. I only need to set about 12 of them...
<adisbladis> mkaito: I usually hate linking nix pills... But here goes https://nixos.org/guides/nix-pills/nixpkgs-overriding-packages.html#idm140737319682704
gnidorah has quit [Quit: Connection closed for inactivity]
<tazjin> adisbladis: I've added a minor sentence about it, but no example
<{^_^}> [nixpkgs] @SuperSandro2000 opened pull request #104892 → mpc-qt: Fix compilation failure due to mpv changes → https://git.io/JkD5A
<adisbladis> tazjin: Nice
malook has quit [Quit: malook]
srenatus has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 opened pull request #104893 → python37Packages.jupyterlab-git: 0.22.3 -> 0.23.1 → https://git.io/JkDFf
cfricke has quit [Quit: WeeChat 2.9]
<srenatus> hi there. I'm trying to use vscode-with-extensions on an osx system with plain `nix` installed. I've found the wiki, but I don't know where to put that let expression. ~/.defexprs? what would I `nix-env -i` then?
<{^_^}> [nixpkgs] @saschagrunert opened pull request #104894 → slirp4netns: 1.1.6 -> 1.1.7 → https://git.io/JkDFs
<{^_^}> [nixpkgs] @StillerHarpo opened pull request #104895 → monetdb: 11.39.5 -> 11.39.7 → https://git.io/JkDbQ
sevenfourk has quit [Ping timeout: 240 seconds]
supersandro2000 has quit [Ping timeout: 265 seconds]
domogled has joined #nixos
supersandro2000 has joined #nixos
tarruda has joined #nixos
domogled has quit [Ping timeout: 256 seconds]
domogled has joined #nixos
gentauro has quit [Quit: leaving]
zupo has joined #nixos
<{^_^}> [nixpkgs] @doronbehar closed pull request #94460 → restinio: init at 0.6.8.1 → https://git.io/JJVnW
domogled has quit [Client Quit]
domogled has joined #nixos
<{^_^}> [nixpkgs] @erictapen pushed to release-20.09 « opensc: 0.20.0 -> 0.21.0 »: https://git.io/JkDAh
FRidh has quit [Ping timeout: 246 seconds]
FRidh has joined #nixos
raghavsood has joined #nixos
<{^_^}> [nixpkgs] @marsam merged pull request #101974 → chromedriver: 85.0.4183.87 -> 86.0.4240.22 → https://git.io/JT1FD
<{^_^}> [nixpkgs] @marsam pushed commit from @nbr to master « chromedriver: 85.0.4183.87 -> 86.0.4240.22 (#101974) »: https://git.io/JkDxz
bpye has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @RaghavSood merged pull request #104887 → mdds: mark broken on darwin → https://git.io/JkDPz
<{^_^}> [nixpkgs] @RaghavSood pushed 2 commits to master: https://git.io/JkDpz
domogled has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @freezeboy opened pull request #104896 → [20.09] git: 2.28.0 -> 2.29.2 → https://git.io/JkDh6
sss2 has quit [Quit: Leaving]
<{^_^}> [nixpkgs] @erictapen pushed to release-20.03 « opensc: 0.20.0 -> 0.21.0 »: https://git.io/JkDjc
<eyJhb> Can I use Snap on NixOS? Just a basic app?
sevenfourk has joined #nixos
gentauro has joined #nixos
<bqv> eyJhb: snap will not work. Appimage and flatpak do though
<bqv> I'm curious, how awful do you guys think it'd be to have a guix store in a nix derivation
<bqv> Cause I currently have a guix store for literally one package
<bqv> Maybe I could automate it…
<bqv> There's guix pack, too
<eyJhb> Which package?
<bqv> Jami
<{^_^}> [nixos-homepage] @roberth opened pull request #649 → Avoid "magic" → https://git.io/Jkyew
<Abdullah> I have a clone of dmenu. How can I install it?
<Abdullah> docs are unclear to me
sevenfourk has quit [Ping timeout: 246 seconds]
<bqv> I want to have an adapter sort of thing, so the guix store is actually just the nix store under the hood, but I guess that'd be insane
<{^_^}> [nixpkgs] @edwtjo pushed to master « perlPackages.TermReadPassword: init at 0.11 »: https://git.io/Jkye7
<{^_^}> [nixpkgs] @adisbladis merged pull request #104894 → slirp4netns: 1.1.6 -> 1.1.7 → https://git.io/JkDFs
<{^_^}> [nixpkgs] @adisbladis pushed 2 commits to master: https://git.io/Jkye5
civodul has joined #nixos
Boomerang_ has joined #nixos
<eyJhb> bqv: is guix store just in /guix/store? Just corious
werner292 has joined #nixos
<adisbladis> eyJhb: /gnu/store
<bqv> Well, mine is ~/gnu/store, rn
<bqv> (which takes a hecktonne of frobnicating but worksr
<supersandro2000> Abdullah: you could overwrite the source of the dmenu in nixpkgs
<bqv> Hence I'm thinking, if I can package a store into my ~, why not a derivation
werner292 is now known as werner291
werner291 has quit [Ping timeout: 272 seconds]
<Abdullah> supersandro2000: I'll check for options in wiki
Boomerang has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @Ma27 merged pull request #104262 → pass: separate dmenu from x11Support → https://git.io/JkEEM
<{^_^}> [nixpkgs] @Ma27 pushed 2 commits to master: https://git.io/Jkyvu
<Abdullah> supersandro2000: The repo should have something special for nix? or it will work?
supercoven has quit [Ping timeout: 240 seconds]
andreh has quit [Quit: leaving]
<etu> Abdullah: You probably want to make an overlay where you override the src of the dmenu package.
lunik1 has joined #nixos
<{^_^}> [flake-registry] @edolstra pushed to master « Add nickel »: https://git.io/Jkyfz
mikki has joined #nixos
<lunik1> any Opera users? video playback does not seem to work - on arch you needed opera-ffmpeg-codecs (like with vivaldi), but that does not seem to exist in nixpkgs
<{^_^}> [nixpkgs] @AndersonTorres merged pull request #104892 → mpc-qt: Fix compilation failure due to mpv changes → https://git.io/JkD5A
<{^_^}> [nixpkgs] @AndersonTorres pushed 2 commits to master: https://git.io/Jkyf7
mahogany has joined #nixos
<eyJhb> It is weird with Guix. Do we know what/when/whatever they branched off Nix/NixOS?
<andreh1> eyJhb: IIRC they didn't branch off
mikki has left #nixos ["https://quassel-irc.org - Chat comfortably. Anywhere."]
<eyJhb> andreh1: A lot of copy pasting then?
<andreh1> Guix took the source for the daemon and vendored it in
<andreh1> The rest was built from scratch
<adisbladis> It's not quite that simple
<adisbladis> Decopuling the daemon from Nix the language is no small feat
<andreh1> sure, I don't really know the history really
<{^_^}> [nixpkgs] @ryantm merged pull request #104862 → vimwiki-markdown: 0.3.2 -> 0.3.3 → https://git.io/JkMQi
<{^_^}> [nixpkgs] @ryantm pushed 2 commits to master: https://git.io/JkyJm
<andreh1> Just saying that there was no "git fork"
<adisbladis> Semantics
<adisbladis> It's still a fork regardless
fendor_ has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #104880 → viber: 7.0.0.1035 -> 13.3.1.22 → https://git.io/JkDR4
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkyJR
<thibm> eyJhb: Guix turned 8 years old 2 days ago
<andreh1> fair enough
<thibm> But I don't what was the state at the "birthday"
boxscape has quit [Ping timeout: 264 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #104897 → python37Packages.genanki: 0.9.0 -> 0.9.1 → https://git.io/JkyUi
<{^_^}> [nixpkgs] @erictapen merged pull request #104891 → factorio-experimental, factorio-headless-experimental: 1.1.0 -> 1.1.1 → https://git.io/JkD7R
<{^_^}> [nixpkgs] @erictapen pushed commit from @lukegb to master « factorio-experimental, factorio-headless-experimental: 1.1.0 -> 1.1.1 »: https://git.io/JkyUx
fendor has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @lheckemann merged pull request #102855 → nixos/zram: add zramSwap.memoryMax option → https://git.io/JTADH
<{^_^}> [nixpkgs] @lheckemann pushed 2 commits to master: https://git.io/JkyTk
<eyJhb> thibm: Didn't even know it was that old. It just seems very alike, besides not using Nix
<Abdullah> lunik1: I kept getting some prompt that flashing is going to be disabled soon in opera when I was on arch 3 days ago
<georgyo[m]> Using flakes, how does one references nixos modules in nixpkgs, such as https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/installer/cd-dvd/installation-cd-graphical-base.nix
<georgyo[m]> I see this line in nixpkg's flake.nix, but surely not all the modules need to be referenced there: https://github.com/NixOS/nixpkgs/blob/71082c2d6236d8c78f8f0b1a5d7cbbcc3da58b46/flake.nix#L72
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #104874 → python37Packages.trimesh: 3.8.13 -> 3.8.14 → https://git.io/JkDOI
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkyTm
<lunik1> Abdullah: I am talking about html5 video
<adisbladis> georgyo[m]: I don't think flakes provides a better way than `import "${pkgs.path}/path/to/module"`
<Abdullah> it was working for me
<lunik1> hm, youtube was telling me no formats were supported
<georgyo[m]> adisbladis: was unaware ${pkgs.path}, that seems like it would do it! Thank you
<Abdullah> it was working for me on archlinux 2 days ago
<Abdullah> no idea. I haven't installed opera in nixos yet
<Abdullah> going to install it now. will tell you if it works or not
hlolli__ has joined #nixos
<{^_^}> [nixpkgs] @kevincox merged pull request #104860 → cagebreak: 1.4.3 -> 1.4.4 → https://git.io/JkM9X
hlolli_ has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @kevincox pushed 2 commits to master: https://git.io/JkykT
LnL has quit [Ping timeout: 272 seconds]
LnL has joined #nixos
LnL has joined #nixos
<{^_^}> [nixos-homepage] @garbas merged pull request #646 → learn: adding terraform guide from nix.dev → https://git.io/JkPfw
<{^_^}> [nixos-homepage] @garbas pushed 2 commits to master: https://git.io/Jkykc
<Abdullah> http://0x0.st/iRJV.png working for me lunik1
<{^_^}> [nixos-homepage] @garbas pushed 0 commits to add-a-guide: https://git.io/JkykC
<{^_^}> [nixpkgs] @hmenke opened pull request #104898 → gitAndTools.pass-git-helper: 0.4 -> 1.1.0 → https://git.io/Jkykr
vidbina has quit [Ping timeout: 240 seconds]
cosimone has joined #nixos
<lunik1> huh videos on other channels work
wavirc22_ has quit [Ping timeout: 260 seconds]
<lunik1> maybe this is just youtube weirdness, thanks for checking
bity[m] has joined #nixos
srenatus has quit [Remote host closed the connection]
lassulus has quit [Ping timeout: 256 seconds]
euandreh has quit [Remote host closed the connection]
andreh1 has quit [Quit: WeeChat 3.0]
zakame has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #104899 → python37Packages.ha-ffmpeg: 2.0 -> 3.0.2 → https://git.io/JkyLm
euandreh has joined #nixos
<{^_^}> [nixpkgs] @ryantm merged pull request #102103 → ssm-session-manager-plugin: 1.1.61.0 -> 1.2.7.0, add macos support → https://git.io/JTyvS
<{^_^}> [nixpkgs] @ryantm pushed 2 commits to master: https://git.io/JkyLu
ngyj has quit [Remote host closed the connection]
ngyj has joined #nixos
zakame has joined #nixos
euandreh has quit [Remote host closed the connection]
lassulus has joined #nixos
kjglsgsd has joined #nixos
lukegb has quit [Quit: ~~lukegb out~~]
lukegb has joined #nixos
iH8c0ff33 has quit [Ping timeout: 260 seconds]
noudle has quit []
karantan has quit [Quit: Textual IRC Client: www.textualapp.com]
LnL has quit [Ping timeout: 265 seconds]
<{^_^}> [nixpkgs] @Mic92 merged pull request #104884 → yubioath-desktop: fix python git dependency → https://git.io/JkDVQ
<{^_^}> [nixpkgs] @Mic92 pushed to master « yubioath-desktop: fix python git dependency (#104884) »: https://git.io/Jkyq8
<{^_^}> [nixpkgs] @RaghavSood opened pull request #104900 → photoflow: 2018-08-28 -> 2020-08-28 → https://git.io/Jkymv
veleiro has joined #nixos
c0c0 has joined #nixos
veleiro` has joined #nixos
iH8c0ff33 has joined #nixos
supercoven has joined #nixos
supercoven has quit [Max SendQ exceeded]
supercoven has joined #nixos
supercoven has quit [Max SendQ exceeded]
werner292 has joined #nixos
supercoven has joined #nixos
supercoven has quit [Max SendQ exceeded]
supercoven has joined #nixos
supercoven has quit [Max SendQ exceeded]
supercoven has joined #nixos
supercoven has quit [Max SendQ exceeded]
LnL has joined #nixos
LnL has joined #nixos
veleiro has quit [Ping timeout: 246 seconds]
vika_nezrimaya has joined #nixos
werner292 is now known as werner291
<{^_^}> [nixpkgs] @bennofs merged pull request #104875 → pwntools: 4.2.2 -> 4.3.0 → https://git.io/JkDlJ
<{^_^}> [nixpkgs] @bennofs pushed commit from @r-ryantm to master « pwntools: 4.2.2 -> 4.3.0 »: https://git.io/JkyYk
iH8c0ff33 has quit [Ping timeout: 264 seconds]
kjglsgsd has quit [Ping timeout: 245 seconds]
bitmapper has quit [Quit: Connection closed for inactivity]
<vika_nezrimaya> So, as my involvement in Nixpkgs seems to grow, I've started wondering: what's the procedure to gaining commit rights in Nixpkgs? (not that I'd like to do that now, I don't deserve such a privilege yet, I'd end up merging a lot of junk and breaking everything for now lol)
<bqv> (that was not related)
<{^_^}> #50105 (by Infinisil, 2 years ago, open): New nixpkgs committers requests
jmeredith has joined #nixos
<vika_nezrimaya> oh, thanks for pointing me the right way!
<vika_nezrimaya> <3
<raghavsood> Probably better if someone else nominates you, but I nominated myself and it seemed to go alright just earlier this week
<bqv> Fix it from the inside, eh...
<raghavsood> Succeeded in not breaking master so far with my new rights, so I've got that going for me :D
iH8c0ff33 has joined #nixos
<kaliumxyz> how do I go about exposing the nix store to a docker container?
<{^_^}> [nixpkgs] @r-ryantm opened pull request #104901 → python37Packages.smart_open: 3.0.0 -> 4.0.0 → https://git.io/JkyYx
<kaliumxyz> I'm thinking either just mounting it or hosting a binary cache
<{^_^}> [nixpkgs] @sternenseemann opened pull request #104902 → ocaml-migrate-parsetree: 1.7.3 → 1.8.0; add ocaml-migrate-parsetree 2.1.0 → https://git.io/JkyOT
euandreh has joined #nixos
<vika_nezrimaya> kaliumxyz: a normal bind volume? will save space for you but also could provide stuff that you wouldn't want in a container
<vika_nezrimaya> if you wanna build something inside of a docker container you'll either have to pass a nix-daemon socket OR host nix-daemon inside with a separate store and push to a binary cache
<vika_nezrimaya> (MinIO supports S3 APIs and could probably be a decent binary cache)
<kaliumxyz> oh I can expose the socket?
<adisbladis> By far the easiest way is to do what vika_nezrimaya suggested and bind mount the store (ro) and optionally the socket
<vika_nezrimaya> kaliumxyz: I mean you could, just be careful with trusted_users
veleiro`` has joined #nixos
<vika_nezrimaya> don't run your stuff in container as root
<kaliumxyz> this is for a trusted pipeline.
<adisbladis> kaliumxyz: /nix/var/nix/daemon-socket/socket
<vika_nezrimaya> oh if it's trusted it's ok then :3
<kaliumxyz> we assume no evil actors will be able to access the docker container.
<kaliumxyz> okay
<kaliumxyz> :D
<vika_nezrimaya> trust is good
<vika_nezrimaya> I've recently started trusting my Raspberry Pi 4 to not fall in hands of someone evil while it's powered off
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<adisbladis> kaliumxyz: I've been running Gitlab CI like that for years and years
<vika_nezrimaya> though the only malicious actor in my home is my kitty who tries to disrupt my network connection
<kaliumxyz> adisbladis: this is basically the same scenario c:
davidv7_ has joined #nixos
<kaliumxyz> what do you mount? just the /nix/ folder or the socket and the store seperately?
<kaliumxyz> bad kitty, leave networking to the humans :c
veleiro` has quit [Ping timeout: 272 seconds]
<adisbladis> Some of those env vars are also important
<kaliumxyz> Thanks c:
davidv7 has quit [Ping timeout: 240 seconds]
sigmundv has quit [Read error: Connection reset by peer]
sigmundv has joined #nixos
<{^_^}> [nixpkgs] @andir merged pull request #103951 → firefox-beta-bin: 81.0b4 -> 84.0b4, firefox-devedition-bin: 80.0b8 -> 84.0b4 → https://git.io/JkncG
<{^_^}> [nixpkgs] @andir pushed 3 commits to master: https://git.io/Jkysk
za1b1tsu has joined #nixos
ilmu1 has joined #nixos
bobo_ has joined #nixos
zupo has joined #nixos
<halfbit> using protobuf in cross compilation is confusing, should I put it in buildInputs nativeBuildInputs or both?
<halfbit> if I put it in both, it tries to execute the target arch's protoc which is wrong
za1b1tsu has quit [Ping timeout: 264 seconds]
sevenfourk has joined #nixos
<adisbladis> halfbit: Which package?
waleee-cl has joined #nixos
bobo__ has joined #nixos
gustavderdrache has joined #nixos
gustavderdrache has left #nixos [#nixos]
gustavderdrache has joined #nixos
bobo_ has quit [Ping timeout: 256 seconds]
za1b1tsu has joined #nixos
<kaliumxyz> adisbladis: if its mounted read only wont it cause issues if the docker container tries to get a dependency that doesnt exist inside the nix store?
oxalica has quit [Quit: oxalica]
oxalica has joined #nixos
<adisbladis> kaliumxyz: No, that's taken care of by mounting the socket rw
bobo__ has quit [Ping timeout: 260 seconds]
<adisbladis> The daemon is responsible of writing to the store
endformationage has joined #nixos
<adisbladis> kaliumxyz: If you're using the daemon (not single user) /nix is normally ro
<adisbladis> And only mounted rw in a namespace
werner291 has quit [Quit: werner291]
sevenfourk has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #101676 → libquotient: 0.6.0 -> 0.6.2 → https://git.io/JTo3j
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/Jkycq
<halfbit> I'm making a new package
<halfbit> it requires protoc at compile time, protobuf at run time
<halfbit> both are provided by the same protobuf nixpkg
andrew has joined #nixos
Fare has joined #nixos
sangoma has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #104903 → python37Packages.spacy: 2.3.2 -> 2.3.3 → https://git.io/Jkycg
andrew has quit [Client Quit]
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
lsix has quit [Ping timeout: 260 seconds]
bobo_ has joined #nixos
werner291 has joined #nixos
werner291 has quit [Client Quit]
phalange has joined #nixos
za1b1tsu has quit [Ping timeout: 256 seconds]
<Fare> Hi. I'd like to add a package glow-lang for my language glow under development. There's no "stable" version currently. Should the package be called "glow-lang" or "glow-lang-unstable" ?
<{^_^}> [nixpkgs] @saschagrunert opened pull request #104904 → fuse-overlayfs: 1.2.0 -> 1.3.0 → https://git.io/JkyCO
zupo has joined #nixos
<lukegb> I wouldn't have the -unstable suffix
<simpson> Fare: You might not want to include your subsystem into nixpkgs yet, or at all; perhaps a flake will be a better path. (FWIW I have been thinking about Monte in nixpkgs for years, and each time I realize that it's not ready for other people; it would be a vanity project.)
<raghavsood> Is there a mini PC or desktop that I could buy for aarch64 stuff locally?
<phalange> hi folks, how do I set DPI in configuration.nix? tried services.xserver.dpi = "96" but no effect
<gchristensen> raghavsood: the question of course is whats your budget?
<adisbladis> If I could run linux on an arm mac I would buy one in a heartbeat
<raghavsood> gchristensen: let's say up to 1k?
<simpson> phalange: What does /var/log/X.0.log say about all of this? It'll usually say something if it's overriding your user-chosen configuration.
ngyj has quit [Ping timeout: 260 seconds]
domogled has joined #nixos
<raghavsood> I am considering getting an Arm mac to help with the nixpkgs updates to support it as well
<adisbladis> raghavsood: I've been tempted to get https://pine64.com/product/clusterboard-with-7-sopine-compute-module-slots/?v=0446c16e2e66 and run a small cluster
<raghavsood> Also have an x86 Mac Mini I could donate to OfBorg, if that helps - noticed grafana shows 0 darwin builders
<{^_^}> [nixpkgs] @FRidh pushed to python-unstable « Revert "Revert "Revert "cpython: fix finding headers when cross-compiling extension modules""" »: https://git.io/JkDRK
<{^_^}> [nixpkgs] @ryantm merged pull request #49366 → dydisnix: init at unstable → https://git.io/fxQng
<{^_^}> [nixpkgs] @ryantm pushed commit from @tomberek to master « dydisnix: init at unstable (#49366) »: https://git.io/JkyWv
<phalange> simpson, could the log be elsewhere? in /var/log no X.0.log
werner291 has joined #nixos
bobo_ has quit [Ping timeout: 256 seconds]
domogled has quit [Ping timeout: 260 seconds]
<Fare> simpson: maybe I should just put it in a nixpkgs fork for now, and a flake in the near future. I want my users to be able to install it deterministically with a simple nix-env command.
domogled has joined #nixos
sevenfourk has joined #nixos
FRidh has quit [Ping timeout: 260 seconds]
FRidh has joined #nixos
<simpson> phalange: It should be in /var/log under NixOS. Maybe Xorg completely failed to start? systemd might have logs as well.
<simpson> Fare: In Monte-land, we use Cachix for that, and have a GH Action which invokes Cachix as a sort of CI.
<{^_^}> [nixpkgs] @stigtsp opened pull request #104905 → [20.09] firefox-beta-bin: 81.0b4 -> 84.0b4, firefox-devedition-bin: 80.0b8 -> 84.0b4 → https://git.io/Jkylz
<phalange> simpson, no NixOS in /var/log either. x runs fine, I can set dpi with xrandr manually to 96. would just like to make it "stick"
kreyren has quit [Ping timeout: 240 seconds]
__monty__ has joined #nixos
jonatanb has joined #nixos
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<{^_^}> [nixpkgs] @Luflosi opened pull request #104906 → mosh: name -> pname → https://git.io/Jkyld
sevenfourk has quit [Quit: leaving]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #104878 → terragrunt: 0.26.4 -> 0.26.5 → https://git.io/JkD8N
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/Jky8G
<Abdullah> phalange: You can do that inside configuration.nix I think. I did it yesterday
<ekleog> b
<ekleog> oops
<Abdullah> just search for it inside wiki. HiDPI or something like that
marsh has quit [Ping timeout: 272 seconds]
<Abdullah> I removed it as I don't like it
<lukegb> phalange: are you maybe using Wayland instead of X11
marsh has joined #nixos
<lukegb> oh wait, you said you can xrandr, nvm :P
<{^_^}> [nixpkgs] @ryantm merged pull request #103357 → Add aarch64-linux support to resilio-sync pkgs → https://git.io/JkkFH
<{^_^}> [nixpkgs] @ryantm pushed 2 commits to master: https://git.io/Jky8o
kreyren has joined #nixos
<phalange> Abdullah, I found services.xserver.dpi = 96; and put that in config. after rebuild, no change.
<Abdullah> I'm noob. I don't even know what that does ;-)
<Abdullah> That's why I removed it
<Yaniel> are you perhaps overriding it in .Xresources
<phalange> lukegb, I smiled when I read that, not using wayland though
<Yaniel> that is, ~/.Xresources
<Abdullah> I have no such thing in my Xresources.
<Abdullah> I think wiki told me to do something like dpi = 80
<Abdullah> I might be wrong.
<stites[m]> Silly question! I just wrote my first flake (yay!) which includes my first nixos module (yay!) and everything appears to compile. How do I add this flake's nixosModule to my non-flake based nixos configuration?
<Yaniel> also you'll surely have to restart X11 if you change stuff like that
<Abdullah> it did not make difference for me so I removed it
<Yaniel> ideally by rebooting
<Abdullah> I rebooted today.
<Abdullah> does it make difference for a screen with 1920x1080 Yaniel
<Yaniel> you mean HiDPI?
<Yaniel> if it's the physical size of a postage stamp, yes
vigoux has quit [Quit: Coyote finally caught me]
<Yaniel> it = the screen
<Abdullah> resolution: 96x96 dots per inch
<Abdullah> this is what xdpyinfo reported for my screen.
<Abdullah> so I think I don't have to do something
mortum has joined #nixos
davidv7_ has quit [Read error: Connection reset by peer]
<Abdullah> btw my laptop had 1600x900 when it came. My good luck, it was broken so I changed it to 1920x1080
<phalange> simson, there's an option called xrandrHeads.*.monitorConfig but the * kicks up an error, and it's not clear what the * should be
<Yaniel> Abdullah: dpi is just needed to make things the same physical size across multiple screens
<Yaniel> so you don't have to struggle with UI for ants
<Abdullah> like when I connect another external monitor?
<Yaniel> if you have a 24" ish 1080p screen you don't need to touch it
jonatanb has quit [Remote host closed the connection]
<Abdullah> I have another monitor. which is 1280x1080
<simpson> phalange: Sorry, but unless you have an Xorg log, I can't help further. The log is where Xorg would explain what it's setting the DPI to, and why it was configured that way, and whether there's any warnings or errors or problems.
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #104859 → flyway: 7.2.0 -> 7.2.1 → https://git.io/JkMyc
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkyBJ
<Abdullah> I think they can find it inside their homedir. At least other distros put it there.
Maxdamantus has quit [Ping timeout: 240 seconds]
<phalange> simpson, thanks I'll investigate, cheers
<Abdullah> like **/*/X11.log
jonatanb has joined #nixos
phalange has quit [Quit: leaving]
proofofkeags__ has quit [Ping timeout: 272 seconds]
<simpson> Abdullah: It's at /var/log/X.0.log on NixOS. We don't do anything fancy to the log; we just put it there, for later debugging.
Maxdamantus has joined #nixos
<Abdullah> Ah I wasn't aware.
zupo has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #104861 → tmuxp: 1.6.2 -> 1.6.3 → https://git.io/JkMHn
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkyB0
<simpson> No worries. In very many ways, NixOS is a standard Linux distro. The software is all the same, and just slightly differently configured so that each package is treated as a capability and not just a pile of files.
bdju has quit [Read error: Connection reset by peer]
veleiro`` is now known as veleiro
<Abdullah> I'm loving it
veleiro has quit [Changing host]
veleiro has joined #nixos
<Abdullah> going to create my first video using nixos.
jonatanb has quit [Ping timeout: 264 seconds]
<simpson> Good times. NixOS is my preferred distro for streaming, too.
<stites[m]> Hi all, does anyone know how to add a flake's nixosModule to my non-flake based nixos configuration?
ATuin has quit [Ping timeout: 272 seconds]
<Yaniel> what serves as the gc root for nixos vms?
<Yaniel> or do they have one at all
<Abdullah> simpson: I use a function to create videos. But I have no fonts I think that's why some overlay texts icons aren't working.
domogled has quit [Ping timeout: 260 seconds]
<Abdullah> ffmpeg -f pulse -ac 2 -i default -f x11grab -r 30 -s 1920x1080 -i :0.0 -acodec pcm_s16le -vcodec libx264 -preset ultrafast -threads 0 -vf "drawtext=text='Follow me on  AbdullahToday  AbdullahToday  AbdullahToday  https\://abdullah.today':y=h-line_h-50:x=if(eq(t\,0)\,w\,if(lt(x\,(0-tw))\,w\,x-4)):fontsize=35:fontfile=/usr/share/fonts/nerd-fonts-complete/TTF/Ubuntu Bold Nerd Font
<Abdullah> Complete.ttf:fontcolor=green" $today.mkv
<Abdullah> It detects another font for text. But didn't know why no icons. maybe I don't have those fonts?
<Yaniel> certainly not in /usr/share/fonts
<Abdullah> ffmpeg detected the fonts path you know ;-)
<Yaniel> then why specify the full path
bdju has joined #nixos
<Abdullah> wrote it when I was on arch
<rogerr> why doesn't `home.sessionPath = ["~/.local/share/foo/"];` work? echo $PATH doesn't show it in list even tho ~/.nix-profile/etc/profile.d/hm-session-vars.sh is sourced and it contains `export PATH="$PATH${PATH:+:}~/.local/share/foo/"`
<Yaniel> but yes make sure you have the fonts you want listed in fonts.fonts
<Yaniel> in your nixos configuration
<lukegb> rogerr: if this is from a graphical session, it's possible that ~/.nix-profile/etc/profile.d/hm-session-vars.sh was already sourced into your graphical environment and won't be sourced again
<Abdullah> ah yes. lemme search for Ubuntu Nerd fonts
<rogerr> so home manager has a bug lukegb?
turlando has quit [Ping timeout: 256 seconds]
<Yaniel> https://search.nixos.org/packages is your friend
<lukegb> it depends on your setup - it's not really a bug per se
<{^_^}> [nixpkgs] @thoughtpolice pushed commit from @jcumming to master « bluespec: unstable-2020.02.09 -> unstable-2020.11.04 »: https://git.io/JkyRj
mallox has quit [Quit: WeeChat 2.9]
<Yaniel> oh yea nerdfonts is a bit special in that I've seen some people override the base font for it
<rogerr> lukegb ok i just ssh into box and echo $PATH does show my extra dir
<rogerr> when it wasn't showing that was a rdp session into i3
<rogerr> how can i fix this pls?
<lukegb> I dunno, I haven't fixed it for myself yet :^)
<rogerr> dang
<Abdullah> Yaniel: I figured it out for nerdfonts using wiki yesterday.
<rogerr> lukegb++
<{^_^}> lukegb's karma got increased to 3
<{^_^}> [nixpkgs] @thoughtpolice closed pull request #103730 → bluespec unstable-2020.02.09 -> unstable-2020.11.04 → https://git.io/JkOIu
<Abdullah> is it okay to run rebuild switch whenever I want to install a new package? or has some drawbacks?
<{^_^}> [nixpkgs] @r-ryantm opened pull request #104907 → python37Packages.dogpile_cache: 1.1.0 -> 1.1.1 → https://git.io/Jky0i
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #104855 → vips: add librsvg dependency → https://git.io/JkMPA
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/Jky0D
<Yaniel> switching fails sometimes with more complicated services
<Yaniel> but if you're just adding stuff to systemPackages and switching that shouldn't be a problem
<Yaniel> ofc you'll want to gc obsolete stuff regularly
<simpson> Wanting to install new packages is a desire which eventually goes away. Instead, nix-shell is typically used to create temporary environments with desired packages. And after that, there's direnv https://github.com/direnv/direnv/wiki/Nix
<{^_^}> [nixos-search] @turboMaCk pushed 5 commits to turboMaCk/fix-loading: https://git.io/JkyEJ
<{^_^}> [nixpkgs] @RaghavSood merged pull request #104906 → mosh: name -> pname → https://git.io/Jkyld
<Yaniel> well there is a set of packages you do want to have "always"
<{^_^}> [nixpkgs] @RaghavSood pushed 2 commits to master: https://git.io/JkyEL
<Yaniel> but yea that stabilizes over time
<Yaniel> jtojnar: does services.pipewire.alsa.enable = true fix the alsa bit of your pipewire troubles?
<Yaniel> I don't have time to look into it atm, but checking if that option does anything related would be my first guess
growpotkin has joined #nixos
<{^_^}> [nixpkgs] @con-f-use opened pull request #104908 → mcomix3: init at 20201123 → https://git.io/Jkyuq
<jtojnar> Yaniel: does not seem to help, unfortunately
jonatanb has joined #nixos
<Yaniel> oh yea and what's the deal with audio.enable? what is that option for
<Yaniel> should pipewire enable it?
jonatanb has quit [Ping timeout: 240 seconds]
thc202 has quit [Quit: thc202]
<Fare> simpson, is the code and configuration you use for cachix, etc., for monte, available?
boxscape has joined #nixos
boxscape has left #nixos [#nixos]
<Abdullah> are the directories in /nix/store/some_digits_package static? I mean can I use them in scripts?
<Yaniel> use /usr/bin/env
<Fare> Unrelatedly, I haven't been able to use HDMI as audio sink on NixOS (video is fine). Is there some configuration I am missing? (Intel chips for video)
m4ts has joined #nixos
<Abdullah> or they change with time like when I update or install new package?
<simpson> Abdullah: Yes. But also, you can use nix-shell in order to get packages by *name* too: https://nixos.org/nix/manual/#sec-nix-shell
alp has quit [Ping timeout: 240 seconds]
<Yaniel> the store paths are immutable but they come and go as new packages aare installed and old ones garbage collected
erasmas has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #104867 → vcstool: 0.2.14 -> 0.2.15 → https://git.io/JkDfB
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/Jkyzw
<Fare> simpson, BTW, how do you deal with developers sometimes needing to have local modifications to various dependencies?
thc202 has joined #nixos
domogled has joined #nixos
<Abdullah> I was thinking to change font in my function I posted earlier.
<Yaniel> Abdullah: the right way is to use nix-shell to bring in the packages you need
<Yaniel> for fonts, use fontconfig
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #104869 → jira-cli: 2.2 -> 3.0 → https://git.io/JkDkc
<simpson> Fare: There's two parts to that answer. First, Typhon scales down; my local Typhon checkout allows me to nix-build each part of the suite as I need it, against my modified working tree.
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/Jkyz9
m4tsa_ has quit [Ping timeout: 260 seconds]
<Abdullah> ffmpeg needs the font path Yaniel
Jackneill has quit [Read error: Connection reset by peer]
werner291 has quit [Ping timeout: 272 seconds]
werner292 has joined #nixos
<Abdullah> font file path
Jackneill has joined #nixos
<Yaniel> nixos sets up fontconfig for you and keeps the cache up to date
<simpson> Fare: Second, the way that Monte's code loader searches paths is idiosyncratic to reduce security headaches; the loader can only search *one* directory for an entire module's transitive dependencies. This removes most of the typical npm-era package-management frustration; there's no node_modules.
werner292 is now known as werner291
<Abdullah> font file path is /nix/store/jv5vr6768da7j49m47giilwf0ibw0jmh-nerdfonts-2.1.0/share/fonts/truetype/NerdFonts/Ubuntu Bold Nerd Font Complete.ttf
<Abdullah> so is it okay to use it or there is some portable way ?
Boomerang_ has quit [Ping timeout: 256 seconds]
<{^_^}> [nixos-search] @turboMaCk pushed to turboMaCk/fix-loading « throw away init if page doesn't change during url transition »: https://git.io/JkygC
ngyj has joined #nixos
<Yaniel> Abdullah: fontconfig
<siraben> Is it possible to see how much space GC would free?
<teto> siraben: ther emust be a 'dry-run' option if you check the help/manual
<simpson> Abdullah: `nix-shell -p nerdfonts` gives a temporary environment where those fonts are available; you can use the nix-shell interpreter trick to get those fonts into your environment where your shell script is running fontconfig.
<siraben> teto: I know about --dry-run but it only reports which paths would be deleted
<teto> fetchFromGitLab generates an url .../archive.tar.gz?sha=rev which fails on a private gitlab of mine. If I change it to .../archive?sha=rev it works :s any idea ?
<siraben> Interesting, `nix-collect-garbage --dry-run` actually prints nothing
Boomerang_ has joined #nixos
<teto> siraben: maybe try with sudo ?
<{^_^}> [nixpkgs] @kini opened pull request #104909 → [20.09] python36Packages.ipython: 7.17 -> 7.16.1 (downgrade) → https://git.io/JkygF
domogled has quit [Remote host closed the connection]
domogled has joined #nixos
<Abdullah> simpson: It started downloading those fonts again ;-)
<siraben> teto: I wouldn't expect that to make a difference, and just tried it out, same thing
<siraben> `nix-collect-garbage -d --dry-run` reports which generations would be removed, though
heyitsrama has joined #nixos
mi23523523 has joined #nixos
jonatanb has joined #nixos
philr_ has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #104866 → mavproxy: 1.8.24 -> 1.8.27 → https://git.io/JkMhM
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/Jky2t
<Abdullah> for me gc reported 40 generations
mi23523523 has quit [Client Quit]
<{^_^}> [nixpkgs] @vdemeester opened pull request #104910 → krew: init at 0.4.0 → https://git.io/Jky2O
<Fare> simpson, how do the parts of the tree built with nix-build know about the correct version of each other?
<Abdullah> we don't have zsh completion support for nix*?
mortum has quit [Remote host closed the connection]
knupfer1 has joined #nixos
domogled has quit [Ping timeout: 264 seconds]
<{^_^}> [nixpkgs] @jonringer merged pull request #103501 → [staging] setup.sh: Support XDG_DATA_DIRS (bash completion in nix-shell) → https://git.io/JkLys
<{^_^}> [nixpkgs] @jonringer pushed 3 commits to staging: https://git.io/Jky2C
jonatanb_ has joined #nixos
sangoma has joined #nixos
jonatanb has quit [Ping timeout: 240 seconds]
knupfer1 is now known as knupfer
zakame_ has joined #nixos
<teto> seems like I just have to use builtins.fetchGit instead
gueorgui has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @jonringer closed pull request #104873 → python37Packages.jupyterlab-git: 0.22.3 -> 0.23.1 → https://git.io/JkDY4
<{^_^}> [nixpkgs] @jonringer merged pull request #104893 → python37Packages.jupyterlab-git: 0.22.3 -> 0.23.1 → https://git.io/JkDFf
<{^_^}> [nixpkgs] @jonringer pushed 2 commits to master: https://git.io/Jky2P
jonringer has joined #nixos
gueorgui has joined #nixos
<{^_^}> [nixpkgs] @raboof opened pull request #104911 → mastodon-bot: 1.0.4 -> 1.10.2 → https://git.io/Jky2F
<{^_^}> [nixpkgs] @jonringer merged pull request #104897 → python37Packages.genanki: 0.9.0 -> 0.9.1 → https://git.io/JkyUi
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « python37Packages.genanki: 0.9.0 -> 0.9.1 »: https://git.io/Jky2b
<{^_^}> [nixpkgs] @ajs124 opened pull request #104912 → p7zip: 17.01 -> 17.02 → https://git.io/Jky2N
zakame has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @jonringer merged pull request #104901 → python37Packages.smart_open: 3.0.0 -> 4.0.0 → https://git.io/JkyYx
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « python37Packages.smart_open: 3.0.0 -> 4.0.0 »: https://git.io/Jkyae
<{^_^}> [nixpkgs] @jonringer merged pull request #104899 → python37Packages.ha-ffmpeg: 2.0 -> 3.0.2 → https://git.io/JkyLm
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « python37Packages.ha-ffmpeg: 2.0 -> 3.0.2 »: https://git.io/Jkyaf
<simpson> Fare: Monte modules are unversioned, and we are explicitly avoiding defining a package/library format; instead we have a tool which combines many modules into one single zero-dependency "muffin" module. (Think like Newspeak https://newspeaklanguage.org/, where most objects are anonymous.) Redirect to ##programminglanguages ?
Boomerang_ has quit [Ping timeout: 264 seconds]
jonatanb_ has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @jonringer merged pull request #104907 → python37Packages.dogpile_cache: 1.1.0 -> 1.1.1 → https://git.io/Jky0i
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « python37Packages.dogpile_cache: 1.1.0 -> 1.1.1 »: https://git.io/Jkyau
tsrt^ has quit []
hke has quit [Read error: Connection reset by peer]
hke has joined #nixos
<{^_^}> [nixpkgs] @onsails opened pull request #104913 → telepresence: 1.105 -> 1.108 → https://git.io/JkyVt
<{^_^}> [nixpkgs] @jonringer merged pull request #104903 → python37Packages.spacy: 2.3.2 -> 2.3.3 → https://git.io/Jkycg
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « python37Packages.spacy: 2.3.2 -> 2.3.3 »: https://git.io/JkyV3
domogled has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 opened pull request #104914 → mpc-qt: use fetchpatch instead of fetchurl → https://git.io/JkyVR
<{^_^}> [nixpkgs] @jonringer merged pull request #104909 → [20.09] python36Packages.ipython: 7.17 -> 7.16.1 (downgrade) → https://git.io/JkygF
jperras is now known as jperras-food
<{^_^}> [nixpkgs] @jonringer pushed commit from @kini to release-20.09 « python36Packages.ipython: 7.17 -> 7.16.1 (downgrade) »: https://git.io/JkyVy
da_dada has quit [Ping timeout: 246 seconds]
da_dada has joined #nixos
<{^_^}> [nixpkgs] @jonringer merged pull request #104495 → python37Packages.cftime: 1.2.1 -> 1.3.0 → https://git.io/JkVky
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « python37Packages.cftime: 1.2.1 -> 1.3.0 »: https://git.io/JkyVh
<{^_^}> [nixpkgs] @jonringer merged pull request #104485 → executor: 23.1 -> 23.2 → https://git.io/Jkayu
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « executor: 23.1 -> 23.2 »: https://git.io/JkywT
<rogerr> why im trying to install rust using rustup but it fails because it can't find openssl, even though i added openssl to home.packages. what i doing wrong pls?
<{^_^}> [nixpkgs] @jonringer merged pull request #104516 → consul: 1.8.5 -> 1.8.6 → https://git.io/JkVXj
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « consul: 1.8.5 -> 1.8.6 »: https://git.io/JkywO
<numkem> rogerr: any reason why you can't just do nix-shell -p rust ?
<numkem> rogerr: mozilla has an overlay for using the nightly version of rust or any other version
FRidh has quit [Ping timeout: 260 seconds]
<rogerr> rather just start simple and install it for my whole user account
FRidh has joined #nixos
<numkem> rogerr: you could just add `rust` to your home.packages if you wanted to
red[evilred] has joined #nixos
<red[evilred]> rust?
<red[evilred]> or rustc?
<rogerr> what's weird is i was able to run it manually but can't t hrough ansible
<rogerr> rustc
proofofkeags has joined #nixos
<LnL> ,library rogerr
<{^_^}> rogerr: Don't install libraries through nix-env or systemPackages, use nix-shell instead. See https://nixos.wiki/wiki/FAQ/Libraries for details.
vidbina has joined #nixos
<LnL> "installing" libraries with nix intentionally doesn't work
<{^_^}> [nixpkgs] @jonringer merged pull request #104563 → omnisharp-roslyn: 1.37.3 -> 1.37.4 → https://git.io/Jkwdd
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « omnisharp-roslyn: 1.37.3 -> 1.37.4 »: https://git.io/Jkyw5
<rogerr> er nvm i guess it doesn't work manually either
hnOsmium0001 has joined #nixos
<rogerr> so every time i wanna do something in rust i have to run a nix-shell -p rust command?
<{^_^}> [nixpkgs] @grahamc opened pull request #104915 → {fprintd,libfprint}-tod: init, plus libfprint-2-tod1-goodix: init at 0.0.6 → https://git.io/JkywN
<LnL> you can use the rustup version if you want that, but if you want to build a rust thing that links against openssl you'll need nix-shell -p openssl
<{^_^}> [nixpkgs] @zimbatm merged pull request #104886 → google-cloud-sdk: 315.0.0 -> 319.0.0 → https://git.io/JkD6T
<{^_^}> [nixpkgs] @zimbatm pushed commit from @iAmMrinal0 to master « google-cloud-sdk: 315.0.0 -> 319.0.0 (#104886) »: https://git.io/JkyrZ
gueorgui has quit [Remote host closed the connection]
gueorgui has joined #nixos
<LnL> or if it's a project put a simple expression in a shell.nix file (in conjunction with eg. direnv) so you don't need adhoc commends
<{^_^}> [nix] @regnat opened pull request #4284 → Allow fixed-output derivations to depend on (floating) content-addressed ones → https://git.io/Jkyrg
kreyren has quit [Remote host closed the connection]
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
zakame has joined #nixos
<{^_^}> [nixpkgs] @jonringer opened pull request #104916 → [20.09] consul: 1.8.5 -> 1.8.6 → https://git.io/Jkyoe
SanchayanMaity has quit [Quit: SanchayanMaity]
mananamenos has quit [Quit: Leaving]
zakame_ has quit [Ping timeout: 256 seconds]
iH8c0ff33 has quit [Ping timeout: 260 seconds]
cyphase has joined #nixos
kreyren has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 opened pull request #104917 → mdds: fix compilation on darwin → https://git.io/JkyKv
kreyren has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @AndersonTorres merged pull request #104914 → mpc-qt: use fetchpatch instead of fetchurl → https://git.io/JkyVR
<{^_^}> [nixpkgs] @AndersonTorres pushed 2 commits to master: https://git.io/JkyKO
kreyren has joined #nixos
iH8c0ff33 has joined #nixos
werner292 has joined #nixos
<{^_^}> Channel nixos-20.09-small advanced to https://github.com/NixOS/nixpkgs/commit/f900be57309 (from 7 hours ago, history: https://channels.nix.gsc.io/nixos-20.09-small)
werner291 has quit [Ping timeout: 272 seconds]
werner292 is now known as werner291
<jasom> If I change a systemd service, and deploy with nixops, should the service restart automatically?
supersandro2000 has quit [Ping timeout: 246 seconds]
<{^_^}> Channel nixpkgs-20.03-darwin advanced to https://github.com/NixOS/nixpkgs/commit/9518fac712c (from 5 hours ago, history: https://channels.nix.gsc.io/nixpkgs-20.03-darwin)
<{^_^}> Channel nixpkgs-20.09-darwin advanced to https://github.com/NixOS/nixpkgs/commit/f900be57309 (from 8 hours ago, history: https://channels.nix.gsc.io/nixpkgs-20.09-darwin)
ddellacosta has joined #nixos
karantan has joined #nixos
karantan has quit [Client Quit]
<{^_^}> [nixpkgs] @SamirHafez opened pull request #104918 → Add an updateScript to rescuetime → https://git.io/Jky61
<Yaniel> it should get restarted on a nixos-rebuild so presumably on nicops deploy too
alp has joined #nixos
supersandro2000 has joined #nixos
kreyren has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @gravndal opened pull request #104919 → pythonPackages.drivelib: init at 0.1.5, git-annex-remote-googledrive: init at 1.2.3 → https://git.io/JkyiU
cole-h has joined #nixos
zakame_ has joined #nixos
zakame has quit [Ping timeout: 240 seconds]
jperras-food is now known as jperras
kreyren has joined #nixos
whald has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @NeQuissimus pushed 3 commits to master: https://git.io/Jkyig
gxt has quit [Remote host closed the connection]
hlolli__ has quit [Ping timeout: 246 seconds]
gxt has joined #nixos
<{^_^}> Channel nixos-20.03-small advanced to https://github.com/NixOS/nixpkgs/commit/9518fac712c (from 5 hours ago, history: https://channels.nix.gsc.io/nixos-20.03-small)
cryptopepe has joined #nixos
kreyren has quit [Remote host closed the connection]
cryptopepe has quit [Client Quit]
<{^_^}> [nixpkgs] @ThibautMarty opened pull request #104920 → herbstluftwm 0.8.3 -> 0.9.0 + add tests → https://git.io/JkyPT
bpye has joined #nixos
zupo has joined #nixos
<{^_^}> [nixpkgs] @NeQuissimus pushed to master « awscli: Add test »: https://git.io/JkyPn
vs^ has joined #nixos
saschagrunert has quit [Remote host closed the connection]
hyper_ch4 has quit [Remote host closed the connection]
hyper_ch2 has joined #nixos
hyper_ch2 has quit [Max SendQ exceeded]
bbarker has joined #nixos
hyper_ch2 has joined #nixos
<{^_^}> [nixpkgs] @jonringer merged pull request #104823 → pythonPackages.pyscard: Remove patch that is included in 1.9.9 and 2.0.0 → https://git.io/JkMnI
<{^_^}> [nixpkgs] @jonringer pushed commit from @SuperSandro2000 to master « pythonPackages.pyscard: Remove patch that is included in 1.9.9 and 2.0.0 »: https://git.io/JkyPh
jonatanb has joined #nixos
bpye has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @jonringer merged pull request #104624 → automake: 1.16.2 -> 1.16.3 → https://git.io/Jkolm
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to staging « automake: 1.16.2 -> 1.16.3 »: https://git.io/JkyX3
<{^_^}> [nixpkgs] @matthiasbeyer closed pull request #104882 → wordgrinder: 0.7.2 -> 0.8 → https://git.io/JkDz3
cyphase has quit [Ping timeout: 256 seconds]
jonatanb has quit [Ping timeout: 240 seconds]
cyphase has joined #nixos
rajivr has quit [Quit: Connection closed for inactivity]
devmohe has joined #nixos
<devmohe> Hi, how can I add an environment variable to makeFlags that is set to NIX_BUILD_CORES? I tried `makeFlags = ["CPUS=$NIX_BUILD_CORES" "both"];` but I don't think that worked as I can see the dollar escaped
<thibm> devmohe: try CPUS=$(NIX_BUILD_CORES) maybe? (https://nixos.org/manual/nixpkgs/stable/#build-phase)
flix59 has joined #nixos
<thibm> (the variable is not evaluated in the shell but by make)
<devmohe> thanks, It's quite irritating that everything needs it escaped differently...
alp has quit [Ping timeout: 272 seconds]
ddellacosta has quit [Quit: WeeChat 2.8]
<{^_^}> [nixpkgs] @teto merged pull request #104898 → gitAndTools.pass-git-helper: 0.4 -> 1.1.0 → https://git.io/Jkykr
<{^_^}> [nixpkgs] @teto pushed commit from @hmenke to master « gitAndTools.pass-git-helper: 0.4 -> 1.1.0 »: https://git.io/Jky16
<thibm> devmohe: Yes. Although in that case it's not escaped, it's just the make syntax $(variable). (And the $ is escaped to not be interpreted by bash)
<devmohe> Yeah, thanks for the explanation
thblt has joined #nixos
<thblt> I've had to increase the size of my / recently, and I found fileSystems."/".autoResize = true; very useful. Is it reasonable/not weird to leave the line in my config?
szicari has quit [Ping timeout: 264 seconds]
kreyren has joined #nixos
<{^_^}> [nixpkgs] @jonringer merged pull request #104851 → gnupg: 2.2.23 -> 2.2.24 → https://git.io/JkM6a
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to staging « gnupg: 2.2.23 -> 2.2.24 »: https://git.io/JkyMC
<jasom> So, I'm deploying a PHP application on NixOS. Depending on how a child is spawned it either inherits the environment or gets PATH=/no-such-path. If I use the PHP system(), the environment seems inherited, but the application is using some weird process library; some googling has shown me that /no-such-path comes from systemd, can anyone point me in the right direction to continue debugging this?
devmohe has quit [Remote host closed the connection]
slack1256 has joined #nixos
<dsx> How to build nixos sd image for armv7l?
werner292 has joined #nixos
cosimone has quit [Remote host closed the connection]
werner291 has quit [Ping timeout: 272 seconds]
werner292 is now known as werner291
cosimone has joined #nixos
<{^_^}> [nixpkgs] @kampka opened pull request #104921 → unifont: 13.0.01 -> 13.0.04 → https://git.io/JkyM7
<dsx> Do I get bunch of qemu vms running or maybe there's a way to cross-compile it on x86 host?
<{^_^}> [nixpkgs] @r-ryantm opened pull request #104922 → python37Packages.timeout-decorator: 0.4.1 -> 0.5.0 → https://git.io/JkyMx
<lordcirth> dsx, I've built arm images on x86 with other people's configs
<dsx> lordcirth: how?
<lordcirth> Nix is pretty good at cross-compiling
<dsx> I bet it should be great at such things!
<lordcirth> dsx, this is what I used: https://github.com/samueldr/cross-system
<dsx> lordcirth: thanks! I'll try that!
grumble has quit [Quit: CHANGE MY MIND: Excel is a functional programming language]
justanotheruser has quit [Ping timeout: 260 seconds]
bbarker has quit [Remote host closed the connection]
grumble has joined #nixos
kreyren has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #104900 → photoflow: 2018-08-28 -> 2020-08-28 → https://git.io/Jkymv
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkyDo
werner291 has quit [Ping timeout: 272 seconds]
growpotk- has joined #nixos
ris has joined #nixos
<{^_^}> [nixpkgs] @Mic92 closed pull request #49054 → homely: init at 0.15.3 → https://git.io/fx1Fj
growpotk- has quit [Ping timeout: 272 seconds]
alp has joined #nixos
mortum has joined #nixos
<Fare> simpson: actually, I'm interested in both the PL approach *and* the nix-specific mapping of this packaging issue.
<simpson> Fare: I, too, await nixpkgs-specific advice; I want to make sure that Monte is very compatible with Nix, possibly using it as the preferred build system. So far, all I've heard is to use flakes; I'm waiting for them to be more stable first.
justanotheruser has joined #nixos
flix59 has quit [Remote host closed the connection]
raghavsood has quit [Remote host closed the connection]
turlando has joined #nixos
Ariakenom_ has joined #nixos
anderslu1dstedt has joined #nixos
berberman_ has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #104904 → fuse-overlayfs: 1.2.0 -> 1.3.0 → https://git.io/JkyCO
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkySN
berberman has quit [Ping timeout: 264 seconds]
Ariakenom has quit [Ping timeout: 260 seconds]
anderslundstedt has quit [Ping timeout: 240 seconds]
bpye has joined #nixos
<Fare> simpson: I too have my sights on flakes. In the meantime, I'm using Obsidian System's nix-thunk https://github.com/obsidiansystems/nix-thunk
<{^_^}> [nixpkgs] @srhb opened pull request #104923 → nixos/tests/networking: Alleviate race in scripted test → https://git.io/Jky9a
deadpixels has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 opened pull request #104924 → pythonPackages.pyscard: Remove unused input → https://git.io/Jky9M
kreyren has joined #nixos
iH8c0ff33 has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @NeQuissimus pushed 2 commits to master: https://git.io/Jky9A
zakame has joined #nixos
zakame_ has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @AndersonTorres merged pull request #104865 → mpv: enable sixel support → https://git.io/JkMAO
<mortum> Hi guys. I have such classic problem, but despite that i can't solve this problem. Http error 200 from cache.nixos.org when trying nixos-rebuild switch. I've try disable ipv6, use --keep-going and use substitute false advise from nix.dev. But I've noticed that it depends with fact that i can not access to cache.nixos.org via traceroute.
<{^_^}> [nixpkgs] @AndersonTorres pushed 2 commits to master: https://git.io/JkyHz
<mortum> Last hop in *cw.net. And from another machine on Win 7 tracert cache.nixos.org works great
est31 has quit [Ping timeout: 240 seconds]
est31 has joined #nixos
<{^_^}> [nixpkgs] @jonringer merged pull request #104922 → python37Packages.timeout-decorator: 0.4.1 -> 0.5.0 → https://git.io/JkyMx
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « python37Packages.timeout-decorator: 0.4.1 -> 0.5.0 »: https://git.io/JkyHQ
<srhb> Mortum: Http _error_ 200?
werner291 has joined #nixos
<{^_^}> [nixpkgs] @jonringer merged pull request #104924 → pythonPackages.pyscard: Remove unused input → https://git.io/Jky9M
<{^_^}> [nixpkgs] @jonringer pushed commit from @SuperSandro2000 to master « pythonPackages.pyscard: Remove unused input »: https://git.io/JkyH5
<srhb> Mortum: Could you pastebin some logs somewhere for starters? :)
kreyren has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @kampka opened pull request #104925 → libfaketime: fix build with clang → https://git.io/JkyQg
kreyren has joined #nixos
<{^_^}> [nixos-homepage] @garbas pushed 9 commits to redesign-features: https://git.io/JkyQK
<{^_^}> [nixpkgs] @NeQuissimus pushed 2 commits to master: https://git.io/JkyQi
lcvass has quit [Quit: ZNC 1.7.2+deb3 - https://znc.in]
zakame_ has joined #nixos
lcvass has joined #nixos
zakame has quit [Ping timeout: 256 seconds]
iH8c0ff33 has joined #nixos
tobiasBora has quit [Ping timeout: 240 seconds]
<steveeJ> what are the steps to activate stage2 manually after mounting `/mnt-root` in initrd stage1?
<mortum> srnb, https://pastebin.com/87mQBHiR tracepath log
<srhb> steveeJ: Yeah, basically init in your system profile root
<srhb> Mortum: ew, I thought that was gone
cosimone has quit [Quit: cosimone]
iH8c0ff33 has quit [Ping timeout: 256 seconds]
<steveeJ> srhb: I wish I could just mount `/mnt-root` and then let the script do the rest :-D
thibm has quit [Quit: WeeChat 2.6]
<{^_^}> [nixpkgs] @SuperSandro2000 opened pull request #104926 → maintainers: boothead -> commandodev → https://git.io/Jky5U
jonatanb has joined #nixos
<{^_^}> [nixpkgs] @fadenb opened pull request #104927 → graylog: 3.3.8 -> 3.3.9 → https://git.io/Jky5n
<{^_^}> [nixpkgs] @Ma27 merged pull request #104794 → grafana: 7.3.3 -> 7.3.4 → https://git.io/Jk17j
<{^_^}> [nixpkgs] @Ma27 pushed 2 commits to master: https://git.io/Jky58
<{^_^}> [nixpkgs] @fadenb opened pull request #104928 → [20.09] graylog: 3.3.8 -> 3.3.9 → https://git.io/Jky5H
zakame has joined #nixos
erasmas has quit [Quit: leaving]
zakame__ has joined #nixos
zakame_ has quit [Ping timeout: 265 seconds]
<{^_^}> [nixpkgs] @SuperSandro2000 opened pull request #104929 → kdevelop-unwrapped: 5.5.2 -> 5.6.0 → https://git.io/JkydI
iH8c0ff33 has joined #nixos
astylian has joined #nixos
zakame has quit [Ping timeout: 240 seconds]
alp has quit [Ping timeout: 272 seconds]
kreyren has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @Ma27 pushed commit from @WilliButz to release-20.09 « grafana: 7.3.3 -> 7.3.4 »: https://git.io/JkydE
meh` has joined #nixos
<srid> I enabled xmonad, along with i3 and GNOME on my nixos config. But even with "none+xmonad" selected in login screen, it puts me in i3. Does anyone know what I can do to *debug* this silliness?
<{^_^}> [nixpkgs] @kampka opened pull request #104930 → keyutils: fix build with llvm/clang → https://git.io/JkydV
<{^_^}> [nixpkgs] @srhb merged pull request #104923 → nixos/tests/networking: Alleviate race in scripted test → https://git.io/Jky9a
<{^_^}> [nixpkgs] @srhb pushed 2 commits to master: https://git.io/Jkydw
fendor_ has quit [Remote host closed the connection]
Morfio has quit [Quit: This computer has gone to sleep]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #104890 → rgp: 1.8 -> 1.9 → https://git.io/JkDQa
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/Jkyd7
Morfio has joined #nixos
kim0 has quit [Quit: Connection closed for inactivity]
jonatanb has quit [Remote host closed the connection]
za1b1tsu has joined #nixos
mortum has quit [Remote host closed the connection]
kreyren has joined #nixos
kreyren has quit [Remote host closed the connection]
kreyren has joined #nixos
treotmnor has joined #nixos
sangoma has quit [Quit: WeeChat 2.9]
alp has joined #nixos
anderslundstedt has joined #nixos
Ariakenom__ has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #104871 → python37Packages.Wand: 0.6.3 -> 0.6.4 → https://git.io/JkDLF
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkyFd
za1b1tsu has quit [Quit: Leaving]
<shapr> Is there a way to scale the X cursor for a 4k monitor? I'm running xmonad and my cursor is very small.
anderslu1dstedt has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #104879 → python37Packages.bellows: 0.20.3 -> 0.21.0 → https://git.io/JkDRI
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkybJ
Ariakenom_ has quit [Ping timeout: 260 seconds]
<lordcirth> shapr, have you set your DPI for 4k?
<shapr> probably not? How do I do that with nix?
<{^_^}> [nixpkgs] @Luflosi opened pull request #104931 → youtube-dl: 2020.11.24 -> 2020.11.26 → https://git.io/Jkyb3
<lordcirth> shapr, try services.xserver.dpi, eg 96
<lordcirth> Might require restarting X
<lordcirth> hardware.video.hidpi.enable also exists, but not sure exactly what it does
<Yaniel> can I rebuild my system temporarily from a local nixpkgs checkout?
<Yaniel> i.e. without switching the channel that root is following
fendor has joined #nixos
<sphalerite> Yaniel: nixos-rebuild test -I nixpkgs=path/to/your/nixpkgs
<sphalerite> Yaniel: or nixos-rebuild boot with the same (that will create a permanent system generation, but later rebuilds without -I will still rebuild from the channel that you had before)
<Yaniel> thanks
<Yaniel> looks like I was just missing the "nixpkgs=" bit
<{^_^}> [nixos-homepage] @garbas merged pull request #640 → Redesign Features page → https://git.io/JkU8J
<{^_^}> [nixos-homepage] @garbas pushed 96 commits to master: https://git.io/Jkyb9
<{^_^}> [nixpkgs] @tadfisher opened pull request #104933 → horizon-eda: 1.2.1 -> 1.3.0 → https://git.io/JkybQ
zupo has quit [Ping timeout: 260 seconds]
zupo has joined #nixos
<Yaniel> kinda regretting this already on my i5-3570 :D
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #104895 → monetdb: 11.39.5 -> 11.39.7 → https://git.io/JkDbQ
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkyNk
z1g34n3r has joined #nixos
marsh has quit [Ping timeout: 246 seconds]
CcxWrk has quit [Quit: ZNC 1.7.4 - https://znc.in]
marsh has joined #nixos
CcxWrk has joined #nixos
<Abdullah> I copied the snippet from wiki for python packages but its not working
thblt has left #nixos ["ERC (IRC client for Emacs 27.1)"]
<lukegb> Abdullah: which part isn't working
<Abdullah> giving some error
<lukegb> can you be more specific about the error
<Abdullah> error: syntax error, unexpected WITH, at /etc/nixos/configuration.nix
<lukegb> you probably can't put a with there
<Abdullah> so wiki lies ;-)
<lukegb> you could try removing the "with" line and using "pkgs.python3.withPackages" instead
<lukegb> well, you can put the with at the *top* of your config, which I think is what they were imagining
<Abdullah> also in at bottom I should remove?
<{^_^}> [nixpkgs] @tilpner opened pull request #104934 → blender: 2.90.1 -> 2.91.0 → https://git.io/JkyAW
knupfer has quit [Ping timeout: 260 seconds]
thblt has joined #nixos
<Abdullah> still error. undefined variable python3
<Abdullah> lukegb:^^
<lukegb> did you swap python3 for "pkgs.python3"?
<Abdullah> swap?
<lukegb> Where previously you were using "python3" you would need "pkgs.python3", probably, because python3 is inside the attrset conventionally called "pkgs"
pushqrdx has quit [Remote host closed the connection]
<lukegb> At the top of your configuration.nix you've got something that looks like { (something) pkgs, (something) }:
<lukegb> Right?
<Abdullah> lemme paste my config.
zakame has joined #nixos
<lukegb> Right, so yeah: you have a line right at the top { config, pkgs, ... }:
zakame__ has quit [Ping timeout: 264 seconds]
<lukegb> The details of where they come from is a bit magic but basically "config" lets you refer to other bits of the config, and "pkgs" contains the contents of nixpkgs (and maybe something else? I'm sure flakes does something magic here)
<lukegb> Where you've got "environment.systemPackages =" - you've got "with pkgs;" there, which means you can refer to things inside "pkgs" without writing "pkgs." in front of them every time
<lukegb> so instead of saying "[ pkgs.wget pkgs.neovim pkgs.curl " and so on, you can say "with pkgs; [ wget neovim curl " instead, which is... shorter and more readable
<Abdullah> that's default config. I just modified it as I learnt
astylian has quit [Quit: Leaving]
<lukegb> Sure
<lukegb> I'm just explaining bits of it :P
<lukegb> You also refer to "python-with-my-packages", which obviously isn't in the default nixpkgs set
jperras` has joined #nixos
<Abdullah> I just copied it from wiki
jperras` has quit [Client Quit]
<lukegb> Yeah, I'm still just explaining what you've written :P
mkaito has quit [Quit: WeeChat 2.9-dev]
<lukegb> If you want to do it like the wiki says, then you can do https://gist.github.com/lukegb/2c8f89ced7432746a5968b0eda4b5593
<{^_^}> [nixpkgs] @jonringer merged pull request #104796 → vscode-extensions: fix aliases → https://git.io/Jk1FF
<{^_^}> [nixpkgs] @jonringer pushed to master « vscode-extensions: fix aliases »: https://git.io/JkyxN
<{^_^}> [nixops-aws] @tewfik-ghariani opened pull request #120 → Restore RDS DB from snapshot → https://git.io/JkypZ
<Abdullah> sorry for my misunderstanding. I'm not a native English speaker. and also high school dropped
<{^_^}> [nixpkgs] @jonringer merged pull request #104751 → scripts/mark-broken: fix path → https://git.io/JkX8l
<{^_^}> [nixpkgs] @jonringer pushed commit from @SuperSandro2000 to master « scripts/mark-broken: fix path »: https://git.io/JkypB
<simpson> Abdullah++ You're doing better with English than I would do with your native tongue.
<{^_^}> Abdullah's karma got increased to 1
<{^_^}> [nixpkgs] @thblt opened pull request #104936 → eduke32: fix version number, use string interpolation for src.url → https://git.io/JkypV
<Abdullah> Thanks :)
<Abdullah> http://ix.io/2Fts followed someone's examples but still this error
<Abdullah> undefined variable python-with-my-packages
<lukegb> yeah, you need to remove python-with-my-packages from the list
<thblt> So that PR I just opened should fix all the issues I introduced with the previous one, that was supposed to be just a version bump…
<woffs> Hi. Maybe someone wants to merge #104762 into 20.09 to fix shotcut there.
<{^_^}> https://github.com/NixOS/nixpkgs/pull/104762 (by woffs, 1 day ago, open): [20.09] shotcut: fix melt path
<Abdullah> yeah removed it. but now google-api-python-client is undefined variable
<Abdullah> I think it should be one package per line
ngyj has quit [Ping timeout: 264 seconds]
pistache has quit [Ping timeout: 264 seconds]
<Abdullah> Ah I think that's not in repos, now building fine.
<Abdullah> after I removed it
lordcirth has quit [Ping timeout: 264 seconds]
<{^_^}> [nixpkgs] @06kellyjac opened pull request #104937 → terragrunt: 0.26.5 -> 0.26.7 → https://git.io/Jkyhz
<{^_^}> [nixpkgs] @AndersonTorres merged pull request #104931 → youtube-dl: 2020.11.24 -> 2020.11.26 → https://git.io/Jkyb3
<{^_^}> [nixpkgs] @AndersonTorres pushed 2 commits to master: https://git.io/Jkyhg
lordcirth has joined #nixos
CcxWrk has quit [Ping timeout: 246 seconds]
CcxWrk has joined #nixos
selfsymmetric-mu has joined #nixos
<Abdullah> I have no pip now
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #91182 → pcloud: Init at 1.8.8 → https://git.io/Jfb7v
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/Jkyhb
pistache has joined #nixos
<selfsymmetric-mu> But I currently have `systemd-boot.enable = true`.
<selfsymmetric-mu> Will switching to `grub` break my system?
<{^_^}> [nixpkgs] @FRidh merged pull request #104918 → rescuetime: add an updateScript → https://git.io/Jky61
<{^_^}> [nixpkgs] @FRidh pushed commit from @SamirHafez to master « rescuetime: add an updateScript »: https://git.io/Jkyhx
nizhm has left #nixos ["Leaving"]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #104938 → alembic: 1.7.15 -> 1.7.16 → https://git.io/JkyjI
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #104913 → telepresence: 1.105 -> 1.108 → https://git.io/JkyVt
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/Jkyj3
deltab has quit [Ping timeout: 272 seconds]
vs^ has quit []
CcxWrk has quit [Read error: Connection reset by peer]
<Yaniel> if you have UEFI you can just hit F11 or whatever at boot and pick from the UEFI list
<Yaniel> no need to deal with a multi-os bootloader
CcxWrk has joined #nixos
FRidh has quit [Quit: Konversation terminated!]
<selfsymmetric-mu> Yaniel: Ah, you're right, what am I doing here? Thanks for the sanity. :)
<Yaniel> but no, switching to grub should not break anything
<Yaniel> assuming you don't run out of space on /boot/EFI
<selfsymmetric-mu> I figured I could get a nice menu or whatever but it doesn't seem worth fiddling around for.
<Yaniel> the UEFI boot menu is nice enough
<octe> how do i set which gcc version to use in nix-shell? i start it with nix-shell -p gcc10, but it defaults to gcc9 inside
<selfsymmetric-mu> Agreed. I ask myself, "would I feel silly if I broke things over this". And the answer in this case is "yes". Thanks Yaniel++!
<{^_^}> Yaniel's karma got increased to 9
<octe> tried with --pure too
<thblt> On my system systemd-boot shows the Windows 10 partition below the NixOS generations.
<samueldr> octe: nix-shell always uses `stdenv` with -p, so you won't be able to change the compiler as it's part of stdenv
<thblt> By which magic I don't know, it Just Works.
<samueldr> octe: but I did say "with -p"
<selfsymmetric-mu> thblt: Wow!
<octe> samueldr, so there's no way around it?
<samueldr> octe: give me a minute to test locally, but there's a more involved way
<thblt> I guess it talks with the UEFI, or just looks for ef00 partitions or EFI-ish partitions on all disks?
<thblt> I mean EFI is easy to find.
deltab has joined #nixos
<Abdullah> How can I overcome this systemd units not finding the commands?
<samueldr> octe: probably myriad other ways, nix-shell -E 'with (import <nixpkgs> {}); mkShell.override({ stdenv = gcc8Stdenv; })'
<octe> hmm, can i combine it with -p?
<octe> or get the packages with the -E-part
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #102368 → pythonPackages.plaid-python: 6.0.0 -> 7.1.0 → https://git.io/JT7a2
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkSeK
<{^_^}> [nixpkgs] @r-ryantm opened pull request #104939 → amber: 0.5.5 -> 0.5.8 → https://git.io/JkSe7
m4tsa_ has joined #nixos
SomeoneSerge has joined #nixos
<octe> unrelated question, can i have multiple sources in a package?
<lordcirth> octe, yes, you can bind as many variables as you want to values like fetchGit. "src" is just the default
<{^_^}> [nixpkgs] @mweinelt merged pull request #104928 → [20.09] graylog: 3.3.8 -> 3.3.9 → https://git.io/Jky5H
<{^_^}> [nixpkgs] @mweinelt pushed 2 commits to release-20.09: https://git.io/JkSv3
m4ts has quit [Ping timeout: 272 seconds]
diwr has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #91564 → vimPlugins: MatchTagAlways init at 2017-05-20 → https://git.io/JfjuE
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkSvC
pushqrdx has joined #nixos
<Abdullah> How can I overcome this systemd units not finding the commands?
<octe> lordcirth, what I want to do is download another file and place it in the build directory somewhere, so i can use fetchurl and bind it to a variable.. how do i place it somewhere?
<lordcirth> octe, you just do srcfoo = fetchurl ... and it will get downloaded. Then you can do "cp ${srcfoo} ./build"
<{^_^}> [nixpkgs] @mweinelt merged pull request #104927 → graylog: 3.3.8 -> 3.3.9 → https://git.io/Jky5n
<{^_^}> [nixpkgs] @mweinelt pushed 2 commits to master: https://git.io/JkSvx
<octe> lordcirth, should i do that in unpackPhase?
<octe> if its needed for building
<octe> hmm
cosimone has joined #nixos
diwr has quit [Quit: Konversation terminated!]
gueorgui has quit [Ping timeout: 240 seconds]
bbarker has joined #nixos
gueorgui has joined #nixos
<{^_^}> [nixpkgs] @bb2020 closed pull request #94370 → pkgs/qemu: always enable smbdSupport → https://git.io/JJaRg
seku has quit [Quit: Connection closed]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #104936 → eduke32: fix version number, use string interpolation for src.url → https://git.io/JkypV
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkSfu
<{^_^}> [nixpkgs] @mweinelt merged pull request #104820 → [20.09] webkitgtk: 2.28.4 -> 2.30.3 → https://git.io/JkMZ1
<{^_^}> [nixpkgs] @mweinelt pushed 7 commits to release-20.09: https://git.io/JkSfz
<realrokka> Is somebody else is having trouble with gitlab after 20.09 upgrade? The gitaly.service won't start and complains about "unsupported git version 2.28.0".
__monty__ has quit [Quit: leaving]
<{^_^}> [nixpkgs] @bb2020 reopened pull request #94370 → pkgs/qemu: always enable smbdSupport → https://git.io/JJaRg
konobi has quit [Quit: konobi]
<{^_^}> [nixpkgs] @nh2 merged pull request #104000 → libmtp, libgphoto2, gphoto2: Switch to Github, allow building from repo → https://git.io/JkCsk
<{^_^}> [nixpkgs] @nh2 pushed 4 commits to staging: https://git.io/JkSf5
zakame has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #104941 → axel: 2.17.9 -> 2.17.10 → https://git.io/JkSJe
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #102274 → Tuptime: 5.0.0 -> 5.0.1 and correct meta.license → https://git.io/JTHM5
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 3 commits to master: https://git.io/JkSJf
<SomeoneSerge> A nix/bazel/cc toolchain question. If I follow https://www.tweag.io/blog/2018-03-15-bazel-nix/ to set up a build for a shared library, the resulting .so has RUNPATH set to /nix/store/... - is that an expected behaviour?
zakame has joined #nixos
medvid has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #102229 → vimPlugins.SudoEdit-vim: init at 2020-02-27 → https://git.io/JTHtV
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkSJi
medvid has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 closed pull request #83702 → lightworks: 14.0.0 -> 14.5.0 → https://git.io/Jv7Jz
<{^_^}> [nixpkgs] @AndersonTorres opened pull request #104942 → [20.09] youtube-dl: 2020.11.24 -> 2020.11.26 → https://git.io/JkSJb
vidbina has quit [Quit: vidbina]
Fare has quit [Ping timeout: 264 seconds]
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
kreyren has quit [Remote host closed the connection]
tsrt^ has joined #nixos
kreyren has joined #nixos
kreyren has quit [Remote host closed the connection]
zupo has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #104943 → bazarr: 0.9.0.6 -> 0.9.0.7 → https://git.io/JkSUh
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #104921 → unifont: 13.0.01 -> 13.0.04 → https://git.io/JkyM7
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkSTf
<octe> hm, meson seems to consider source_urls using file:-paths to be downloading
gustavderdrache has quit [Quit: Leaving.]
neiluj has quit [Quit: Lost terminal]
<pushqrdx> it seems to fix issue with neovim not finding stuff like python3 etc
cosimone has quit [Read error: Connection reset by peer]
<{^_^}> [nixpkgs] @snicket2100 opened pull request #104944 → nixos/chrony: systemd service hardening → https://git.io/JkSTB
philr_ has joined #nixos
cosimone has joined #nixos
mahogany has quit [Quit: Konversation terminated!]
<SomeoneSerge> @pushqrdx people say the issue is gone: https://github.com/NixOS/nixpkgs/issues/98166#issuecomment-725319238
<pushqrdx> SomeoneSerge apparently it's not i just built neovim from master and running checkhealth it doesn't detect any python
Fare has joined #nixos
<pushqrdx> the build is using an overlay
<pushqrdx> just replacing src
<pushqrdx> for some reason just installing neovim 0.4.4 it has all the stuff it needs, ruby py3, py2 etc
<steveeJ> is it expected that manually installing a vscode extension fails when using the vscode-with-extension package?
<{^_^}> [nixpkgs] @r-ryantm opened pull request #104945 → bear: 3.0.2 -> 3.0.3 → https://git.io/JkSkZ
<{^_^}> Channel nixpkgs-20.09-darwin advanced to https://github.com/NixOS/nixpkgs/commit/debc958c300 (from 3 hours ago, history: https://channels.nix.gsc.io/nixpkgs-20.09-darwin)
<steveeJ> I was hoping to mix Nix-managed and manually managed extensions
ashkitten has quit [Quit: WeeChat 2.9]
ashkitten has joined #nixos
<nicolas[m]> Is there a command to run all checks specified in a Flake's `checks` section?
ashkitten has joined #nixos
ashkitten has quit [Changing host]
<cole-h> Wouldn't that just be `nix flake check`?
<pushqrdx> just saying the whole neovim, neovim-unwrapped situation is probably the biggest pain point i've had so far, just horred
<{^_^}> [nixpkgs] @Ma27 merged pull request #104942 → [20.09] youtube-dl: 2020.11.24 -> 2020.11.26 → https://git.io/JkSJb
<{^_^}> [nixpkgs] @Ma27 pushed 2 commits to release-20.09: https://git.io/JkSIJ
<pushqrdx> i am trying to make the simplest possible overlay over the existing vim, and by the rules of overlays i should be getting the same thing just with a changed revision
treotmnor has quit [Remote host closed the connection]
<pushqrdx> however there seems to be some secret sauce somewhere in the original neovim package, that doesn't propagate with the overlay
treotmnor has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #101800 → ndpi 2.8 -> 3.4 → https://git.io/JT6wZ
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkSIL
<pushqrdx> becuase normal neovim install has all the required stuff correct, but just changing the src in an overlay yields different results, i.e no python, no ruby, no python3 support
<pushqrdx> also creating an overlay over the neovim package doesn't work but for some reason over the "neovim-unwrapped" it works even though it appears that both point to the same nix expr
<cole-h> The neovim package wraps neovim-unwrapped
sss2 has joined #nixos
<pushqrdx> cole-h and i want to override the src of that wrapper because the wrapper seems to be the thing that ties together the required python/python3 etc
<pushqrdx> however i can't overlay it for some reason
<cole-h> If you want to change the src of neovim, you have to overlay neovim-unwrapped
<pushqrdx> cole-h but then i get a broken install without the wrapper
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #98363 → mosdepth: 0.2.9 -> 0.3.1 → https://git.io/JUu80
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkSIg
<cole-h> Yes, that's why there's a wrapper :P
<pushqrdx> how can i use it lol
<pushqrdx> been trying to figure it out for hours
<pushqrdx> it just seems like magic
<cole-h> 24226: neovim = wrapNeovim neovim-unwrapped { };
<cole-h> 24218: neovim-unwrapped = callPackage ../applications/editors/neovim {
<pushqrdx> cole-h i have this overlay in my overlays.nix, how can i make that use the wrapped version?
<pushqrdx> name = "neovim-nightly";
<pushqrdx> neovim-unwrapped = super.neovim-unwrapped.overrideAttrs (oldAttrs: rec {
<pushqrdx> src = self.fetchurl {
<pushqrdx> version = "0.5-nightly";
<pushqrdx> sha256 = "1za5xmxxy9dd25p4jyl6jq1hmzvpqp4yfgfr87vavxkd0c2f27jx";
<pushqrdx> };
<pushqrdx>
<pushqrdx> nativeBuildInputs = with self.pkgs; [ unzip cmake pkgconfig gettext tree-sitter-updated ];
<pushqrdx> });
<pushqrdx>
<cole-h> ,paste pushqrdx
<{^_^}> pushqrdx: Use a website such as [ https://gist.github.com/ http://ix.io/ https://hastebin.com/ http://sprunge.us/ https://paste.ee/ ] or similar services to share anything that's longer than a couple lines.
<cole-h> Next time, please :)
<pushqrdx> sorry :( did it bombared you with notifications? xD
<cole-h> No, it's just that multiline messages look like crap in IRC
LnL has quit [Ping timeout: 260 seconds]
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<cole-h> Have you tried updating your nixpkgs, wherever you get it from?
<SomeoneSerge> cole-h: oh thx for the snippet
lopsided98 has joined #nixos
<pushqrdx> cole-h i have a very recent one i just update some days ago, the issue is that neovim without the wrapper is broken (python)
<pushqrdx> i can't see what's different in your overlay though?
deadpixels has quit [Quit: WeeChat 2.9]
<pushqrdx> where is the wrapper there
<cole-h> There is no wrapper, since the wrapper is applied automatically to your `neovim-unwrapped` package
<cole-h> As per `24273: neovim = wrapNeovim neovim-unwrapped { };`
<pushqrdx> cole-h where is that line, also it isn't applied in my case that's what i am trying to say
<cole-h> That's from nixpkgs
<cole-h> It's always applied if you use the `neovim` package
<pushqrdx> if i use the neovim package my overlay doesn't work, i just get 0.4.4
<pushqrdx> it's so frustrating
<cole-h> That means your overlay isn't set up properly
<pushqrdx> well, it's the thing i sent up top i don't see anything wrong with it
<cole-h> Where do you have your overlay?
<cole-h> (One thing that's "wrong" but wouldn't affect this issue is `name` should be `pname`)
<pushqrdx> $HOME/.config/nixpkgs/overlays/overlays.nix
<ar> \/22
<cole-h> Can you paste that file somewhere?
<cole-h> ,paste
Morfio has quit [Quit: This computer has gone to sleep]
<{^_^}> Use a website such as [ https://gist.github.com/ http://ix.io/ https://hastebin.com/ http://sprunge.us/ https://paste.ee/ ] or similar services to share anything that's longer than a couple lines.
Morfio has joined #nixos
<pushqrdx> cole-h it installs 0.5 if i use -iA neovim-unwrapped, if i use -iA neovim it says installing "nightly" but ends up with 0.4.4
<cole-h> Interesting. What if you make that overlays.nix `rec` and do `neovim = prev.wrapNeovim neovim-unwrapped { /* withPython = ... */ };`
<cole-h> Err
<cole-h> Would be `self.wrapNeovim` for you
<pushqrdx> cole-h i don't even know that much about the rec part yet so i don't know what changes should i do
wnklmnn has quit [Quit: Leaving]
<cole-h> `self: super: rec {`
ashkitten has quit [Quit: WeeChat 2.9]
<pushqrdx> so first things first i will try with pname instead of name and see if that changes anything
ashkitten has joined #nixos
<cole-h> It won't
civodul has quit [Quit: ERC (IRC client for Emacs 27.1)]
<cole-h> That only changes `/nix/store/somehash2131422-neovim-nightly` to `/nix/store/...-neovim-nightly-0.5-nightly`
ashkitten has quit [Changing host]
ashkitten has joined #nixos
ashkitten has quit [Client Quit]
ashkitten has joined #nixos
<pushqrdx> cole-h it worked after i did pname and added the neovim part from your overlay but changed everything to true
<pushqrdx> now -iA neovim, rebuilt neovim and gave me 0.5
<pushqrdx> holy crap... finally
<pushqrdx> idk what happened though and i don't like thing to magically work like that
iH8c0ff33 has quit [Ping timeout: 256 seconds]
eoli3n has quit [Ping timeout: 256 seconds]
<cole-h> Oh
<cole-h> If you were using -iA
justanotheruser has quit [Ping timeout: 256 seconds]
<cole-h> that's why
euandreh has quit [Quit: WeeChat 3.0]
<pushqrdx> comparing my 2 pastes the only changes were pname and the neovim overrides
<pushqrdx> cole-h why what :D
<pushqrdx> the attribute is using pname right xD
<cole-h> Because nix-env is annoying to deal with :)
<cole-h> Or maybe not
<cole-h> I don't really know
<cole-h> But glad that it works. (You should really not use nix-env, though. It's got loads of gotchas.)
<pushqrdx> i don't use it usually it's just that i wanted to test the overlay before i move that into my config
<pushqrdx> i only have 4 packages in -q
fendor has quit [Remote host closed the connection]
<pushqrdx> would my overlay work when i move neovim to my users.user.packages though?
<cole-h> If it were me, I'd still test using my config. You can even just use `nixos-rebuild test`
<cole-h> and it will switch your current system to it, but not change it for boot
<pushqrdx> cole-h you mean your overlay?, and i don't get the part about rebuild
<cole-h> You were using `nix-env` to test the package. I'd rather just add it to my user's packages and `nixos-rebuild test` instead.
<pushqrdx> oh i didn't know that there's test command, been rebuilding generations like a dummy
<pushqrdx> so test will replace thing at runtime as if i rebooted?
<pushqrdx> thigs*
<cole-h> what
meh` has quit [Ping timeout: 264 seconds]
<pushqrdx> nixos-rebuild test, what does it do?
<cole-h> `nixos-rebuild switch` is basically `nixos-rebuild boot` + `nixos-rebuild test` -- `nixos-rebuild boot` changes the generation you'll boot into, and `nixos-rebuild test` changes the current generation of your system
<cole-h> man nixos-rebuild for more
<pushqrdx> the test part made me think that it's not permenant for some reason
meh` has joined #nixos
<pushqrdx> and applies without reboot
<cole-h> It's not
<cole-h> If you reboot, it will go back to your previous generation
<clever> cole-h: for extra complication, boot doesnt really work on systemd-boot, since that can only boot what is a valid generation
<clever> cole-h: but grub's boot code, can boot things that are not generations
<cole-h> 💫
<gchristensen> `nixos-rebuild boot` does work with systemd-boot, though?
<pushqrdx> cole-h emoji picker?
<clever> gchristensen: it might be specific to switch-to-configuration boot
<gchristensen> I guess switch-to-configuration boot doesn't..yeah
<cole-h> > pkgs.rofi-emoji
<clever> cole-h: my irc client cant render emoji
<cole-h> RIP.
<cole-h> I sent the "dizzy" emoji
cizra has quit [Ping timeout: 260 seconds]
cizra has joined #nixos
euandreh has joined #nixos
iH8c0ff33 has joined #nixos
justanotheruser has joined #nixos
Acou_Bas- has joined #nixos
Acou_Bass has quit [Ping timeout: 260 seconds]
sss2 has quit [Ping timeout: 264 seconds]
sss2 has joined #nixos
isHavvy has joined #nixos
iH8c0ff33 has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #102352 → python3Packages.ppscore: init at 1.1.1 → https://git.io/JT738
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkSmU
werner291 has quit [Quit: werner291]
Havvy has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #104933 → horizon-eda: 1.2.1 -> 1.3.0 → https://git.io/JkybQ
<{^_^}> [nixpkgs] @SuperSandro2000 pushed 2 commits to master: https://git.io/JkSmO
<octe> i'm creating a package for something built by meson/ninja, the build works but it's installing the wrong files
<octe> i've tried to set installPhase = "cp *.so $out" myself, as i see in examples, but $out doesn't seem to exist
<octe> am i doing something wrong or could i be meson/ninja overriding something?
<srid> Is it possible disable a specific cache when running nix-build/ nixos-rebuild?
<vuko> is there more than one *.so file?
<srid> (The idea is disable all the slow-as-fuck caches except cache.nixos.org)
<octe> yes vuko, isn't $out a directory?
<{^_^}> [nixpkgs] @r-ryantm opened pull request #104946 → cargo-expand: 1.0.0 -> 1.0.4 → https://git.io/JkSmr
<srid> ` --option substitute false` will disable everything
<vuko> it is not created by default
<octe> oh ok
<vuko> you need to add "mkdir $out"
<octe> great, thanks
<{^_^}> Channel nixos-20.09-small advanced to https://github.com/NixOS/nixpkgs/commit/280e05f5550 (from 7 hours ago, history: https://channels.nix.gsc.io/nixos-20.09-small)
<{^_^}> [nixpkgs] @RonanMacF opened pull request #104947 → vimPlugins: update → https://git.io/JkSmd
pushqrdx_ has joined #nixos
cosimone has quit [Remote host closed the connection]
pushqrdx has quit [Ping timeout: 246 seconds]
cosimone has joined #nixos
<V> octe: it doesn't have to be a directory
<V> e.g. the fetchers put tarballs and such directly at $out
<octe> ah, i didn't realize
<V> it's an easy mistake to make
alp has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @jonringer opened pull request #104948 → selenium-server-standalone: 3.6.0 -> 3.141.59 → https://git.io/JkSY4
Jonathan69 has joined #nixos