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
<colemickens> littlebenlittle: "this is a nix string blah blah ''${nixWontTouchThis} blah"
<colemickens> littlebenlittle: those are two single quote chars in front of the dollar sign
<{^_^}> Channel nixos-20.09 advanced to https://github.com/NixOS/nixpkgs/commit/b94726217f7 (from 13 hours ago, history: https://channels.nix.gsc.io/nixos-20.09)
<littlebenlittle> colemickens: That is much better than ${"\${!p}"}. Thank you :)
wiml has quit [Quit: Leaving]
<pinpox> Any good introductions to flakes? I'm looking to see if I can organize my nixos machines with it. Found a talk from eelco on youtube from 2019, is that information still valid in 2020?
<{^_^}> [nixpkgs] @alyssais opened pull request #106860 → libcryptui: enableParallelBuilding → https://git.io/JIjEp
<colemickens> pinpox: I'll personally help you if it means another flake convert
<pinpox> colemickens: :D
<pinpox> That's a nice offer
<colemickens> pinpox: what angle are you coming from? Are you trying to convert a nixos configuration to be flake enabled?
Rusty1 has joined #nixos
<colemickens> pinpox: or maybe you're building software with Nix and want to make it available via flake?
<pinpox> Give me some pointers on where to start. I'm currently running laptop+desktop+a few servers with nixos and would ilke to make it "flake enabled"
<pinpox> colemickens: This is my configuration as of now: https://github.com/pinpox/nixos/blob/main/krops/krops.nix
<colemickens> that largely will mean writing a flake.nix, specifying the inputs you use (maybe just nixpkgs) and then some code to import your system configurations and expose them as output attributes under "nixosConfigurations".
<colemickens> that's the gist of it, anyway.
<colemickens> nixflk is a very comprehensive template for a starting point: https://github.com/nrdxp/nixflk
<pinpox> thanks, I'll definitely read through that
<colemickens> or alternatively, I made this repo, which is a very light flake.nix that wraps an existing simple nixos configuration.nix config: https://github.com/colemickens/nixos-flake-example/blob/master/flake.nix
<colemickens> It explains some benefits of flakes, and would represent the very least you'd need to do to build one of your system configs with flakes, instead of classic NIX_PATH.
<{^_^}> [nixos-homepage] @github-actions[bot] pushed commit from GitHub Actions to master « Update flake.lock and blogs.xml [ci skip] »: https://git.io/JIj2t
<colemickens> (It also serves to demonstrate that you can build identical system configs with or without flakes.)
<pinpox> colemickens: nice, thank you for both links!
<pinpox> Have to do some reading before I start, but I'll come back with more questions ;)
<pinpox> colemickens+
<pinpox> colemickens++
<{^_^}> colemickens's karma got increased!
<{^_^}> [nixpkgs] @chessai opened pull request #106861 → simdjson: init at 0.7.0 → https://git.io/JIjah
KarlJoad has joined #nixos
<KarlJoad> How can I change the timeout for querying for a binary cache for nix-build?
jorbak has joined #nixos
fuzzypixelz has quit [Quit: fuzzypixelz]
mbrgm has quit [Ping timeout: 264 seconds]
mbrgm_ has joined #nixos
mbrgm_ is now known as mbrgm
jorbak has left #nixos [#nixos]
g-w1 has joined #nixos
<KarlJoad> Sorry, I should specify that I am building this from `nix repl` while I'm working on stuff. The timeout flag is already available for `nix build`.
<g-w1> hello, is there a way to get (from an install) the configuration.nix that was generated when I installed it?
m4ts has quit [Ping timeout: 256 seconds]
<pinpox> g-w1: nixos-generate-config --dir myconfig
<g-w1> tysm
<pinpox> should generate a config to myconfig
<pinpox> (like the installer)
<g-w1> awesome! thanks, saved me some time
zupo_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
supersandro2000 has quit [Disconnected by services]
supersandro2000 has joined #nixos
ddellacosta has joined #nixos
SomeoneSerge has quit [Ping timeout: 272 seconds]
thelounge52 has joined #nixos
<{^_^}> [nixpkgs] @github-actions[bot] pushed 37 commits to staging-next: https://git.io/JIjxW
<{^_^}> [nixpkgs] @github-actions[bot] pushed 38 commits to staging: https://git.io/JIjxl
thelounge52 has quit [Ping timeout: 264 seconds]
ddellacosta has quit [Ping timeout: 240 seconds]
karolus has quit [Read error: Connection reset by peer]
KarlJoad has quit [Quit: AndroIRC - Android IRC Client ( http://www.androirc.com )]
* colemickens has a go project that builds cleanly with go build ./... but gives an error about an import when I build with nix :/
<adisbladis> colemickens: Are you using buildGoModule and forgot to bump a hash?
<colemickens> adisbladis: I am using buildGoModule, I was trying with fakeSha256 to see what would happen
<colemickens> I'm guessing that's my problem
<colemickens> but also?
<{^_^}> [nixpkgs] @adisbladis merged pull request #106861 → simdjson: init at 0.7.0 → https://git.io/JIjah
<{^_^}> [nixpkgs] @adisbladis pushed 2 commits to master: https://git.io/JLeGD
<adisbladis> Yeah idk...
<adisbladis> FOD abuse is dangerous
<adisbladis> Comes with many sharp edges
g-w1 has left #nixos ["WeeChat 3.1-dev"]
<m0rphism> I have a problem with nix-shell in one of my projects: it starts to explore the directory structure and fails due to missing permissions.
<m0rphism> The shell.nix basically just calls to a default.nix via `with (import <nixpkgs> {}); callPackage ./. {}`
<adisbladis> m0rphism: Can you share your expression?
<m0rphism> The default.nix has `src = ./.`
<adisbladis> Yeah, that would explain things
<adisbladis> That copies the directory contents to the nix store
<m0rphism> ah I see, I did not expect that :D
<adisbladis> m0rphism: There are source filtering mechanisms to filter out unwanted files
<adisbladis> lib.cleanSource is a very basic one, nix-gitignore is another example
justanotheruser has quit [Ping timeout: 258 seconds]
<m0rphism> oh that's perfect, thanks for the reference!
justanotheruser has joined #nixos
lord| has quit [Quit: https://i.imgur.com/xacQ09F.mp4]
ris has quit [Ping timeout: 240 seconds]
supersandro2000 has quit [Quit: The Lounge - https://thelounge.chat]
supersandro2000 has joined #nixos
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage-packages.nix: automatic Haskell package set update »: https://git.io/JLeaI
<{^_^}> [nixpkgs] @IvarWithoutBones opened pull request #106864 → pythonPackages.tldextract: add missing dependency → https://git.io/JLe6q
<{^_^}> Channel nixos-20.09-small advanced to https://github.com/NixOS/nixpkgs/commit/6d3c890210b (from 7 hours ago, history: https://channels.nix.gsc.io/nixos-20.09-small)
detran has joined #nixos
<{^_^}> Channel nixpkgs-20.09-darwin advanced to https://github.com/NixOS/nixpkgs/commit/6d3c890210b (from 7 hours ago, history: https://channels.nix.gsc.io/nixpkgs-20.09-darwin)
<{^_^}> [nixpkgs] @marsam merged pull request #106859 → nodejs-15_x: 15.3.0 -> 15.4.0 → https://git.io/JIj3p
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JLeM3
Lord_of_Life_ has joined #nixos
<{^_^}> [nixpkgs] @marsam merged pull request #106851 → git-lfs: 2.12.1 -> 2.13.1 → https://git.io/JIhmH
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JLeD5
Lord_of_Life has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @marsam merged pull request #106528 → python37Packages.azure-mgmt-recoveryservicesbackup: 0.9.0 -> 0.10.0 → https://git.io/JIa0j
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JLeyU
Lord_of_Life_ is now known as Lord_of_Life
georges has joined #nixos
<{^_^}> [nixpkgs] @marsam merged pull request #106706 → gutenprint: 5.2.14 -> 5.3.4 → https://git.io/JI6Yh
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JLeSl
<{^_^}> [nixpkgs] @marsam merged pull request #106513 → python37Packages.azure-synapse-accesscontrol: 0.3.0 -> 0.4.0 → https://git.io/JIafB
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JLeSr
cole-h has joined #nixos
<{^_^}> [nixpkgs] @marsam merged pull request #106510 → python37Packages.prance: 0.19.0 -> 0.20.0 → https://git.io/JI2je
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JLe9a
<{^_^}> [nixpkgs] @marsam merged pull request #106783 → python37Packages.google_cloud_translate: 3.0.1 -> 3.0.2 → https://git.io/JIPTk
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JLeHG
<{^_^}> [nixpkgs] @marsam merged pull request #106793 → python37Packages.pytorch-metric-learning: 0.9.94 -> 0.9.95 → https://git.io/JIPG7
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JLeHM
<{^_^}> [nixpkgs] @marsam merged pull request #106476 → osinfo-db: 20201015 -> 20201119 → https://git.io/JIgbJ
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JLeQg
<{^_^}> [nixpkgs] @marsam merged pull request #106417 → igraph: 0.8.4 -> 0.8.5 → https://git.io/JIuVa
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JLe7m
chang has joined #nixos
<{^_^}> [nixpkgs] @marsam merged pull request #106730 → python3Packages.thinc: 7.4.4 -> 7.4.5 → https://git.io/JI6pi
<{^_^}> [nixpkgs] @marsam pushed 3 commits to master: https://git.io/JLedV
chang has quit [Client Quit]
chang has joined #nixos
<{^_^}> [nixpkgs] @IvarWithoutBones opened pull request #106865 → pythonPackages.clize: fix build → https://git.io/JLejx
Darkmatter66_ has joined #nixos
LnL has quit [Quit: exit 1]
Darkmatter66 has quit [Ping timeout: 246 seconds]
LnL has joined #nixos
chang has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<{^_^}> [nixpkgs] @IvarWithoutBones opened pull request #106866 → pythonPackages.cliff: unbreak build → https://git.io/JLvOv
philr_ has joined #nixos
<{^_^}> [nixpkgs] @akoppela opened pull request #106867 → PHP: Added SSH2 and msgpack extensions. → https://git.io/JLv3n
philr has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @marsam merged pull request #106852 → ncspot: 0.2.4 -> 0.2.5 → https://git.io/JIhY8
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JLvGi
tejing has quit [Ping timeout: 244 seconds]
<{^_^}> [nixpkgs] @marsam merged pull request #106865 → pythonPackages.clize: fix build → https://git.io/JLejx
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JLvcY
m0rphism has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @IvarWithoutBones opened pull request #106869 → pythonPackages.discordpy: remove overly restrictive version constraints → https://git.io/JLvRK
h0m1 has quit [Ping timeout: 260 seconds]
LnL has quit [Quit: exit 1]
LnL has joined #nixos
LnL has joined #nixos
LnL has quit [Changing host]
h0m1 has joined #nixos
tejing has joined #nixos
<{^_^}> [nixpkgs] @IvarWithoutBones opened pull request #106870 → [20.09] pythonPackages.clize: fix build → https://git.io/JLv2v
gustavderdrache has quit [Quit: Leaving.]
littlebenlittle has quit [Read error: Connection reset by peer]
wnklmnn has quit [Quit: Leaving]
domogled has quit [Quit: domogled]
Darkmatter66_ has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @mweinelt merged pull request #106673 → [staging-20.09] curl: 7.72.0 -> 7.74.0 → https://git.io/JIKsQ
<{^_^}> [nixpkgs] @mweinelt pushed 3 commits to staging-20.09: https://git.io/JLvQH
aw has quit [Quit: Quitting.]
spacefrogg has quit [Quit: Gone.]
aw has joined #nixos
spacefrogg has joined #nixos
ManiacOfMadness has joined #nixos
m4ts has joined #nixos
Darkmatter66 has joined #nixos
aswanson has quit [Quit: aswanson]
KarlJoad has joined #nixos
<KarlJoad> Can someone explain the use of sourceRoot to me? Right now, I am saying `sourceRoot = "source/src"`. I thought it would need to be `sourceRoot = "${src}/src"`.
<{^_^}> [nixpkgs] @mweinelt merged pull request #106623 → pythonPackages.hass-nabucasa: 0.37.2 -> 0.39.0 → https://git.io/JIrTA
<{^_^}> [nixpkgs] @mweinelt pushed 2 commits to master: https://git.io/JLvjp
Taneb has quit [Quit: I seem to have stopped.]
Taneb has joined #nixos
LilleCarl has quit [Ping timeout: 256 seconds]
<simpson> KarlJoad: The idea is to emulate classic build tool workflows where, rather than running `make`, you'd have to run `make -C src`, or maybe `cd src; make` etc.
<simpson> This allows us to *declare* the directory where the source is, rather than writing shell script to find it.
<KarlJoad> simpson: Ok. Now, why should I be saying "source/src", rather than "${src}/src"?
<simpson> KarlJoad: I'm not sure. I figure that it should be a relative path, at the minimum; "${src}" is going to be an absolute path. Also it's usually done that way in nixpkgs, when searching with `git grep sourceRoot`.
<KarlJoad> That's weird, because `source` doesn't expand to anything (either through nix or bash) (at least not to my knowledge). My source also doesn't have a "source" directory, but has a "src" directory, which /is/ found.
<simpson> Oh, the literal "source" string is because that's what Nix calls source package unpack directories.
<simpson> `git grep 'sourceRoot = "source' | wc -l` gives me 105 different examples across nixpkgs; it's a popular choice. Because it's Nix's default choice.
euandreh has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #106872 → python37Packages.azure-synapse-artifacts: 0.3.0 -> 0.4.0 → https://git.io/JLfYB
hspak has quit [Quit: bye]
<KarlJoad> simpson: So, `source` refers to the unpacked contents of $src? Even though, for me (in nix-shell) $src="/nix/store/6v7lp44q8bwp4x3f81g12lhad7cwl8lm-source"?
hspak has joined #nixos
<simpson> KarlJoad: I think so? Try it and see.
<{^_^}> [nixpkgs] @r-ryantm opened pull request #106873 → python37Packages.alerta: 8.2.0 -> 8.3.0 → https://git.io/JLfsg
mir100 has quit [Quit: WeeChat 2.8]
<{^_^}> Channel nixos-20.09-small advanced to https://github.com/NixOS/nixpkgs/commit/fafb912f3f6 (from 6 hours ago, history: https://channels.nix.gsc.io/nixos-20.09-small)
<{^_^}> Channel nixpkgs-20.09-darwin advanced to https://github.com/NixOS/nixpkgs/commit/fafb912f3f6 (from 6 hours ago, history: https://channels.nix.gsc.io/nixpkgs-20.09-darwin)
hspak has quit [Quit: bye]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #106874 → python37Packages.cx_oracle: 8.0.1 -> 8.1.0 → https://git.io/JLf8A
<{^_^}> [nixpkgs] @MetaDark opened pull request #106875 → pythonPackages.python-prctl: disable test_speculation_ctrl → https://git.io/JLfBg
thelounge52 has joined #nixos
thelounge52 has quit [Ping timeout: 256 seconds]
Supersonic112 has joined #nixos
waleee-cl has quit [Quit: Connection closed for inactivity]
Supersonic has quit [Ping timeout: 264 seconds]
Supersonic112 is now known as Supersonic
ElDieguito has joined #nixos
johnw has quit [Quit: ZNC - http://znc.in]
<KarlJoad> simpson: So, I did that test. When `sourceRoot = "source/src"` it builds correctly. When `sourceRoot = "${src}/src"`, I get permission-denied errors about copying to $out.
<simpson> Makes sense, since that absolute path is going to point into the Nix store.
<KarlJoad> So, where is the unpacked source during the build then? /tmp?
endformationage has quit [Quit: WeeChat 2.9]
<KarlJoad> Also, since the Nix store is read-only, why couldn't I copy to $out? Isn't $out writable during the build process?
<simpson> It looks like the build happens in /build, which doesn't really exist. This helps prevent TMPDIR issues. https://github.com/NixOS/nix/commit/eba840c8a13b465ace90172ff76a0db2899ab11b
thelounge52 has joined #nixos
zakame has joined #nixos
domogled has joined #nixos
joehh1 has quit [Ping timeout: 246 seconds]
joehh1 has joined #nixos
<KarlJoad> The program builds in /build, the input source is in /build/source? Then how does the output of cp in.something $out/bin work? Since $out is a full path into the nix stor.
m4tsa_ has joined #nixos
<{^_^}> [nixpkgs] @vbgl merged pull request #106752 → ocamlPackages.torch: 0.10 → 0.11 → https://git.io/JIiDP
<{^_^}> [nixpkgs] @vbgl pushed to master « ocamlPackages.torch: 0.10 → 0.11 »: https://git.io/JLfxR
<simpson> I don't know. Does it matter?
m4ts has quit [Ping timeout: 256 seconds]
ElDieguito has quit [Ping timeout: 245 seconds]
Dotz0cat_ has joined #nixos
Dotz0cat has quit [Ping timeout: 264 seconds]
thelounge52 has quit [Ping timeout: 272 seconds]
<clever> KarlJoad: the unpackPhase will copy $src to . then set sourceRoot to be the name of whatever dir appeared
<clever> KarlJoad: if you use a sourceRoot of ${src}/src, then the source is now readonly
growpotkin has quit [Quit: ZNC 1.8.2 - https://znc.in]
Rusty1 has quit [Quit: WeeChat 2.3]
<{^_^}> [nixpkgs] @antifuchs opened pull request #106876 → mosh: Hermeticize mosh-client path reference from mosh.pl → https://git.io/JLJqp
sangoma has joined #nixos
Darkmatter66 has quit [Ping timeout: 256 seconds]
<KarlJoad> clever: Ok. I think I'm starting to get it. Then, why would a `cp` from ${src}/src to $out fail? The builder should be able to read the input, so why couldn't it copy to the output?
palo1 has joined #nixos
gerschtli has quit [Quit: WeeChat 2.9]
gerschtli has joined #nixos
<KarlJoad> `nix build` returns an error about `chmod` not being permitted.
palo has quit [Ping timeout: 265 seconds]
palo1 is now known as palo
thelounge52 has joined #nixos
amfl_ has joined #nixos
amfl has quit [Ping timeout: 256 seconds]
amfl_ is now known as amfl
<meatcar> Is there a trick to git-bisect nixpkgs, when nixos-unstable is marked good, and master is marked bad, without rebuilding 400 packages including gcc "an estimated 8" times? How can I tell whats the freshest commit in master that has all the derivations cached?
KarlJoad has quit [Quit: ERC (IRC client for Emacs 27.1)]
<srhb> meatcar: Not _really_ -- nixos/nixpkgs-unstable _is_ the latest master that has all derivations cached, so it becomes a bit tricky with skips etc.
<{^_^}> [nixpkgs] @github-actions[bot] pushed 33 commits to staging-next: https://git.io/JLJB0
<{^_^}> [nixpkgs] @github-actions[bot] pushed 34 commits to staging: https://git.io/JLJBE
<srhb> meatcar: It may be helpful to look at the hydra falures if there were several attempts between the two commits you're bisecting.
mounty has quit [Ping timeout: 258 seconds]
<meatcar> Hmm ok thanks.
orivej has quit [Ping timeout: 260 seconds]
<srhb> meatcar: Sort of a truth with modifications, the problem is that the branches conflates completion of all attempts with test failure. But usually, a cache failure, if it's not a very fresh master (ie. just after a big merge) means some important build failed..
<srhb> meatcar: You could try the latest finished run for nixos-unstable (with failures) instead of master to be sure that hydra has at least attempted building things.
philr has joined #nixos
thelounge52 has quit [Ping timeout: 240 seconds]
SanchayanMaity has joined #nixos
hyper_ch4 has joined #nixos
philr_ has quit [Ping timeout: 260 seconds]
johnw has joined #nixos
hyper_ch2 has joined #nixos
hyper_ch5 has quit [Ping timeout: 256 seconds]
<energizer> ,locate bin/semantic
<{^_^}> Couldn't find in any packages
hyper_ch4 has quit [Ping timeout: 272 seconds]
lopsided98 has quit [Ping timeout: 264 seconds]
caef^ has quit [Ping timeout: 240 seconds]
caef^ has joined #nixos
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/50daf0dd638 (from 4 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
thelounge52 has joined #nixos
lopsided98 has joined #nixos
<{^_^}> [nixpkgs] @srhb merged pull request #105697 → [20.09] gitlab: 13.6.0 -> 13.6.1 → https://git.io/JIIcW
<{^_^}> [nixpkgs] @srhb pushed 7 commits to release-20.09: https://git.io/JLJPY
thelounge52 has quit [Ping timeout: 265 seconds]
iH8c0ff33 has joined #nixos
lord| has joined #nixos
domogled has quit [Quit: domogled]
domogled has joined #nixos
domogled has quit [Client Quit]
domogled has joined #nixos
eoli3n has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #106877 → python37Packages.azure-synapse-spark: 0.3.0 -> 0.4.0 → https://git.io/JLJDu
<meatcar> srhb: thanks! That set me on the right path, I _think_ I found what I'm looking for.
<srhb> meatcar: Great! :)
<meatcar> out of curiousity, whats the difference between nixpkgs:trunk and nixpkgs:trunk-combined in hydra?
<srhb> meatcar: The tests required to bump the corresponding channel/branch
Unode has quit [Quit: Off it goes]
Unode has joined #nixos
<srhb> meatcar: When the former set of jobs succeeds, nixpkgs-unstable advances, when the latter set of jobs succeeds, nixos-unstable advances.
mallox has joined #nixos
<meatcar> I see. All of this makes me really appreciate hydra.
<{^_^}> [nixpkgs] @r-ryantm opened pull request #106878 → python37Packages.aenum: 2.2.4 -> 2.2.6 → https://git.io/JLJHY
<srhb> meatcar: If only we had infinite compute and could attempt every jobset for every single commit . :-)
malook has joined #nixos
malook has quit [Client Quit]
lambda-11235 has quit [Quit: Bye]
ATuin has joined #nixos
Morfio has joined #nixos
sumner has quit [Remote host closed the connection]
sumner has joined #nixos
devalot has quit [Quit: ZNC - http://znc.in]
zupo has joined #nixos
domogled1 has joined #nixos
cfricke has joined #nixos
domogled has quit [Ping timeout: 272 seconds]
domogled1 is now known as domogled
devalot has joined #nixos
domogled1 has joined #nixos
domogled has quit [Ping timeout: 265 seconds]
domogled1 is now known as domogled
Jackneill has quit [Read error: Connection reset by peer]
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Jackneill has joined #nixos
caef^ has quit []
faffolter has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #106879 → python37Packages.azure-mgmt-datafactory: 0.14.0 -> 0.15.0 → https://git.io/JLUeG
<regnat> samueldr: Just realise I'd forgotten to ask you, but do you ming adding #nix-cas to https://logs.nix.samueldr.com/ ?
nsrh^ has joined #nixos
vidbina_ has joined #nixos
<{^_^}> [nixpkgs] @ck3d opened pull request #106880 → xdg-launch: init at 1.10 → https://git.io/JLUU1
vidbina_ has quit [Quit: vidbina_]
vidbina has joined #nixos
<{^_^}> [nixpkgs] @siriobalmelli opened pull request #106881 → gopass: fix impurity which breaks gopass after 'nix-store --gc' → https://git.io/JLUId
thelounge52 has joined #nixos
thelounge52 has quit [Ping timeout: 256 seconds]
lopsided98 has quit [Ping timeout: 260 seconds]
werner291 has joined #nixos
rajivr has quit [Ping timeout: 260 seconds]
mbrgm has quit [Ping timeout: 260 seconds]
mbrgm has joined #nixos
aw_ has joined #nixos
LnL has quit [Ping timeout: 260 seconds]
LnL- has joined #nixos
rajivr has joined #nixos
spacefrogg_ has joined #nixos
fuiltilt has quit [Ping timeout: 260 seconds]
deoxal[m] has quit [Ping timeout: 260 seconds]
hpfr has quit [Ping timeout: 260 seconds]
Reventlov has quit [Ping timeout: 260 seconds]
nahamu has quit [Ping timeout: 260 seconds]
immae has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #106882 → python37Packages.bandit: 1.6.3 -> 1.7.0 → https://git.io/JLU3J
spacefrogg has quit [Ping timeout: 260 seconds]
aw has quit [Ping timeout: 260 seconds]
kcwesley[m] has quit [Ping timeout: 260 seconds]
anna[m] has quit [Ping timeout: 260 seconds]
zgrep has quit [Ping timeout: 260 seconds]
txt-file has quit [Ping timeout: 260 seconds]
Skallwar has quit [Ping timeout: 260 seconds]
arcnmx has quit [Ping timeout: 260 seconds]
sectrect[m] has quit [Ping timeout: 260 seconds]
bbigras has quit [Ping timeout: 260 seconds]
lblasc[m] has quit [Ping timeout: 260 seconds]
zgrep has joined #nixos
deoxal[m] has joined #nixos
Jackneill has quit [*.net *.split]
nsrh^ has quit [*.net *.split]
iH8c0ff33 has quit [*.net *.split]
georges has quit [*.net *.split]
rprije has quit [*.net *.split]
dominikh has quit [*.net *.split]
konobi has quit [*.net *.split]
Heirlung has quit [*.net *.split]
mvnetbiz_99 has quit [*.net *.split]
Aleksejs has quit [*.net *.split]
stoile has quit [*.net *.split]
abathur has quit [*.net *.split]
IRCsum has quit [*.net *.split]
quinn has quit [*.net *.split]
qqlq has quit [*.net *.split]
szicari has quit [*.net *.split]
pjan has quit [*.net *.split]
ent has quit [*.net *.split]
cheriimoya has quit [*.net *.split]
leotaku_ has quit [*.net *.split]
simukis_ has quit [*.net *.split]
ww has quit [*.net *.split]
wpcarro_ has quit [*.net *.split]
tldr32 has quit [*.net *.split]
addcninblue has quit [*.net *.split]
evalexpr has quit [*.net *.split]
aleph- has quit [*.net *.split]
arianvp has quit [*.net *.split]
statusfailed has quit [*.net *.split]
bpye has quit [*.net *.split]
mupf has quit [*.net *.split]
vk3wtf has quit [*.net *.split]
kozowu has quit [*.net *.split]
jonge has quit [*.net *.split]
m_hackerfoo has quit [*.net *.split]
duairc has quit [*.net *.split]
DerHorst has quit [*.net *.split]
betaboon has quit [*.net *.split]
mk_modrzew_ has quit [*.net *.split]
LunarLambda has quit [*.net *.split]
pinpox has quit [*.net *.split]
VulNix has quit [*.net *.split]
ikwildrpepper has quit [*.net *.split]
nbp has quit [*.net *.split]
ericnoan has quit [*.net *.split]
jtcs_ has quit [*.net *.split]
_cyril_ has quit [*.net *.split]
cjay has quit [*.net *.split]
dirkx_ has quit [*.net *.split]
jeschli1 has quit [*.net *.split]
kandinski has quit [*.net *.split]
fuiltilt has joined #nixos
txt-file has joined #nixos
nsrh^ has joined #nixos
Skallwar has joined #nixos
arcnmx has joined #nixos
sectrect[m] has joined #nixos
lblasc[m] has joined #nixos
hpfr has joined #nixos
immae has joined #nixos
kcwesley[m] has joined #nixos
anna[m] has joined #nixos
bbigras has joined #nixos
Reventlov has joined #nixos
Reventlov is now known as Guest69965
zupo has joined #nixos
dominikh has joined #nixos
georges has joined #nixos
iH8c0ff33 has joined #nixos
Jackneill has joined #nixos
Aleksejs has joined #nixos
konobi has joined #nixos
Heirlung has joined #nixos
mvnetbiz_99 has joined #nixos
ww has joined #nixos
rprije has joined #nixos
qqlq has joined #nixos
cheriimoya has joined #nixos
ent has joined #nixos
szicari has joined #nixos
pjan has joined #nixos
IRCsum has joined #nixos
quinn has joined #nixos
wpcarro_ has joined #nixos
abathur has joined #nixos
stoile has joined #nixos
addcninblue has joined #nixos
statusfailed has joined #nixos
arianvp has joined #nixos
aleph- has joined #nixos
kozowu has joined #nixos
evalexpr has joined #nixos
pinpox has joined #nixos
ericnoan has joined #nixos
_cyril_ has joined #nixos
mk_modrzew_ has joined #nixos
nbp has joined #nixos
vk3wtf has joined #nixos
m_hackerfoo has joined #nixos
tldr32 has joined #nixos
duairc has joined #nixos
jtcs_ has joined #nixos
DerHorst has joined #nixos
simukis_ has joined #nixos
leotaku_ has joined #nixos
jonge has joined #nixos
betaboon has joined #nixos
mupf has joined #nixos
LunarLambda has joined #nixos
bpye has joined #nixos
jeschli1 has joined #nixos
kandinski has joined #nixos
VulNix has joined #nixos
ikwildrpepper has joined #nixos
dirkx_ has joined #nixos
cjay has joined #nixos
thibm has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #106883 → python37Packages.aioprocessing: 1.0.1 -> 1.1.0 → https://git.io/JLUGj
nahamu has joined #nixos
bitmapper has quit [Quit: Connection closed for inactivity]
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
lopsided98 has joined #nixos
SomeoneSerge has joined #nixos
kenran has joined #nixos
respawn_ has joined #nixos
<{^_^}> [nixpkgs] @xaverdh opened pull request #106884 → android-file-transfer: 4.0 -> 4.1 → https://git.io/JLUlg
thelounge52 has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #106885 → python37Packages.bugwarrior: 1.7.0 -> 1.8.0 → https://git.io/JLU0c
<{^_^}> [nixpkgs] @lheckemann merged pull request #105397 → nixos/mailman: make Postfix support optional (provided you configure the MTA yourself) → https://git.io/Jkp10
<{^_^}> [nixpkgs] @lheckemann pushed 2 commits to master: https://git.io/JLU0W
thelounge52 has quit [Ping timeout: 256 seconds]
hlolli_ has joined #nixos
kenshinCH has quit [Quit: WeeChat 2.9]
<{^_^}> [nixpkgs] @lblasc opened pull request #106886 → rustc: cleanup, use correct llvm version → https://git.io/JLUzS
qqlq has quit [Quit: ZNC 1.7.5 - https://znc.in]
qqlq has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #106887 → python37Packages.aiounifi: 25 -> 26 → https://git.io/JLUaM
<{^_^}> [nixpkgs] @NomisIV opened pull request #106888 → blender: add option for OptiX → https://git.io/JLUVw
krauser-tan[m] has quit [Quit: Idle for 30+ days]
luc65r[m] has quit [Quit: Idle for 30+ days]
tlater[m] has quit [Quit: Idle for 30+ days]
pjt_tmp has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #106889 → python37Packages.google_cloud_container: 2.2.0 -> 2.3.0 → https://git.io/JLUrz
cole-h has quit [Quit: Goodbye]
zupo has joined #nixos
<pinpox> Can someone help me out with this PR? https://github.com/NixOS/nixpkgs/pull/106824 I'm having problems following the intructions, the script I'm supposed to run fails
<{^_^}> #106824 (by pinpox, 19 hours ago, open): vimPlugins.nvim-scrollbar: init at 2020-12-13
<pinpox> I'm trying to submit a PR for a vim plugin
m0rphism has joined #nixos
respawn_ has quit [Quit: Leaving]
werner292 has joined #nixos
zupo_ has joined #nixos
werner291 has quit [Ping timeout: 272 seconds]
werner292 is now known as werner291
<{^_^}> [nixpkgs] @r-ryantm opened pull request #106890 → python37Packages.livereload: 2.6.1 -> 2.6.3 → https://git.io/JLUPr
zupo has quit [Ping timeout: 246 seconds]
hnOsmium0001 has quit [Quit: Connection closed for inactivity]
LilleCarl has joined #nixos
thelounge52 has joined #nixos
MidAutumnHotaru has quit [Quit: Quit 啾]
MidAutumnHotaru has joined #nixos
thelounge52 has quit [Ping timeout: 260 seconds]
orivej has joined #nixos
<viric> I have a weird behaviour of nix-build in latest nix 2.3.9
<viric> it fails to build, outputs nothing in stdout (only stderr) and exits returning 0.
<viric> Running with -vvvvvvv seems like it just stops in the middle of work
__monty__ has joined #nixos
<viric> All dies (but returning 0) after this line on screen:
<viric> copying path '/nix/store/c98xcx1paj9mjp5sz16vd88hvnwxyk5m-vc14win64-vsvars' from 'file:///cygdrive/p/nixcache/flat/'... (this is cygwin)
Diagon has joined #nixos
supersandro2000 has quit [Quit: Ping timeout (120 seconds)]
supersandro2000 has joined #nixos
<viric> I think it has to do with some paths not having a proper signature... but I don't know how I ended up with path not signed
Diagon has left #nixos ["Leaving"]
<{^_^}> [nixpkgs] @jtojnar merged pull request #105364 → doc/stdenv/cross-compilation: convert to markdown → https://git.io/Jkxow
<{^_^}> [nixpkgs] @jtojnar pushed 2 commits to master: https://git.io/JLU76
<viric> and I cannot fix it with "nix copy" so far
sigmundv__ has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #106891 → python37Packages.dependency-injector: 4.5.3 -> 4.5.4 → https://git.io/JLU50
domogled1 has joined #nixos
thc202 has joined #nixos
<viric> I'll grep the binary cache finding the narinfo without "Sig:" and delete them, and try copy again
domogled has quit [Ping timeout: 265 seconds]
<viric> I already tried a copy after ensuring the paths are signed and it didn't overwrite the narinfo
domogled has joined #nixos
domogled1 has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @06kellyjac opened pull request #106892 → starboard-octant-plugin: 0.7.0 -> 0.7.1 → https://git.io/JLUNt
greaka has quit [Ping timeout: 260 seconds]
berberman has quit [Ping timeout: 258 seconds]
berberman_ has joined #nixos
<viric> ah wait. The last "nix-build" does not show the output path on stdout?
<__monty__> > pkgs.starboard-octant-plugin.meta.description
<{^_^}> "Octant plugin for viewing Starboard security information"
<__monty__> > pkgs.starboard-octant-plugin.meta.longDescription
<{^_^}> "This is an Octant plugin for Starboard which provides visibility into vulnerability assessment reports for\nKubernetes workloads stored as custom security resources.\n"
<viric> hm no, it fails still. grmbl.
greaka has joined #nixos
vuko has quit [Ping timeout: 256 seconds]
<kenran> I used to build a project that uses OpenGL on NixOS unstable by entering a nix-shell containing pkgs.glfw3 and pkgs.epoxy and including the respective headers. I didn't touch it for some weeks (and some nix-channel updates), but now this no longer works. I get "file not found" errors on all the included header files. Do I need something special now to make the include paths available in a nix shell?
<viric> oh I have this:
<viric> "don't know how to build these paths:"
<viric> why nix tells me it doesn't know how to build paths?
akaWolf has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #106893 → python37Packages.lightgbm: 3.1.0 -> 3.1.1 → https://git.io/JLUje
<viric> I likely have to destroy that part of the binary cache, as nix copy doesn't solve it.
<{^_^}> [nixpkgs] @FRidh closed pull request #104679 → release.nix: remove aarch64 as blocker, fixes #104550 → https://git.io/Jkicw
werner292 has joined #nixos
werner291 has quit [Ping timeout: 272 seconds]
werner292 is now known as werner291
itshaydendev has joined #nixos
Guest69965 has quit [Changing host]
Guest69965 has joined #nixos
Guest69965 is now known as Reventlov
davidv7 has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @jtojnar merged pull request #106743 → malcontent: 0.9.0 -> 0.10.0 → https://git.io/JIi8H
<{^_^}> [nixpkgs] @jtojnar pushed commit from @r-ryantm to master « malcontent: 0.9.0 -> 0.10.0 »: https://git.io/JLTUf
<viric> maybe there is a binary cache "cache" in the middle... grmbl
vuko has joined #nixos
m4ts has joined #nixos
davidv7 has joined #nixos
vuko_ has joined #nixos
itshaydendev has quit [Quit: itshaydendev]
itshaydendev has joined #nixos
m4tsa_ has quit [Ping timeout: 256 seconds]
vuko has quit [Client Quit]
mkaito has joined #nixos
vuko_ has quit [Client Quit]
vuko has joined #nixos
<{^_^}> [nix] @edolstra merged pull request #4351 → primops/fromJSON: add error position in case of parse error → https://git.io/JIopt
<{^_^}> [nix] @edolstra pushed 2 commits to master: https://git.io/JLTIG
synbian has joined #nixos
greaka has quit [Ping timeout: 256 seconds]
edef has quit [Ping timeout: 260 seconds]
ekleog has quit [Ping timeout: 265 seconds]
itshaydendev has quit [Remote host closed the connection]
<viric> how can I choose the compression for the binary cache on nix copy?
<{^_^}> [nixpkgs] @r-ryantm opened pull request #106894 → python37Packages.mautrix: 0.8.3 -> 0.8.5 → https://git.io/JLTYU
<{^_^}> [nixpkgs] @primeos merged pull request #106549 → python3Packages.cryptography: 3.2.1 -> 3.3.1 → https://git.io/JIVIC
<{^_^}> [nixpkgs] @primeos pushed 2 commits to staging: https://git.io/JLTOS
sangoma has quit [Ping timeout: 258 seconds]
<viric> ?compression=blabla ok
davidv7 has quit [Read error: Connection reset by peer]
davidv7 has joined #nixos
m4ts has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #106895 → python37Packages.elasticsearch: 7.10.0 -> 7.10.1 → https://git.io/JLTnJ
<{^_^}> [nixpkgs] @danieldk merged pull request #106635 → libtorch-bin: 1.7.0 -> 1.7.1 → https://git.io/JIrrp
<{^_^}> [nixpkgs] @danieldk pushed 2 commits to master: https://git.io/JLTCk
tomturbo has joined #nixos
<tomturbo> hello, is it possible to declaratively create a symlink to a binary in the nix store when using dockertools?
m4ts has joined #nixos
sangoma has joined #nixos
davidv7 has quit [Read error: Connection reset by peer]
davidv7 has joined #nixos
jbaeth has joined #nixos
m4ts has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @Ma27 pushed 2 commits to master: https://git.io/JLTR0
m4ts has joined #nixos
mkaito has quit [Quit: WeeChat 2.9]
zupo_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
kfound has joined #nixos
werner292 has joined #nixos
rprije has quit [Ping timeout: 260 seconds]
thelounge52 has joined #nixos
werner291 has quit [Ping timeout: 272 seconds]
werner292 is now known as werner291
<kfound> good morning all - i'm looking for advice on NSS plugins, because the most recent glibc in nixpkgs-unstable removed the libnss_nis module
<{^_^}> [nixos-homepage] @github-actions[bot] pushed commit from GitHub Actions to master « Update flake.lock and blogs.xml [ci skip] »: https://git.io/JLTa7
<kfound> the code has been factored out into a separate repo (https://github.com/thkukuk/libnss_nis) which builds fine
LilleCarl has left #nixos ["WeeChat 2.9"]
LilleCarl has joined #nixos
fuiltilt has quit [Quit: WeeChat 2.9]
<kfound> is there a way to tell nix glibc to use this module without using nscd from nixpkgs?
orivej has quit [Ping timeout: 265 seconds]
civodul has joined #nixos
thelounge52 has quit [Ping timeout: 260 seconds]
<kfound> the options appear to be to try and patchelf glibc itself (which doesn't seem to be a good idea), or to modify the glibc derivation to fetch the additional module at source-fetch time
NeoCron has joined #nixos
<{^_^}> Channel nixpkgs-20.09-darwin advanced to https://github.com/NixOS/nixpkgs/commit/ec4b0d3c2ad (from 5 hours ago, history: https://channels.nix.gsc.io/nixpkgs-20.09-darwin)
<{^_^}> [nixpkgs] @ttuegel opened pull request #106896 → Update packages to Qt 5.15 for KDE Frameworks 5.76 → https://git.io/JLT6Y
SanchayanMaity has quit [Remote host closed the connection]
SanchayanMaity has joined #nixos
hyper_ch4 has joined #nixos
<{^_^}> [nixpkgs] @poscat0x04 opened pull request #106897 → Unbreak ghcide → https://git.io/JLTXc
zupo has joined #nixos
hyper_ch5 has joined #nixos
hyper_ch2 has quit [Ping timeout: 272 seconds]
Darkmatter66 has joined #nixos
hyper_ch4 has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #106898 → python37Packages.databricks-connect: 7.1.10 -> 7.3.5 → https://git.io/JLTDz
shabius_ has joined #nixos
<Reiser> Is nix-channel --update not working for anyone else? Just hanging, bit confusing
<DigitalKiwi> oh they let you out already Reiser ?
<Reiser> At least until they find my next wife
<DigitalKiwi> i think we are going to be friends
shabius has quit [Ping timeout: 272 seconds]
<Reiser> Hahaha
<kfound> nix-channel --update works for me for nixpkgs-unstable
<Reiser> Yeah, I asked too quickly, seems the DNS entry coming back doesn't resolve, I wonder if DNS was updated and I'm lagging on TTL
<Ke> worked for me 6 times earlier today
fendor has joined #nixos
<Reiser> * Trying 167.172.221.254:443...
<Reiser> Odd
<Reiser> Pretty sure I'm just getting an old IP back, bad DNS
<{^_^}> [nixpkgs] @ttuegel opened pull request #106899 → nixos/plasma5: test that KDED runs at startup → https://git.io/JLTHX
<kfound> the dns A record is changing while i'm checking: possibly load balancing
<kfound> i can telnet to that port on that address
<kfound> firewall?
<Reiser> Oh well that is odd, so can I on another machine, I'll have to dig around and see what's up
<Reiser> I've been on the inside too long you see, forgotten how to use linux already
<{^_^}> [nixpkgs] @prusnak merged pull request #106738 → libusb1: 1.0.23 -> 1.0.24 → https://git.io/JIiLR
<{^_^}> [nixpkgs] @prusnak pushed 2 commits to staging: https://git.io/JLTdD
<{^_^}> [nixpkgs] @prusnak opened pull request #106900 → libusb1: add prusnak to maintainers → https://git.io/JLTF7
<{^_^}> [nixpkgs] @zowoq pushed to release-20.09 « youtube-dl: 2020.12.12 -> 2020.12.14 »: https://git.io/JLTNP
gxt has joined #nixos
<{^_^}> [nixpkgs] @zowoq merged pull request #106819 → nerdctl: 0.2.0 -> 0.3.0 → https://git.io/JIdtF
<{^_^}> [nixpkgs] @zowoq pushed commit from @06kellyjac to master « nerdctl: 0.2.0 -> 0.3.0 »: https://git.io/JLTAz
gxt has quit [Remote host closed the connection]
domogled has quit [Quit: domogled]
<tomturbo> hello, is it possible to create a symlink and an arbitrary empty directory when using dockertools?
fendor_ has joined #nixos
<{^_^}> [nixpkgs] @teto opened pull request #106901 → kubernetes-helm: support plugins → https://git.io/JLThB
<Reiser> kfound, looks like some sort of actual network outage globally, so not just me :)
<Reiser> Time for coffee and slacking off
<kfound> at least irc still works - and the coffee machine :)
fendor has quit [Ping timeout: 256 seconds]
zupo_ has joined #nixos
<kfound> i wonder if the us-east-1 outage took out any coffee machines the other week
zupo has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @github-actions[bot] pushed 11 commits to staging-next: https://git.io/JLkvD
<{^_^}> [nixpkgs] @github-actions[bot] pushed 12 commits to staging: https://git.io/JLkvy
<LilleCarl> Reiser: Google is dead
respawn_ has joined #nixos
Jackneill has quit [Ping timeout: 260 seconds]
clever has quit [Ping timeout: 256 seconds]
clever has joined #nixos
clever has quit [Changing host]
clever has joined #nixos
<{^_^}> [nixpkgs] @danieldk merged pull request #106900 → libusb1: add prusnak to maintainers → https://git.io/JLTF7
<{^_^}> [nixpkgs] @danieldk pushed 2 commits to master: https://git.io/JLkLx
Jackneill has joined #nixos
hyper_ch4 has joined #nixos
littlebenlittle has joined #nixos
hyper_ch5 has quit [Ping timeout: 272 seconds]
clever has quit [Ping timeout: 240 seconds]
sangoma has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @marsam merged pull request #106850 → lsd: 0.18.0 -> 0.19.0 → https://git.io/JIpFo
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JLk3G
clever has joined #nixos
clever has joined #nixos
clever has quit [Changing host]
chang has joined #nixos
<{^_^}> [nixpkgs] @marsam merged pull request #106895 → python37Packages.elasticsearch: 7.10.0 -> 7.10.1 → https://git.io/JLTnJ
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JLk37
chang has quit [Client Quit]
<{^_^}> [nixpkgs] @marsam merged pull request #106870 → [20.09] pythonPackages.clize: fix build → https://git.io/JLv2v
<{^_^}> [nixpkgs] @marsam pushed 2 commits to release-20.09: https://git.io/JLkGW
<{^_^}> [nixpkgs] @marsam merged pull request #106873 → python37Packages.alerta: 8.2.0 -> 8.3.0 → https://git.io/JLfsg
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JLknu
nore has joined #nixos
<{^_^}> [nixpkgs] @marsam merged pull request #106882 → python37Packages.bandit: 1.6.3 -> 1.7.0 → https://git.io/JLU3J
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JLkcl
<{^_^}> [nixpkgs] @r-ryantm opened pull request #106902 → python37Packages.imagecorruptions: 1.1.1 -> 1.1.2 → https://git.io/JLkcu
<{^_^}> [nixpkgs] @marsam merged pull request #106884 → android-file-transfer: 4.0 -> 4.1 → https://git.io/JLUlg
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JLkcH
<{^_^}> [nixpkgs] @marsam merged pull request #106887 → python37Packages.aiounifi: 25 -> 26 → https://git.io/JLUaM
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JLkCv
<{^_^}> [nixpkgs] @marsam merged pull request #106898 → python37Packages.databricks-connect: 7.1.10 -> 7.3.5 → https://git.io/JLTDz
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JLkC5
<{^_^}> [nixpkgs] @marsam merged pull request #106890 → python37Packages.livereload: 2.6.1 -> 2.6.3 → https://git.io/JLUPr
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JLkW4
faffolter has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @marsam merged pull request #106891 → python37Packages.dependency-injector: 4.5.3 -> 4.5.4 → https://git.io/JLU50
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JLkWF
<{^_^}> [nixpkgs] @marsam merged pull request #106894 → python37Packages.mautrix: 0.8.3 -> 0.8.5 → https://git.io/JLTYU
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JLklc
werner292 has joined #nixos
<{^_^}> [nixpkgs] @marsam merged pull request #106883 → python37Packages.aioprocessing: 1.0.1 -> 1.1.0 → https://git.io/JLUGj
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JLk8u
werner291 has quit [Ping timeout: 260 seconds]
werner292 is now known as werner291
akaWolf has joined #nixos
Darkmatter66 has quit [Ping timeout: 260 seconds]
SomeoneSerge has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @marsam merged pull request #106856 → delly: 0.8.5 -> 0.8.6 → https://git.io/JIhdu
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JLkBs
zupo_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
zupo has joined #nixos
hyper_ch5 has joined #nixos
cosimone has joined #nixos
<viric> niksnut: if I copy a storepath to a binary-cache without signing, then I cannot reupload it easily
<viric> niksnut: (after signing locally)
<{^_^}> [nixpkgs] @Profpatsch closed pull request #74216 → bazel.tests: update the protobuf test to the latest protobuf version → https://git.io/JeP6a
hyper_ch2 has joined #nixos
hyper_ch4 has quit [Ping timeout: 260 seconds]
hyper_ch5 has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @marsam opened pull request #106903 → python38Packages.crate: fix build → https://git.io/JLkzu
thelounge52 has joined #nixos
sangoma has joined #nixos
orivej has joined #nixos
<{^_^}> [nixpkgs] @marsam merged pull request #106878 → python37Packages.aenum: 2.2.4 -> 2.2.6 → https://git.io/JLJHY
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JLk2u
thelounge52 has quit [Ping timeout: 240 seconds]
edef has joined #nixos
chang has joined #nixos
greaka has joined #nixos
clever has joined #nixos
clever has joined #nixos
clever has quit [Changing host]
iH8c0ff33 has quit [Ping timeout: 260 seconds]
iH8c0ff33 has joined #nixos
chang has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
aswanson has joined #nixos
chang has joined #nixos
<niksnut> viric: yeah, binary caches have an assumption of immutability that doesn't play nice with signatures
<{^_^}> [nixpkgs] @ryantm merged pull request #106551 → bumpver: 2020.1107 -> 2020.1108 → https://git.io/JIVLp
<{^_^}> [nixpkgs] @ryantm pushed 2 commits to master: https://git.io/JLk1i
mkaito has joined #nixos
mkaito has joined #nixos
<viric> niksnut: meh. I didn't know that.
<viric> niksnut: I thought nix copy had to check the paths are signed, though
<viric> niksnut: or why it has "--no-check-sigs do not require that paths are signed by trusted keys"
orivej_ has joined #nixos
orivej has quit [Ping timeout: 260 seconds]
<niksnut> viric: no, it depends on the destination store
<niksnut> e.g. LocalStore requires signatures by default, but BinaryCacheStore doesn't
<viric> is there a good reason to not require the signature for binarycache store?
<viric> Because given the immutability thing... whoever wants to skip signature check can already provide the flag
<tomturbo> hello, is it possible to create a symlink to a binary in then nix store in an arbitrary directory when using dockertools?
iH8c0ff33 has quit [Ping timeout: 240 seconds]
ekleog has joined #nixos
meh` has joined #nixos
<{^_^}> [nix] @edolstra merged pull request #4330 → Properly store the outputs of CA derivations − take 2 → https://git.io/JI05L
<{^_^}> [nix] @edolstra pushed 4 commits to master: https://git.io/JLk75
<{^_^}> [nix] @edolstra pushed 0 commits to ca/properly-store-outputs: https://git.io/JLk7d
<viric> niksnut: do you want me to file an Issue to nix requesting the check for signatures when copying to a binarycache?
<thibm> tomturbo: yes, same answer as las time: add a derivation to `contents` which contains the symlink
iH8c0ff33 has joined #nixos
bitmapper has joined #nixos
<{^_^}> [nixpkgs] @stephank opened pull request #106905 → phpPackages.imagick: upgrade to ImageMagick 7 → https://git.io/JLkbm
werner292 has joined #nixos
iH8c0ff33 has quit [Ping timeout: 260 seconds]
<tomturbo> thibm: if I remember correctly, last time I only wanted to write a text file with writeTextDir, no? how would a derivation which contains a symlink look like? sorry, I'm still very unfamiliar with nix
<thibm> tomturbo: (or with runAsRoot/extraCommands maybe)
<esotericn> if I'm using nix-env on a non nixos box; how do I remove something previously installed? just delete the symlink in ~/.nix-profile/bin?
werner291 has quit [Ping timeout: 260 seconds]
werner292 is now known as werner291
<esotericn> looks like there's also some stuff in share/ so probably not
<kfound> esotericn: nix-env --uninstall $pkgname - but make sure you get the pkgname correct or it fails silently
<esotericn> ah brilliant. doh :P
<kfound> the store contents will remain until they gets garbage collected
<thibm> tomturbo: it could look like: `runCommandLocal "linkToHello" { inherit hello; } "mkdir -p $out/some/sub/dir ; ln -s $hello/bin/hello $out/some/sub/dir/link"`
<esotericn> yep, that makes sense; I just wanted to remove pollution in $PATH
<thibm> tomturbo: (runCommandLocal, writeTextDir and others are helpers to do simple tasks. They all are wrappers around mkDerivation)
<esotericn> doesn't matter to have a bit of disk space used :P
<tomturbo> thibm: I've already tried runAsRoot with "ln -s ${pkgs.jdk11}/bin/java bin/java" but it complained about there not being enough space left on the device so I'm assuming I did something wrong. I wasn't aware of runCommandLocal, thanks!
respawn_ has quit [Quit: Leaving]
<kfound> it would be great if it at least warned when the package name wasn't found
<thibm> tomturbo: like as said, runCommand* are wrappers on mkDerivation, so you can do the same with the classic mkDerivation (with more noise).
<thibm> tomturbo: the doc says for extraCommands: "can create additional directories and files.", so runAsRoot probably can't
<kfound> does anyone know if it is possible to add a new NSS module without either using nscd or modifying glibc?
<{^_^}> [nixos-homepage] @github-actions[bot] pushed commit from GitHub Actions to master « Update flake.lock and blogs.xml [ci skip] »: https://git.io/JLkjE
<kfound> the context is that glibc 2.32 moved libnss_nis to a separate codebase; i can build the module but glibc won't find it without something like LD_LIBRARY_PATH
malook has joined #nixos
iH8c0ff33 has joined #nixos
<{^_^}> [nixpkgs] @NeQuissimus pushed 5 commits to master: https://git.io/JLIkK
iH8c0ff33 has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @NeQuissimus pushed 4 commits to release-20.09: https://git.io/JLIId
sangoma has quit [Quit: WeeChat 2.9]
<kfound> found out from a well-informed source: nss modules outside of libc are indeed best handled via nscd
<{^_^}> [nixpkgs] @raboof closed pull request #106847 → nixos-manual: start gradual conversion to markdown → https://git.io/JIpDy
<{^_^}> [nixpkgs] @zimbatm opened pull request #106906 → niv: only build the executable → https://git.io/JLImU
sangoma has joined #nixos
SanchayanMaity has quit [Remote host closed the connection]
SanchayanMaity has joined #nixos
est31 has quit [Remote host closed the connection]
est31 has joined #nixos
iH8c0ff33 has joined #nixos
iH8c0ff33 has quit [Ping timeout: 240 seconds]
iH8c0ff33 has joined #nixos
SanchayanMaity has quit [Ping timeout: 256 seconds]
SanchayanMaity has joined #nixos
ATuin has quit [Ping timeout: 240 seconds]
malook has quit [Quit: malook]
<{^_^}> [nixpkgs] @zimbatm merged pull request #106906 → niv: only build the executable → https://git.io/JLImU
<{^_^}> [nixpkgs] @zimbatm pushed to master « niv: only build the executable (#106906) »: https://git.io/JLIWX
<pinpox> tv: Does korps support flakes? If so, do I have to change anything on the krops side if my config uses flakes?
<tv> pinpox: I'm not using flakes, but I think Mic92 is using krops+flakes, maybe he can point to his config
werner292 has joined #nixos
waleee-cl has joined #nixos
<pinpox> Mic92: are you here by any chance?
<pinpox> oh you were quicker
<pinpox> thanks!
werner291 has quit [Ping timeout: 258 seconds]
werner292 is now known as werner291
cfricke has quit [Quit: WeeChat 3.0]
<pinpox> Your krops.nix is quite a lot more complicated than mine. What does writeCommand do exactly?
<pinpox> I see you write on each machine to /bin/...
<Mic92> pinpox: just executes a command on the remote machine
<pinpox> Mic92: Ok, so I don't need that part to "convert" my krops.nix to flakes?
<lassulus> writeCommand is for writing your own build command. the default writeDeploy is basically a writeCommand which does `nixos-rebuild -I /var/src switch`
<lassulus> or whatever your targetPath is. I guess you need to change your writeDeploy to the writeCommand Mic92 uses.
<pinpox> btw. this is my pre-flakes krops.nix https://github.com/pinpox/nixos/blob/main/krops/krops.nix from where I'm starting
<Mic92> pinpox: if your are at it, please also add it to the krops README :)
<pinpox> Mic92: I will do after I figure everthing out!
<lassulus> pinpox: basically you add the command somewhere in a let and change all your writeDeploy to writeCommand
<lassulus> and inherit the command in there also. hope that makes sense
SanchayanMaity has quit [Quit: SanchayanMaity]
<pinpox> I think I get it. So the only thing that changes is the command that is executed to provision the machine so that it includes the --flake... option
echelon has quit [Remote host closed the connection]
<lassulus> pinpox: https://p.krebsco.de/1aa2fv3
<lassulus> yes
echelon has joined #nixos
<pinpox> lassulus: Thanks, that makes sense to me.
plfn has quit []
<pinpox> I have yet to actually add the flakes part to the machine configurations, atm they are just "plain normal" configs I want to migrate to flakes
sangoma has quit [Ping timeout: 256 seconds]
<lassulus> I have no idea about flakes though :D
zupo has quit [Ping timeout: 260 seconds]
<pinpox> Mic92: Sorry if the question is not strictly nix-related, but how/where can I add that to the readme?
fresheyeball has joined #nixos
<{^_^}> [nixpkgs] @marsam merged pull request #106903 → python38Packages.crate: fix build → https://git.io/JLkzu
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JLIaq
<pinpox> just send a patch via mail?
<lassulus> we have a github fork now: https://github.com/krebs/krops
<fresheyeball> anyone have an example of a nix.conf file with substitutors
<fresheyeball> ?
zupo has joined #nixos
<pinpox> lassulus: oh, ok. I thought the non-github repo was the main one
sangoma has joined #nixos
<Mic92> pinpox: you can also send patches on IRC
<lassulus> it is, we also accept patches via mail
<Mic92> lassulus: I think this needs a contribute section
<lassulus> it does have a communication section
<lassulus> which mentions pull requests
<Mic92> ah
<Mic92> it's all theire
<Mic92> *there
<pinpox> Mic92: sorry, had not reached the end of the readme
<hexa-> /exec -o cd $REPO && git diff --patch HEAD~1
<hexa-> sending patches via IRC in a nutshell
<{^_^}> [nixpkgs] @marsam merged pull request #106902 → python37Packages.imagecorruptions: 1.1.1 -> 1.1.2 → https://git.io/JLkcu
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JLIwP
<pinpox> hexa-: I think my client has not /exec feature, but I get the point
<hexa-> okay, should've git -C $REPO
<hexa-> pinpox: I'm pretty sure that is not what he meant :P
<lassulus> maybe a pastebin in between would be nicer :D
<lassulus> but we can also take inline patches
<lassulus> if you don't get kicked while sending them
shorberg has quit [Quit: Konversation terminated!]
kapil_ has quit [Quit: ZNC 1.7.5 - https://znc.in]
<{^_^}> [nixpkgs] @primeos pushed to master « gammastep: 2.0.5 -> 2.0.6 »: https://git.io/JLIKQ
kapil_ has joined #nixos
vuko has quit [Ping timeout: 260 seconds]
reis_r has joined #nixos
<{^_^}> [nixpkgs] @primeos pushed to master « jekyll: 4.1.1 -> 4.2.0 »: https://git.io/JLIPO
whatisRT has quit [Ping timeout: 260 seconds]
philr has quit [Ping timeout: 260 seconds]
peelz has joined #nixos
whatisRT has joined #nixos
<{^_^}> [nixpkgs] @Mic92 opened pull request #106908 → bintools-wrapper: skip dynamic linker for static binaries → https://git.io/JLIDj
<{^_^}> [nixpkgs] @Lassulus merged pull request #106722 → [20.09] _1password-gui -> 0.8.4 -> 0.9.7 → https://git.io/JI6yC
<{^_^}> [nixpkgs] @Lassulus pushed 17 commits to release-20.09: https://git.io/JLIyL
LnL- is now known as LnL
<{^_^}> [nixpkgs] @roberth merged pull request #106441 → Cassandra passthru tests → https://git.io/JIzi9
<{^_^}> [nixpkgs] @roberth pushed 4 commits to master: https://git.io/JLI96
<{^_^}> [nixpkgs] @petabyteboy opened pull request #106909 → gitaly: add patch to support libgit2 1.1.0 → https://git.io/JLI7f
gustavderdrache has joined #nixos
chaoflow has joined #nixos
red[evilred] has joined #nixos
<red[evilred]> ,search ldapsearch
<red[evilred]> ,locate ldapsearch
hnOsmium0001 has joined #nixos
eoli3n has left #nixos [#nixos]
werner292 has joined #nixos
Im_a_newbie has joined #nixos
terrorjack has joined #nixos
werner291 has quit [Ping timeout: 260 seconds]
werner292 is now known as werner291
Izorkin has quit [Quit: ZNC 1.8.2 - https://znc.in]
<Im_a_newbie> Hi, I have nixos recently installed. Got my nvidia-card working (with prorprietary drivers), but with x-server my fonts are huge. When opening a terminal (alacritty), I have a 80x25 terminal. With my browser (qutebrowser) the top and bottom bar (tabs and commands) are huge as well. Browser content (like this webirc) are normal. Anyone any idea what
<Im_a_newbie> the problem could be and how to change that?
Izorkin has joined #nixos
<simpson> Im_a_newbie: Possibly Xorg is not detecting the proper DPI (dots per inch); you can check /var/log/X.0.log to see whether anything interesting happens during monitor detection, and you can set `services.xserver.dpi = 200;` if you need to set DPI to e.g. 200.
<srhb> Im_a_newbie: You probably want to look at services.xserver.dpi, but I think alacritty has something special for that too, I must have it somewhere in my config, sec..
<simpson> srhb++
<{^_^}> srhb's karma got increased to 140
Im_a_newbie has quit [Remote host closed the connection]
<srhb> Oh, no rusts winit was patched long ago, so it shouldn't be special for alacritty anymore, I misremembered.
<srhb> So services.xserver.dpi should suffice :)
<srhb> (I had to force mine too on nvidia, apparently that driver is crazy.)
Im_a_newbie has joined #nixos
<Im_a_newbie> Thx. That's it. Looks a lot better now.
<srhb> Im_a_newbie: Great :)
werner291 has quit [Ping timeout: 260 seconds]
<Im_a_newbie> I think the problem might be my kvm-switch. With it my monitor often gets recognized as a 7" (maybe 9")-monitor, but in reality it is 24".
<srhb> Well, fwiw, it's broken even on my internal laptop monitor with the nvidia driver...
<srhb> Though that's some weird hybrid setup too, so maybe that affects things.
<Im_a_newbie> Maybe there is a dpi-calculation based on the size of the monitor?
jlotoski-znc has joined #nixos
<srhb> There is, yes.
johnny101 has quit [Ping timeout: 256 seconds]
sangoma has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @orivej-nixos merged pull request #106792 → python2Packages.cryptography: 2.9.2 -> 3.3.1 → https://git.io/JIPst
<{^_^}> [nixpkgs] @orivej-nixos pushed commit from @orivej to master « python2Packages.cryptography: 2.9.2 -> 3.3.1 (#106792) »: https://git.io/JLLJ9
erasmas has joined #nixos
<{^_^}> [nixpkgs] @freezeboy opened pull request #106910 → ssh-ident: change PATH → https://git.io/JLLUr
nhs has quit [Read error: Connection reset by peer]
est31 has quit [Remote host closed the connection]
est31 has joined #nixos
nhs has joined #nixos
est31 has quit [Remote host closed the connection]
est31 has joined #nixos
Im_a_newbie has quit [Remote host closed the connection]
kalbasit has joined #nixos
lordcirth_ has joined #nixos
reis_r has quit [Quit: Leaving]
lordcirth has quit [Ping timeout: 272 seconds]
iH8c0ff33 has quit [Ping timeout: 256 seconds]
noudle has joined #nixos
Izorkin has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @prusnak merged pull request #106808 → qvge: 0.6.1 → 0.6.2 → https://git.io/JIH7C
<{^_^}> [nixpkgs] @prusnak pushed 2 commits to master: https://git.io/JLLIc
<{^_^}> [nixpkgs] @prusnak merged pull request #106809 → saga: 7.8.1 → 7.8.2 → https://git.io/JIQ8k
<{^_^}> [nixpkgs] @prusnak pushed 2 commits to master: https://git.io/JLLIg
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
growpotkin has joined #nixos
Izorkin has joined #nixos
Dagger2 is now known as Dagger
lordcirth__ has joined #nixos
chour has joined #nixos
captn3m0 has quit [Quit: ZNC 1.8.2 - https://znc.in]
pinecamp has joined #nixos
pinecamp has quit [Remote host closed the connection]
lordcirth_ has quit [Ping timeout: 260 seconds]
Izorkin has quit [Client Quit]
chour has quit [Quit: WeeChat 2.9]
Izorkin has joined #nixos
captn3m0 has joined #nixos
Izorkin has quit [Client Quit]
Izorkin has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #106911 → python37Packages.aioesphomeapi: 2.6.3 -> 2.6.4 → https://git.io/JLLmf
omnipotententity has joined #nixos
omnipotententity is now known as Guest25193
werner291 has joined #nixos
vuko has joined #nixos
<tpw_rules> so i'm interested in submitting a PR to update python-lz4 from 2.1.10 to 3.1.1 but 3.0.0 drops python 2 support. should that version be a new package?
kfound has quit [Remote host closed the connection]
<hyper_ch> what's the url again to see where each release is at currently?
tomturbo has quit [Quit: leaving]
<hyper_ch> the new "how old is herokuapp"?
<hyper_ch> thanks :)
<{^_^}> Channel nixos-20.09-small advanced to https://github.com/NixOS/nixpkgs/commit/ec4b0d3c2ad (from 10 hours ago, history: https://channels.nix.gsc.io/nixos-20.09-small)
vuko has quit [Quit: leaving]
vuko has joined #nixos
<{^_^}> [nixpkgs] @doronbehar merged pull request #96854 → mob: init at v0.0.25 → https://git.io/JUqF0
<{^_^}> [nixpkgs] @doronbehar pushed 2 commits to master: https://git.io/JLL3Q
madalu has quit [Remote host closed the connection]
tsmanner has quit [Remote host closed the connection]
synbian has quit [Ping timeout: 246 seconds]
freezeboy has joined #nixos
<LilleCarl> hyper_ch: "how old is herokuapp"?
<LilleCarl> Some kind of meme?
sangoma has joined #nixos
<{^_^}> [nixpkgs] @marsam opened pull request #106912 → ocamlPackages.visitors: 20190711 -> 20200210 → https://git.io/JLLGF
iH8c0ff33 has joined #nixos
madalu has joined #nixos
chloekek has joined #nixos
zupo has joined #nixos
iH8c0ff33 has quit [Ping timeout: 240 seconds]
Guest25193 has quit [Quit: Leaving]
<cransom> LilleCarl: not a meme, http://howoldis.herokuapp.com/ .
iH8c0ff33 has joined #nixos
<{^_^}> [nixpkgs] @gebner merged pull request #106821 → vieb: init at 3.1.0 → https://git.io/JIdEv
<{^_^}> [nixpkgs] @gebner pushed 3 commits to master: https://git.io/JLLcO
thelounge52 has joined #nixos
<pinpox> Mic92: I'm struggeling to figure this out: How do you import relative paths when deploying with krops+flakes? This line failes to find the "common" folder https://github.com/pinpox/nixos/blob/3155a5de05d0fbf6a05b0e16f933fe789f9661d7/machines/kartoffel/configuration.nix#L13
<{^_^}> [nixpkgs] @r-ryantm opened pull request #106914 → python37Packages.setuptools-rust: 0.11.5 -> 0.11.6 → https://git.io/JLLc5
<pinpox> Mic92: I saw in your configs that you import from ./modules, but that's inside the machines folder (e.g. in your eve/configuration.nix), how would I import the files from my ./common folder?
<pinpox> (Also, should I rename it to modules?_
<pinpox> )
freezeboy has quit [Remote host closed the connection]
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
chloekek has left #nixos ["Leaving"]
thelounge52 has quit [Ping timeout: 265 seconds]
lordcirth__ has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @Sebelino opened pull request #106915 → citra: 2020-03-21 -> 2020-12-07 → https://git.io/JLLlL
lordcirth has joined #nixos
zupo has joined #nixos
zupo has quit [Client Quit]
meh` has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @lheckemann pushed commit from @bachp to release-20.09 « unifiStable: 5.14.22 -> 5.14.23 »: https://git.io/JLL4L
konobi has quit [Ping timeout: 260 seconds]
zupo has joined #nixos
<tpw_rules> how does nixpkgs-review determine which packages are updated and need to be built? i see quite a lot of big ones that don't seem related to the change i made and i'd rather not wait for them to build
<{^_^}> [nixpkgs] @NeQuissimus pushed to master « linux: Add 5.10 »: https://git.io/JLLRE
zupo has quit [Client Quit]
<{^_^}> [nixpkgs] @NeQuissimus pushed to master « Linux: Remove 5.8 »: https://git.io/JLLRH
fendor_ is now known as fendor
<esotericn> hm, i'm trying to build a haskell project and it seems as if it's failing because iana-etc isn't present; "no such protocol... tcp"
<{^_^}> [nixpkgs] @TredwellGit opened pull request #106916 → linuxHeaders: 5.9.8 -> 5.10 → https://git.io/JLL0F
zupo has joined #nixos
miscalculated has joined #nixos
<{^_^}> [nixpkgs] @github-actions[bot] pushed 59 commits to staging-next: https://git.io/JLLuz
<{^_^}> [nixpkgs] @github-actions[bot] pushed 60 commits to staging: https://git.io/JLLu2
sss2 has joined #nixos
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/50a44c44c40 (from 3 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
<{^_^}> Channel nixpkgs-20.09-darwin advanced to https://github.com/NixOS/nixpkgs/commit/c3397e610e4 (from 4 hours ago, history: https://channels.nix.gsc.io/nixpkgs-20.09-darwin)
chloekek has joined #nixos
noudle has quit []
rajivr has quit [Quit: Connection closed for inactivity]
endformationage has joined #nixos
cole-h has joined #nixos
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
zupo has joined #nixos
vidbina has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @NeQuissimus pushed 3 commits to master: https://git.io/JLLgd
davidv7_ has joined #nixos
fresheyeball has quit [Quit: WeeChat 2.7.1]
chaoflow has quit [Quit: WeeChat 3.0]
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
davidv7 has quit [Ping timeout: 240 seconds]
domogled has joined #nixos
<fendor> Having troubles with steam and proton on nixos, When launching a game I get an error message "Error creating Direct3D9 object". Until some update ago, this used to work fine, ideas how I can debug this?
zupo has joined #nixos
vidbina has joined #nixos
zupo has quit [Client Quit]
o1lo01ol_ has joined #nixos
<{^_^}> [nixpkgs] @con-f-use opened pull request #106917 → docopts: init at 0.6.3-rc2 → https://git.io/JLLVd
o1lo01ol1o has quit [Ping timeout: 256 seconds]
shorberg has joined #nixos
mallox has quit [Quit: WeeChat 3.0]
mallox has joined #nixos
KarlJoad has joined #nixos
domogled has quit [Quit: domogled]
iH8c0ff33 has quit [Ping timeout: 260 seconds]
mallox has quit [Client Quit]
<{^_^}> [nixpkgs] @kalbasit opened pull request #106918 → python3Packages.pre-commit-hooks: init at 3.3.0 → https://git.io/JLLob
<{^_^}> [nixpkgs] @arcz opened pull request #106919 → echidna: init at 1.6.0 → https://git.io/JLLoN
<Mic92> pinpox: flakes only recognize files that are added to git
<Mic92> i.e. with git add
Darkmatter66 has joined #nixos
madalu has quit [Remote host closed the connection]
<Mic92> pinpox: do ../../common
sangoma has quit [Read error: Connection reset by peer]
madalu has joined #nixos
nDuff has joined #nixos
<{^_^}> [nixpkgs] @pltanton closed pull request #104383 → aws-sam-cli: 1.6.2 -> 1.11.0 → https://git.io/JkgRx
<peelz> if I'm going to submit a PR that's potentially going to cause a good amount of packages to recompile, which branch should I target?
<lukegb> staging
<peelz> alright thanks
meh` has joined #nixos
<peelz> should I always submit prs to staging?
<lukegb> nah
<peelz> alright
berberman has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #106920 → python37Packages.pytest-html: 3.1.0 -> 3.1.1 → https://git.io/JLL6Q
<peelz> my PR (although simple in nature) causes all the kdeApplications derivations to recompile. Should I submit it to staging in this case?
berberman_ has quit [Ping timeout: 264 seconds]
<KarlJoad> How should I go about changing a Makefile for it to work in nix-build. /bin/bash is hard-coded, and right now octave (from octaveFull) is broken (but octave-cli isn't). Right now, I'm just doing in-place changes with `sed`.
<{^_^}> [nixpkgs] @danieldk merged pull request #106914 → python37Packages.setuptools-rust: 0.11.5 -> 0.11.6 → https://git.io/JLLc5
<{^_^}> [nixpkgs] @danieldk pushed 2 commits to master: https://git.io/JLLiR
<{^_^}> [nixpkgs] @siraben opened pull request #106921 → stdenv/platform-notes: convert to markdown → https://git.io/JLLPI
<{^_^}> [nixpkgs] @danieldk opened pull request #106922 → python3Packages.setuptools-rust: add meta.changelog → https://git.io/JLLP8
<tpw_rules> is there a way to figure out why packages are getting recompiled?
<{^_^}> [nixpkgs] @dywedir merged pull request #106683 → pijul: 1.0.0-alpha.17 -> 1.0.0-alpha.21 → https://git.io/JIK65
<{^_^}> [nixpkgs] @dywedir pushed 2 commits to master: https://git.io/JLLXW
zupo has joined #nixos
<halfbit> is there a nice way of printing the dependency tree of a derivation?
<halfbit> I know there's a way to print out the direct dependencies with nix-store -q, was hoping there was a nice way of getting like a tree printout of deps
<halfbit> like cargo tree/npm list
o1lo01ol_ has quit [Remote host closed the connection]
<halfbit> nix-tree?
vidbina has quit [Ping timeout: 260 seconds]
sangoma has joined #nixos
thelounge52 has joined #nixos
<KarlJoad> I am trying to run tests on a program that doesn't have a build phase. I get the log message "no Makefile or custom buildPhase, doing nothing". I've checked, and there is a Makefile, so it's the fact I'm skipping the buildPhase.
<KarlJoad> How can I test with checkPhase, without having a buildPhase?
mthst has joined #nixos
<lordcirth> KarlJoad, perhaps buildPhase = ""; rather than skipping? I dunno
<infinisil> halfbit: nix-store -q --tree <path/to/drv>
thelounge52 has quit [Ping timeout: 240 seconds]
<halfbit> infinisil: ah, thanks!
<halfbit> didn't know about --tree, I should read the --help more
<halfbit> so I found sort of a strange thing... the musl -dev package depends on bash which depends on glibc
chloekek has left #nixos ["Leaving"]
<halfbit> which means my dockerTools.buildImage using musl, managed to include bash and glibc blowing up the size
<halfbit> not sure the best way to resolve that, I don't think most things would need the musl-dev package in the end
<infinisil> halfbit: Oh the derivation dependency tree isn't the same as runtime dependencies
<sphalerite> KarlJoad: dontBuild = true;
<infinisil> halfbit: You need to run `nix-store -q --tree` on the actual built /nix/store paths to know what runtime deps they have
<bqv> julm: would you be interested in implementing #101071 as a flake, outside of nixpkgs?
<{^_^}> https://github.com/NixOS/nixpkgs/pull/101071 (by ju1m, 8 weeks ago, open): apparmor: try again to fix and improve
<bqv> might be more realistic
<KarlJoad> lordcirth: That worked! Left a comment in the default.nix about that. Now to figure out why the tests are fail
<bqv> julm: there's no module overlay system, but you could leverage disabledModules
<KarlJoad> sphalerite: When dontBuild = true, I get that error.
<halfbit> how do I have the gcc-debug dependency?
<halfbit> is that because I need to seperate debug symbols or something? its just bogus atm that I get glibc in an otherwise musl built set of stuff for a docker
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<lordcirth> halfbit, are you using 'stdenv' anywhere?
fendor has quit [Remote host closed the connection]
<lordcirth> IIRC stdenv has gcc, so you would need to replace stdenv with a musl one
fendor has joined #nixos
<bqv> also i have so many substituters that cachix is 429ing me on a single system build
zupo has joined #nixos
<pinpox> Mic92: That gives me a different error: access to path '/nix/common/user-profiles/pinpox.nix' is forbidden in restricted mode
<pinpox> It seems I am not allowed to access the files
<halfbit> I'm using stdenv everywhere to build things
<halfbit> stdenv.mkDerivation
<{^_^}> [nixpkgs] @Ericson2314 merged pull request #106908 → bintools-wrapper: skip dynamic linker for static binaries → https://git.io/JLIDj
Morfio has quit [Quit: Leaving]
<{^_^}> [nixpkgs] @Ericson2314 pushed 2 commits to staging: https://git.io/JLLSu
<halfbit> however... I do have crossSystem = "x86_64-unknown-linux-musl" in my docker.nix
<pinpox> Mic92: /var/src/common/user-profiles/pinpox.nix is present on the system
eoli3n has joined #nixos
chloekek has joined #nixos
<{^_^}> [nixpkgs] @LouisTakePILLz opened pull request #106923 → kdeApplications: split derivation name into pname and version attributes → https://git.io/JLL9l
vika_nezrimaya has joined #nixos
<vika_nezrimaya> Does anyone have a Nix function that does something like ({ a = [ b c d ]; e = [f]; } -> { b = [a]; c = [a]; d = [a]; f = [e]; })? My brain for some reason doesn't work properly today and I'm too lazy to list a thousand MIME types in my home-manager config
nsrh^ has quit []
<{^_^}> [nixpkgs] @lukegb opened pull request #106924 → factorio-experimental, factorio-headless-experimental: 1.1.5 -> 1.1.6 → https://git.io/JLLHN
caef^ has joined #nixos
fendor has quit [Remote host closed the connection]
<bqv> vika_nezrimaya: you do remember nix isn't a typed language :p
<bqv> not well typed
<bqv> anyway
<vika_nezrimaya> bqv: my brain is empty and I need to churn out like 30 mime types
<vika_nezrimaya> because I finally got to configuring them after they broke
<vika_nezrimaya> and I need to list all the video containers, all the audio formats, all picture formats I have
<vika_nezrimaya> + lots of source code text/* formats
<{^_^}> [nixpkgs] @Mic92 opened pull request #106925 → tests.cc-wrapper: disable static compilation macOS → https://git.io/JLLQy
<vika_nezrimaya> and AFAIK mimeapps.list doesn't use wildcards
<bqv> the closest thing i can concieve of is that spooky systems transform i did in lisp-overlay
<bqv> it's not ideal
<bqv> take your attrs, turn them into a list of pairs, frobnicate the pairs, turn them back into attrs
<vika_nezrimaya> frobni...what?
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
thelounge52 has joined #nixos
philipcristiano has quit [Read error: Connection reset by peer]
nz__ has quit [Read error: Connection reset by peer]
cvlad- has quit [Ping timeout: 246 seconds]
wpcarro_ has quit [Ping timeout: 260 seconds]
<lordcirth> vika_nezrimaya, a vague term, like "thingy", but a verb.
<chloekek> frobnicate is the verb equivalent of foobar
<simpson> vika_nezrimaya: Lucky 10000. Frobenius was a mathematician. He worked on permutations; he thought about ways to rearrange things.
etrepum has quit [Read error: Connection reset by peer]
alanz has quit [Ping timeout: 258 seconds]
aristid has quit [Ping timeout: 258 seconds]
sorear has quit [Read error: Connection reset by peer]
vdemeester has quit [Read error: Connection reset by peer]
joshmeredith has quit [Read error: Connection reset by peer]
jared-w has quit [Read error: Connection reset by peer]
lally has quit [Read error: Connection reset by peer]
ctp has quit [Read error: Connection reset by peer]
<simpson> A "Frobenius spider" is an operation that takes in many different things, rearranges them, and returns many different things.
mitsuhiko has quit [Read error: Connection reset by peer]
etrepum has joined #nixos
r0bby has quit [Read error: Connection reset by peer]
davetapley has quit [Read error: Connection reset by peer]
s1341 has quit [Read error: Connection reset by peer]
SrPx has quit [Read error: Connection reset by peer]
vdemeester has joined #nixos
aristid has joined #nixos
joshmeredith has joined #nixos
jared-w has joined #nixos
alanz has joined #nixos
lally has joined #nixos
nz__ has joined #nixos
mitsuhiko has joined #nixos
ctp has joined #nixos
wpcarro_ has joined #nixos
sorear has joined #nixos
<vika_nezrimaya> anyway it's an algorithm that shuffles stuff to make different stuff out of stuff
davetapley has joined #nixos
s1341 has joined #nixos
philipcristiano has joined #nixos
o1lo01ol1o has joined #nixos
<vika_nezrimaya> got it
SrPx has joined #nixos
r0bby has joined #nixos
cvlad- has joined #nixos
etrepum has quit [Ping timeout: 256 seconds]
o1lo01ol1o has quit [Ping timeout: 240 seconds]
sangoma has quit [Quit: WeeChat 2.9]
thelounge52 has quit [Ping timeout: 264 seconds]
costrouc has quit [Quit: costrouc]
zupo has joined #nixos
programmarchy has joined #nixos
vidbina has joined #nixos
<bqv> lol, yes
<{^_^}> Channel nixos-20.09-small advanced to https://github.com/NixOS/nixpkgs/commit/c3397e610e4 (from 6 hours ago, history: https://channels.nix.gsc.io/nixos-20.09-small)
fendor has joined #nixos
ris has joined #nixos
o1lo01ol1o has joined #nixos
LilleCarl has quit [Quit: WeeChat 2.9]
nature has joined #nixos
etrepum has joined #nixos
<{^_^}> Channel nixpkgs-20.09-darwin advanced to https://github.com/NixOS/nixpkgs/commit/7362dab2c9b (from 3 hours ago, history: https://channels.nix.gsc.io/nixpkgs-20.09-darwin)
<nature> Anybody managed to build one of the latest neovim nightly release ?
vidbina has quit [Ping timeout: 264 seconds]
LilleCarl has joined #nixos
o1lo01ol1o has quit [Ping timeout: 256 seconds]
red[evilred] has quit [Quit: Idle timeout reached: 10800s]
<nature> cstrahan: Hi, are you around ?
rprije has joined #nixos
<KarlJoad> Is there an option that can be passed to the `:s` command in `nix repl` to make the sub-shell pure, like we can do with `nix-shell --pure`?
<{^_^}> [nixpkgs] @vbgl merged pull request #106912 → ocamlPackages.visitors: 20190711 -> 20200210 → https://git.io/JLLGF
<{^_^}> [nixpkgs] @vbgl pushed commit from @marsam to master « ocamlPackages.visitors: 20190711 -> 20200210 »: https://git.io/JLLA7
fuiltilt has joined #nixos
jb55 has joined #nixos
ashkitten has quit [Quit: WeeChat 3.0]
thelounge52 has joined #nixos
ashkitten has joined #nixos
o1lo01ol1o has joined #nixos
KarlJoad has quit [Ping timeout: 272 seconds]
thelounge52 has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @danieldk merged pull request #106922 → python3Packages.setuptools-rust: add meta.changelog → https://git.io/JLLP8
<{^_^}> [nixpkgs] @danieldk pushed 2 commits to master: https://git.io/JLLhH
<nature> are there any guides to migrate a legacy nixos config to flakes ?
programmarchy has quit [Remote host closed the connection]
tomaw has quit [Ping timeout: 606 seconds]
tomaw_ has joined #nixos
tomaw_ is now known as tomaw
<{^_^}> [nixpkgs] @andir pushed 2 commits to master: https://git.io/JLLjd
veleiro has joined #nixos
KarlJoad has joined #nixos
<KarlJoad> ,locate makeinfo
<halfbit> can I tell nix to strip all rather than strip debug symbols only (strip -s rather than strip -S)
<{^_^}> Found in packages: texinfo, texinfo4, texinfo5, texinfo6_5, texinfoInteractive
<{^_^}> [nixpkgs] @lheckemann merged pull request #106073 → nixos/tinc: rfc42 and tests → https://git.io/JICp2
<{^_^}> [nixpkgs] @lheckemann pushed 3 commits to master: https://git.io/JLte0
iH8c0ff33 has joined #nixos
leotaku has joined #nixos
leotaku_ has quit [Ping timeout: 260 seconds]
<simpson> halfbit: https://nixos.org/manual/nixpkgs/stable/#ssec-fixup-phase IIUC you can change stripDebugFlags.
<bqv> julm: to be honest, if you don't, i might.
euandreh has quit [Remote host closed the connection]
<julm> bqv: it got merged once, don't you think it has good chance to be remerged again now?
orivej_ has quit [Ping timeout: 240 seconds]
<bqv> julm: do you want the kind answer or the honest answer?
euandreh has joined #nixos
<bqv> because remember the last time it was only merged because i made enough of a fuss that someone took bloody sympathy
iH8c0ff33 has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @thornycrackers opened pull request #106926 → py3status: add file as runtime dependancy → https://git.io/JLtvc
<julm> yes, and you're pushing again so it could happen again i guess
<bqv> if you'd like to do the honours, say now, otherwise I'm just gonna take the diff and turn it into a self sufficient flake so i can stop caring about nixpkgs
<julm> what are the benefits of making it a flake?
<bqv> roughly the same benefits of it being a standalone repository with a default.nix, unless you use flakes
<bqv> but it would also mean you could do a lot of creative and useful apparmor things without being behest to the merge cycle of nixpkgs
<{^_^}> [nixpkgs] @0x4A6F opened pull request #106927 → dasel: 1.8.0 -> 1.9.0 → https://git.io/JLtff
<bqv> and given apparently nobody besides us actually even cares about it, that seems more sensible
<julm> for me the main problem is the mass rebuild right now, and that is best solved with a merge imho
<bqv> none of your changes formally require a mass rebuild, do they. it's just because you replace pkgs.apparmor
<bqv> in a standalone repo, that won't be the case, hence there is no mass rebuild
konobi has joined #nixos
<julm> well, maybe we should explore the flake you propose but still continue to maintain that PR and talk about it more, let it be known it's here and ready
<bqv> i'm offering you to make the flake because it's entirely your work, and i'm sure you have further plans, but at this point whether it's you or me that makes it, i'm done caring about that PR
<julm> well i have no further plan so far, nor trouble if you make such flake
orivej has joined #nixos
thelounge52 has joined #nixos
<LilleCarl> Is it possible to install the nixos tools from Nix? I've booted into a rescue debian system on Hetzner
<{^_^}> [nixpkgs] @andir pushed 2 commits to master: https://git.io/JLtJQ
<LilleCarl> Disks i wanna install on are unused, system is running from NFS
<{^_^}> [nixpkgs] @andir merged pull request #106881 → gopass: fix impurity which breaks gopass after 'nix-store --gc' → https://git.io/JLUId
<bqv> julm: github.com/bqv/apparmor-nix then, in a while
thc202 has quit [Quit: thc202]
<nature> Are flakes the future of nix ?
<LilleCarl> Nvm, found the manual for installing from another dist
madalu has quit [Ping timeout: 240 seconds]
madalu has joined #nixos
etalecohomology has joined #nixos
<julm> nature: seems so, at least they're the present for me because they help and ensure more reproducibility for everything : packages, nixosConfigurations, apps, devShell
<hexagoxel> in a clean checkout of the nix repository, I tried bootstrap, configure, then `make man`, which (after some dependency fixing) gives me "nlohmann/json_fwd.hpp: No such file or directory"
<hexagoxel> how to fix?
<hexagoxel> "do a full `make default`" ? :D
thelounge52 has quit [Ping timeout: 260 seconds]
<bqv> nature: and as mentioned above, they would prevent the constant uphill merge battle that i seem to encounter with every PR i touch
<bqv> huh, github actually changed the default branch name for new repos, i missed that.
<nature> it's actually pretty neat, currently reading the rfc for it. Reminds me a little bit of the nim package manager nimble, but done better :D
<nature> bqv: This also mean nixpkgs wouldn't be at the center of the package distribution in nixos anymore ?
<{^_^}> [nixpkgs] @wilsonehusin opened pull request #106928 → Sonobuoy 0.19.0 -> 0.20.0 → https://git.io/JLtID
ixxie has joined #nixos
<bqv> unlikely. nixpkgs is huge and has most things. at worst it'd give the people that care about nixpkgs more room to be happy while also relieving the suffering that contributing currently is
<bqv> i had a PR almost a year ago now, to add a guix module. it got stuck, i got pissed, i turned it into a flake instead. now people are actually using it and someone's taken it off my hands, and progress and development can actually happen without waiting on someone to deign it ok for the code to be merged
<nature> nice!
<bqv> and i reckon as this keeps happening, we should just churn out more flakes, because it will result in either better merging policy, or less things to merge
<bqv> both of which are a solution
<hexagoxel> in a pure nix shell I get .. different errors :)
<nature> Maybe coming up with a pseudo "official" list of nix packages ?
mthst has quit [Quit: Leaving]
<{^_^}> [nixpkgs] @lheckemann merged pull request #102407 → superTuxKart: 1.1 -> 1.2 → https://git.io/JT7jZ
<{^_^}> [nixpkgs] @lheckemann pushed 2 commits to master: https://git.io/JLtL5
o1lo01ol1o has quit [Remote host closed the connection]
<halfbit> simpson: thanks!
<ixxie> I'm developing a webapp with PostgREST/PostgreSQL and Sapper/Svelte; I setup a server with nixops and now I am wondering what would be a clean way to develop and deploy this setup
lordcirth has quit [Remote host closed the connection]
<ixxie> I would like to avoid containers if possible
o1lo01ol1o has joined #nixos
<ixxie> I'm thinking systemd services, but that seems weird for development side of things
lordcirth has joined #nixos
<nature> ixxie: I don't have an answer, but I am curious why you would want to avoid containers
<chloekek> ixxie: May also be worth thinking about getting it working in CI, right from the start
o1lo01ol1o has quit [Ping timeout: 256 seconds]
<chloekek> I usually end up maintaining both systemd unit files (for production) and a Procfile (for development and automated tests, to run using nixpkgs.hivemind). Use them for all the services, including postgres, not installing them globally on dev machine.
<chloekek> Haven’t found a satisfying solution offered by stock NixOS for this though.
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<chloekek> Some services require a bunch of configuration to run them as non-root and with a non-default state/logs directory. Takes a few hours to set up but once you’ve done it, it makes onboarding, CI, and integration testing completely trivial. And unlike containers, you don’t suffer from the problems caused by containers.
<chloekek> No telling all maintainers “you have to copy this file to /etc” nonsense every time the infrastructure changes.
philr has joined #nixos
nature has quit [Ping timeout: 260 seconds]
nature has joined #nixos
fendor has quit [Read error: Connection reset by peer]
<simpson> Sure. The problematic service mentioned is Pg, whose state is somewhat persistent.
<ixxie> main issue with containers: builds are slow, caching of builds isn't very granular so results in large rebuilds for minor changes, and pushing large image files over the network between build machines, deployment machines and registries is slow and inefficient
hplar has quit [Ping timeout: 260 seconds]
<simpson> I could imagine a hybrid solution where Pg is in a container and everybody else is Nix-managed, but I haven't seen a ready-made solution like that.
fendor has joined #nixos
<chloekek> A container solution that just creates a user namespace mounts a Nix closure and runs a systemd service would be a blessing. No network isolation, images, or stateful daemon.
fuzzypixelz has joined #nixos
<ixxie> simpson: I'm currently using a hosted pg solution but I may just run it with a NixOS module in the future
<ixxie> at the moment I am just concerned with running the PostgREST binary and an `npm run` command in a way which supports sane logging and reasonable development workflow
hplar has joined #nixos
<ixxie> I was thinking of making two systemd services for them and then a script that opens a tmux monitoring panel that funnels their journalctl feeds
zupo has joined #nixos
grumble has quit [Quit: Well, would you look at the time. I've almost missed my ambiguous, non-existent appointment that I have scheduled just when I start to lose interest in my current conversation.]
nomisiv[m] has joined #nixos
<nature> Any examples of configuration.nix ported to flakes ?
etalecohomology has quit [Quit: leaving]
fuzzypixelz_ has joined #nixos
fuzzypixelz has quit [Ping timeout: 256 seconds]
fuzzypixelz_ is now known as fuzzypixelz
euandreh has quit [Remote host closed the connection]
mounty has joined #nixos
<pinpox> lassulus: can you help me out? How do you import relative paths when deploying with krops+flakes? This line failes to find the "common" folder https://github.com/pinpox/nixos/blob/3155a5de05d0fbf6a05b0e16f933fe789f9661d7/machines/kartoffel/configuration.nix#L13
thelounge52 has joined #nixos
<lassulus> how did you define common in the krops.nix?
meh` has quit [Ping timeout: 260 seconds]
grumble has joined #nixos
<lassulus> ah, try <common/user-profiles/pinpox.nix>
<lassulus> common will be in your NIX_PATH, so this should work
astrofog has joined #nixos
<lassulus> I guess ../../common/user-profiles/pinpox.nix should also work
euandreh has joined #nixos
<pinpox> lassulus: cannot look up '<common/user-profiles/pinpox.nix>' in pure evaluation mode (use '--impure' to override)
<lassulus> ah, flakes
<pinpox> lassulus: it seems "< ... >" is not allowed
<{^_^}> Channel nixos-20.09-small advanced to https://github.com/NixOS/nixpkgs/commit/7362dab2c9b (from 5 hours ago, history: https://channels.nix.gsc.io/nixos-20.09-small)
<pinpox> I can't figure out how to make it work, this should be possible right?
<pinpox> lassulus: with ../../common I get a different error: error: --- RestrictedPathError --- nix
<pinpox> access to path '/nix/common/user-profiles/pinpox.nix' is forbidden in restricted mode
<lassulus> all those restrictions :D
<pinpox> Any nix flake h4xors around here?
<lassulus> not really sure, haven't tried out these new features
<pinpox> damn, seems like such a simple thing
Hash is now known as THC
<lassulus> ah, it needs to be in the same git repo
<pinpox> it is
<lassulus> but the configuration.nix is outside of it?
<pinpox> no
thelounge52 has quit [Ping timeout: 265 seconds]
ixxie has quit [Remote host closed the connection]
nomisiv[m] is now known as NomisIV[m]
<{^_^}> Channel nixpkgs-unstable advanced to https://github.com/NixOS/nixpkgs/commit/8006772a054 (from 3 days ago, history: https://channels.nix.gsc.io/nixpkgs-unstable)
KarlJoad` has joined #nixos
<pinpox> lassulus: it is outside of the flake.nix though
KarlJoad has quit [Ping timeout: 260 seconds]
malook has joined #nixos
malook has quit [Client Quit]
<lassulus> hmm, you could trying populating the whole git repo instead of the common subfolder. maybe then the relative paths will work better. nixos-config.file should also be nixos-config.symlink then
fuzzypixelz has quit [Remote host closed the connection]
fuzzypixelz has joined #nixos
KarlJoad` has quit [Ping timeout: 256 seconds]
NeoCron has quit [Remote host closed the connection]
<veleiro> how can i tell what is going on with a 'nixos-rebuild switch'
<veleiro> if it seems to get stuck on "starting the following units"
<pinpox> lassulus: it seems to work, if i put the common folder insede the folder with the flake.nix
THC is now known as EnchanterTim
<pinpox> but that is not a very good organisation
<pinpox> I'll try the whole repo like you said
eoli3n has quit [Remote host closed the connection]
fuzzypixelz has quit [Client Quit]
orivej has quit [Ping timeout: 256 seconds]
o1lo01ol1o has joined #nixos
o1lo01ol1o has quit [Ping timeout: 240 seconds]
ddellacosta has joined #nixos
Rusty1 has joined #nixos
kenran has quit [Remote host closed the connection]
<veleiro> or "setting up /tmp files"
<veleiro> is there a more verbose nixos-rebuild?
orivej has joined #nixos
KarlJoad has joined #nixos
<KarlJoad> What's the best way to work with a /bin/bash hard-code in a Makefile? I'm using `sed` to replace that with /usr/bin/env bash. Is there a better way?
veleiro has quit [Remote host closed the connection]
<aminechikhaoui> Anyone had redshift service failing to geoclue returning a 403 ?
astrofog has quit [Quit: Quite]
* aminechikhaoui eyes are already hurting
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
dycan has joined #nixos
thelounge52 has joined #nixos
<{^_^}> [nixpkgs] @matthewbauer merged pull request #106761 → cifs-utils: don't check for AC_FUNC_MALLOC when cross compiling → https://git.io/JIiFq
<{^_^}> [nixpkgs] @matthewbauer pushed 2 commits to master: https://git.io/JLt8t
<{^_^}> [nixpkgs] @matthewbauer merged pull request #106763 → nfs-utils: pass native rpcsvc-proto to configureFlag → https://git.io/JIiF5
<{^_^}> [nixpkgs] @matthewbauer pushed 2 commits to master: https://git.io/JLt8Y
aswanson has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @wucke13 opened pull request #106929 → Flightgear → https://git.io/JLt81
<pinpox> colemickens: you here?
<colemickens> pinpox: yep
<pinpox> You helped me the other day with flakes right?
<pinpox> (not sure about the nick anymore)
thelounge52 has quit [Ping timeout: 240 seconds]
<pinpox> can you tell me how to import relative files with flakes?
jb55 has quit [Ping timeout: 240 seconds]
thomas-matrix[m] has joined #nixos
civodul has quit [Quit: ERC (IRC client for Emacs 27.1)]
fendor has quit [Read error: Connection reset by peer]
nf has quit [Quit: Fairfarren.]
nf has joined #nixos
Darkmatter66 has quit [Ping timeout: 256 seconds]
chang has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
KarlJoad` has joined #nixos
KarlJoad has quit [Ping timeout: 256 seconds]
KarlJoad` has quit [Ping timeout: 246 seconds]
aswanson has joined #nixos
SomeoneSerge has joined #nixos
mkaito has quit [Quit: WeeChat 2.9]
<vk3wtf> i have a pull request that's stalled for a few months, is anybody available to review it and push it along?
<eacameron> Where can I learn more about how cmake is handled by stdenv? My test suite isn't linking against the library cmake built and I'm trying to find out why.
ddellacosta has quit [Ping timeout: 256 seconds]
<alienpirate5> Why is my PHP-FPM segfaulting with a null pointer dereference? https://hastebin.com/usiyavahew.log
o1lo01ol1o has joined #nixos
<{^_^}> [nixpkgs] @samb96 opened pull request #106930 → tor-browser-bundle-bin: 10.0.5 -> 10.0.6 → https://git.io/JLtuW
oxalica1 has joined #nixos
oxalica has quit [Ping timeout: 265 seconds]
oxalica1 is now known as oxalica
<{^_^}> [nixpkgs] @jlesquembre opened pull request #106931 → vimPlugins.galaxyline-nvim: init at 2020-12-14 → https://git.io/JLtuF
o1lo01ol1o has quit [Ping timeout: 260 seconds]
werner291 has quit [Remote host closed the connection]
<pinpox> Damn, I think I got it.
dingenskirchen has quit [Quit: ZNC 1.8.1 - https://znc.in]
dingenskirchen has joined #nixos
<pinpox> nope.
<colemickens> pinpox: I'm sorry, feel free to ping me more if I trail off
<colemickens> pinpox: make sure that you have them added to the git repo. If they're not staged or added already, nix won't see them.
rajivr has joined #nixos
<{^_^}> [nixpkgs] @orivej-nixos pushed commit from @orivej to master « bareboxTools: fix eval »: https://git.io/JLtg1
<pinpox> colemickens: they are
__monty__ has quit [Quit: leaving]
<colemickens> pinpox: if you do ` foobarAttr = import ./foobar.nix;` that would make foobarAttr be the nix expression inside foobar.nix
nature has quit [Ping timeout: 260 seconds]
<pinpox> colemickens: I don't understand, where would I use that?
<colemickens> wherever you're trying to import relative files?
<colemickens> pinpox: do you mean you want an input to be a filepath?
<{^_^}> [nixpkgs] @onsails opened pull request #106932 → add vim-lightline-coc → https://git.io/JLt2i
<{^_^}> [nixpkgs] @MetaDark opened pull request #106933 → pythonPackages.debugpy: 1.2.0 -> 1.2.1 → https://git.io/JLt2S
<pinpox> I just deleted /var/src to start from scratch, I'll send you the error when it's done cloneing
tokudan has quit [Remote host closed the connection]
erasmas has quit [Quit: leaving]
tokudan has joined #nixos
<pinpox> colemickens: Oh i think I got it to build
<pinpox> seems it was not copying some files and using old ones
<colemickens> it's a bit confusing because I see stuff in here like https://github.com/pinpox/nixos/blob/flakes/krops.nix#L40
<colemickens> but you're not actually using flakes.
<colemickens> maybe that's WIP and I should ignore, but thought i'd mention it
<pinpox> colemickens: the flake is in machines/kartoffel/flake.nix
<pinpox> I'm in the process of migrating to flakes
<colemickens> oh! interesting. okay
<pinpox> colemickens: I thought I have to create a flake.nix in each of my ./machines subfolders?