worldofpeace_ changed the topic of #nixos to: NixOS stable: 20.03 ✨ https://discourse.nixos.org/t/nixos-20-03-release/6785 || 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-info
<Ankhers> Would someone please remind me how I can get openssl dev headers in a shell.nix?
<Ankhers> pkgs.openssl.dev does not seem to be doing the trick.
<{^_^}> [nixpkgs] @veprbl merged pull request #101016 → texlive: minor cleanups → https://git.io/JTl6E
<{^_^}> [nixpkgs] @veprbl pushed 4 commits to master: https://git.io/JT2va
<{^_^}> [nixpkgs] @SuperSandro2000 opened pull request #101430 → surf: 2.0 -> 2019-02-08-unstable → https://git.io/JT2vV
<gchristensen> you might als oneed to add pkgconfig Ankhers
<Ankhers> gchristensen: That did the trick. Thanks!
<{^_^}> [nixpkgs] @djanatyn opened pull request #101431 → rtss: init at 0.6.1 → https://git.io/JT2vy
efter has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @mweinelt merged pull request #101338 → cantata: 2.4.1 -> 2.4.2 → https://git.io/JTzDP
<{^_^}> [nixpkgs] @mweinelt pushed 2 commits to master: https://git.io/JT2fI
andresilva has quit [Remote host closed the connection]
<supersandro2000> How can I built webkitgtk? I have a 32 core, 16GB machine and it gets OOM killed...
alp has quit [Ping timeout: 272 seconds]
<hexa-> supersandro2000: memory per core ratio is off
Jackneill has quit [Ping timeout: 256 seconds]
<andi-> supersandro2000: how large are the caches per core?
<supersandro2000> so setting nix.cores lower should work?
<andi-> likely
<andi-> or adding more RAM
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage-packages.nix: automatic Haskell package set update »: https://git.io/JT2fb
<supersandro2000> 2nd is probably not happening today
<andi-> supersandro2000: what model of CPU do you have there?
<supersandro2000> some older E5
Acou_Bass has quit [Ping timeout: 256 seconds]
<hexa-> E5s are Dual CPU systems, how does the machine only have 16GB RAM?
<supersandro2000> The machine itself has more but the container I am using does not
<hexa-> fair
jabster28 has quit [Ping timeout: 260 seconds]
Jackneill has joined #nixos
aleph- has quit [Quit: WeeChat info:version]
Acou_Bass has joined #nixos
<{^_^}> [nixpkgs] @nh2 opened pull request #101432 → pdal: 2.1.0 -> 2.2.0 → https://git.io/JT2Jb
stree has quit [Quit: Caught exception]
stree has joined #nixos
<{^_^}> [nixpkgs] @veprbl opened pull request #101433 → pythonPackages.pyobjc: remove sauyon from maintainers → https://git.io/JT2Um
aleph- has joined #nixos
cantstanya has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @andir opened pull request #101434 → firefox: disable LTO by default due to segfaults with wayland → https://git.io/JT2UB
cantstanya has joined #nixos
kirc has quit [Quit: kirc]
sss has joined #nixos
<pumpy> can configuration.nix import a glob? i want to have a /etc/nixos/conf.d/ type dir that any file i drop into it that ends with .nix will be imported
<pumpy> or even any file in the dir no matter what the extension
<hexa-> I don't believe so
<clever> pumpy: builtins.readDir returns a list of files
ris has quit [Ping timeout: 264 seconds]
<pumpy> clever so i'd do imports = [ builtins.readDir("/etc/nixos/conf.d") ];?
<clever> pumpy: that will fail in 2 ways
ericsagnes has quit [Ping timeout: 246 seconds]
<pumpy> how can i do what i wanna do then?
<clever> 1: the () are in the wrong place, that list contains a function and a string
<clever> 2: that returns a list of strings, for just the names, not paths, you need to use map to append each to a path
<clever> 3: the arg to readDir cant be quoted either
<hexa-> > (builtins.readDir "/etc/nixos")
<{^_^}> access to path '/etc/nixos' is forbidden in restricted mode
<hexa-> oh right, it expects a path
<clever> imports = [ (map (x: /etc/nixos + "${x}") (builtins.readDir /etc/nixos)) ];
ReqGame has quit [Quit: WeeChat 2.7.1]
<{^_^}> [nixpkgs] @nh2 opened pull request #101435 → [20.09] pitivi: Fix .svg loading at startup, see #56943 #89691 → https://git.io/JT2Tv
meh` has quit [Ping timeout: 260 seconds]
<pumpy> yikes
rsynnest has joined #nixos
rsynnest has quit [Client Quit]
<{^_^}> [nixpkgs] @ryantm merged pull request #101299 → argo: 2.11.5 -> 2.11.6 → https://git.io/JTux5
<{^_^}> [nixpkgs] @ryantm pushed 2 commits to master: https://git.io/JT2TY
rsynnest_ has joined #nixos
jbox has joined #nixos
amesgen[m] has joined #nixos
<pumpy> clever i tried `imports = [ ./hardware-configuration.nix (map (x: /etc/nixos + "${x}") (builtins.readDir /etc/nixos)) ];` but it error "value is a set while a list was expected"
<pumpy> well /etc/nixos/conf.d actually
<clever> pumpy: oh yeah, and builtins.readDir doesnt return a list of strings
<clever> pumpy: pop open `nix repl` and then try to eval `:p builtins.readDir /etc/nixos`
<pumpy> clever did that on /etc/nixos/conf.d it returned { "home-manager.nix" = "regular"; }
<clever> yeah, so its a set where the keys are filenames, and the values are the type
<pumpy> can we take a list from it somehow?
<{^_^}> [nixpkgs] @veprbl merged pull request #101433 → pythonPackages.pyobjc: remove sauyon from maintainers → https://git.io/JT2Um
<{^_^}> [nixpkgs] @veprbl pushed to master « pythonPackages.pyobjc: remove sauyon from maintainers »: https://git.io/JT2TP
<clever> now try :p builtins.attrNames (builtins.readDir /etc/nixos)
<pumpy> there we go!
ericsagnes has joined #nixos
<pumpy> clever can't coerce a list to a string from `imports = [ ./hardware.nix (map (x: /etc/nixos/conf.d + "${x}") (builtins.attrNames(builtins.readDir /etc/nixos/conf.d))) ];`
<pumpy> ^ error
<clever> pumpy: map returns a list, you then put it inside imports, a list
<clever> pumpy: so that is [ ./hardware.nix [ ./cond.f/home-manager.nix ] ];
<clever> you want ++ to concat 2 lists together
<{^_^}> [nixpkgs] @IvarWithoutBones opened pull request #101436 → pythonPackages.imdbpy: init at 2020.9.25 → https://git.io/JT2kW
<pumpy> clever `imports = [ ./hardware.nix ] ++ (map (x: /etc/nixos/conf.d + "${x}") (builtins.attrNames(builtins.readDir /etc/nixos/conf.d)));` ?
<pumpy> or does that need an outer () for it to eval?
<clever> yeah
<pumpy> ah
<clever> the outer () is only for lists
<clever> because they dont use , and eat your function args
<pumpy> clever actually had to add a / to the template like: `imports = [ ./hardware.nix ] ++ (map (x: /etc/nixos/conf.d + "/${x}") (builtins.attrNames(builtins.readDir /etc/nixos/conf.d)));`
<clever> yeah, that / needs to be there
<clever> forgot it in my example
h0m1 has quit [Ping timeout: 246 seconds]
h0m1 has joined #nixos
dbmikus has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @mweinelt merged pull request #101436 → pythonPackages.imdbpy: init at 2020.9.25 → https://git.io/JT2kW
<{^_^}> [nixpkgs] @mweinelt pushed 2 commits to master: https://git.io/JT2I9
rajivr has joined #nixos
jdnixx has joined #nixos
<{^_^}> [nixpkgs] @aanderse merged pull request #101397 → nixos/ssmtp: minor typo fix → https://git.io/JTgVU
<{^_^}> [nixpkgs] @aanderse pushed 2 commits to master: https://git.io/JT2LO
<{^_^}> [nixpkgs] @mweinelt merged pull request #101435 → [20.09] pitivi: Fix .svg loading at startup, see #56943 #89691 → https://git.io/JT2Tv
<{^_^}> [nixpkgs] @mweinelt pushed 2 commits to release-20.09: https://git.io/JT2Ls
<{^_^}> [nixpkgs] @andir merged pull request #101434 → firefox: disable LTO by default due to segfaults with wayland → https://git.io/JT2UB
<{^_^}> [nixpkgs] @andir pushed 2 commits to master: https://git.io/JT2L6
<{^_^}> [nixpkgs] @IvarWithoutBones opened pull request #101437 → discordpy: 1.3.4 -> 1.5.1 → https://git.io/JT2LF
<pumpy> clever++
<{^_^}> clever was put on Santa's "nice" list
jdnixx has quit [Ping timeout: 260 seconds]
sss has quit [Quit: Leaving]
sss2 has joined #nixos
costrouc has quit [Quit: costrouc]
<{^_^}> [nixpkgs] @nora-puchreiner opened pull request #101438 → graalvm8-ee, graalvm11-ee: 20.0.0 -> 20.2.1 → https://git.io/JT2qY
<aquarial> I have nix installed on ubuntu. I wrote a [default.nix] file for a custom tool I want to use. Is there a file/location I can callPackage this tool to install it into local/bin?
<aquarial> I think home-manager is a solution, but it seems complex to me. I'd rather directly manager dotfile history
<clever> aquarial: you can just nix-env -f /path/to/default.nix -iA foo
c4droid has joined #nixos
<clever> aquarial: and it will grab whatever { foo = ...; } has been set to, and install it
<clever> the binary will land in ~/.nix-profile/bin/
<{^_^}> [nixpkgs] @mweinelt merged pull request #100023 → pythonPackages.pyotp: Disable on Python27 → https://git.io/JUhpq
<{^_^}> [nixpkgs] @mweinelt pushed 2 commits to master: https://git.io/JT2qi
<c4droid> I just installed xmonad and haskellPackages.xmonad-contrib, when I execute xmonad --recompile, the ghc cannot find xmonad library
<clever> c4droid: you must install it with `services.xserver.windowManager.xmonad.enable = true;` to make it find ghc properly
<aquarial> works
c4droid` has joined #nixos
c4droid has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @IvarWithoutBones opened pull request #101439 → [20.09] pythonPackages.pyotp: disable on Python27 → https://git.io/JT2m9
c4droid`` has joined #nixos
<c4droid``> Have any solution for my problem?
<clever> 2020-10-22 23:29:50 < clever> c4droid: you must install it with `services.xserver.windowManager.xmonad.enable = true;` to make it find ghc properly
gxt has quit [Ping timeout: 240 seconds]
AstroBadger has quit [Quit: ZNC 1.6.5+deb1+deb9u2 - http://znc.in]
<c4droid``> clever: I install xmonad using that way
buckley310 has joined #nixos
c4droid` has quit [Ping timeout: 260 seconds]
gxt has joined #nixos
justan0theruser has quit [Ping timeout: 272 seconds]
<c4droid``> The error say cannot find module
<clever> c4droid``: xmonad wont see any library you install normally, you must use services.xserver.windowManager.xmonad.extraPackages
<clever> services.xserver.windowManager.xmonad.extraPackages = hsPkgs: [ hsPkgs.xmonad-contrib ];
aw has quit [Quit: Quitting.]
spacefrogg has quit [Quit: Gone.]
aw has joined #nixos
spacefrogg has joined #nixos
<c4droid``> clever:
<c4droid``> Ok, the xmonad config can compile normally
<c4droid``> Thanks for your answer
<c4droid``> :)
<clever> yep
m0rphism has quit [Ping timeout: 246 seconds]
c4droid`` has left #nixos ["ERC (IRC client for Emacs 27.1)"]
zarel has quit [Ping timeout: 265 seconds]
zarel has joined #nixos
<{^_^}> [nixpkgs] @IvarWithoutBones opened pull request #101440 → pythonPackages.gevent: 20.5.2 -> 20.9.0 → https://git.io/JT2Gs
jdnixx has joined #nixos
justanotheruser has joined #nixos
justHaunted has quit [Read error: Connection reset by peer]
justHaunted has joined #nixos
<{^_^}> [nixpkgs] @aszlig pushed commit from @edolstra to release-20.03 « test-driver.py: Fix deadlock when the log queue gets full »: https://git.io/JT2nJ
iqubic has joined #nixos
AlpineLlama has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
AlpineLlama has joined #nixos
MtotheM has quit [Quit: Lost terminal]
<iqubic> So, I'm trying to run `sudo nixos-rebuild switch` and it's failing for some reason. I'm on all unstable, if that matters. Here's a the last chunk of output from the terminal. https://dpaste.com/5NQLYACLX
<nicolas[m]> Are there any Zig packages on Nixpkgs to have an example build? I would like to package a tool and I have no clue how to go about it
<jdnixx> euank: just now seeing your message from earlier today, but thanks I'll try out that gist to switch to master
<jdnixx> also didn't know about status.nixos.org
<jdnixx> how come it shows nixpkgs-unstable as being 7 days old where the lesser (more stable) releases are newer (2-3 days old)?
<cole-h> iqubic: Remove `aspellDicts.en-science` from your packages list
<cole-h> idk why, but it's been doing that
<iqubic> Really? That's so strange.
<iqubic> I'll see if that works.
<cole-h> It's only that one dictionary, too.
<iqubic> Oh, not en-computers or anything else?
<iqubic> Alright, yeah, it's just that one dictionary.
Supersonic112 has joined #nixos
<dtz> Is there an issue for en-science failing? If not please make one! Ty :)
Supersonic has quit [Ping timeout: 272 seconds]
Supersonic112 is now known as Supersonic
zakame has quit [Ping timeout: 256 seconds]
<{^_^}> #101184 (by bbigras, 2 days ago, open): aspellDicts.en-science doesn't build
<{^_^}> #101194 (by acowley, 2 days ago, open): aspellDicts: force grep to treat dictionaries as text files
zakame has joined #nixos
cjpbirkbeck has quit [Quit: Goodbye, take care]
justanotheruser has quit [Ping timeout: 272 seconds]
ugubok has joined #nixos
<{^_^}> [nixpkgs] @marsam opened pull request #101441 → ruby: fix build on darwin → https://git.io/JT2cX
<iqubic> So, the rebuilding of my configuration just finished, and after all the various services were reloaded, I see this message in the terminal: https://dpaste.com/F9GB8FL4G Internet connection seems fine. Should I be concerned?
endformationage has quit [Quit: WeeChat 2.9]
iqubic` has joined #nixos
jdnixx has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @samueldr merged pull request #101194 → aspellDicts: force grep to treat dictionaries as text files → https://git.io/JT0mX
<{^_^}> [nixpkgs] @samueldr pushed 2 commits to master: https://git.io/JT2c5
iqubic has quit [Ping timeout: 260 seconds]
jbox has quit [Ping timeout: 272 seconds]
iqubic` has left #nixos ["ERC (IRC client for Emacs 28.0.50)"]
ddellacosta has quit [Ping timeout: 246 seconds]
domogled has joined #nixos
<{^_^}> [nix] @abathur opened pull request #4181 → darwin: encrypt nix volume if filevault is enabled → https://git.io/JT2WJ
jabster28 has joined #nixos
jbox has joined #nixos
jabster28 has quit [Ping timeout: 246 seconds]
Rusty1 has quit [Quit: WeeChat 2.3]
<{^_^}> [nixpkgs] @jtojnar pushed to master « gnome3.iagno: fix build »: https://git.io/JT2l3
jdnixx has joined #nixos
rprije has joined #nixos
growpotkin has quit [Quit: ZNC 1.8.2 - https://znc.in]
sss2 has quit [Remote host closed the connection]
lytedev[m]1 has joined #nixos
sss2 has joined #nixos
chin-tastic has quit [Ping timeout: 260 seconds]
chin-tastic has joined #nixos
samueldr_ has joined #nixos
picme[m] has joined #nixos
zakame has quit [Ping timeout: 246 seconds]
zakame has joined #nixos
<energizer> what is the disadvantage of using FHS?
<etu> energizer: In general or in a package?
<energizer> etu: i've never used it, so, either/both :)
dansho has quit [Ping timeout: 265 seconds]
lytedev has joined #nixos
avn has quit [Ping timeout: 258 seconds]
<{^_^}> [nixpkgs] @danieldk merged pull request #101241 → amdvlk: 2020.Q3.6 -> 2020.Q4.1 → https://git.io/JTEuK
<{^_^}> [nixpkgs] @danieldk pushed 2 commits to master: https://git.io/JT20e
buckley310 has quit [Quit: Connection closed for inactivity]
<etu> energizer: Well, FHS describes the filesystem hirarchy used by most distros (say: Ubuntu, Debian, ...). It's mostly just nix (and guix) that actually break FHS.
<etu> energizer: So you probably have used it without knowing unless nixos is your first distro ;)
<energizer> etu: i mean buildFHSUserEnv
<energizer> not *quite* that general :)
<etu> energizer: afaik: It takes more space because it has to copy all the files into that output since it then will chroot there to run things and the symlinks would break if it wasn't copied.
<energizer> etu: oh that's not so bad
<energizer> etu: doc says "It creates an isolated root with bound /nix/store, so its footprint in terms of disk space needed is quite small. "
<energizer> so i wonder why that isn't the default
<energizer> ie why don't we just always use buildFHSUserEnv
palo1 has joined #nixos
maxdevjs has quit [Ping timeout: 272 seconds]
<simpson> It'd be slow, and also there's a bootstrapping/homoncular problem with creating the FHS environment's own tools, and also it's not congruent with the goal of taming packages and removing ambient authority.
palo has quit [Ping timeout: 260 seconds]
palo1 is now known as palo
<energizer> simpson: buildFHSUserEnv puts the package in a sandbox, right? so is the authority any more ambient in an FHSUserEnv than in the normal /nix/store/ location?
itc-ger has joined #nixos
sangoma has joined #nixos
<simpson> energizer: Taming a package is about altering its relationship to the packages around it. When I think of what FHS enables, I usually first think of Steam, which is a foreign package manager that subverts our entire taming scheme. So yeah, there's definitely something leaky about the FHS abstraction.
<energizer> i havent used steam on nixos but i'm guessing its package manager installs into ~/.local/share, which is the same it would do under /nix/store anyway, no?
<energizer> i havent used steam on nixos but i'm guessing its package manager installs into ~/.local/share, which is the same it would do if steam were installed without FHSUserEnv anyway, no?
<simpson> Sure. Steam's basically not really tameable as-is. (There's legal obstacles; I'm so tired of copyright law.)
<{^_^}> [nixpkgs] @7c6f434c merged pull request #101422 → ecl: 16.1.3 -> 20.4.24, eql-git: fix build → https://git.io/JTgp1
<{^_^}> [nixpkgs] @7c6f434c pushed 2 commits to master: https://git.io/JT2uo
<{^_^}> [nixpkgs] @zowoq opened pull request #101442 → valgrind → https://git.io/JT2u6
cole-h has quit [Ping timeout: 256 seconds]
jnetod has quit [Ping timeout: 246 seconds]
alp has joined #nixos
<{^_^}> [nixpkgs] @c0deaddict closed pull request #82986 → goreleaser: init at 0.132.0 → https://git.io/JT2g4
<{^_^}> [nixpkgs] @vbgl merged pull request #100705 → ocamlPackages.yaml: 2.0.1 → 2.1.0 → https://git.io/JTGd0
<{^_^}> [nixpkgs] @vbgl pushed to master « ocamlPackages.yaml: 2.0.1 → 2.1.0 »: https://git.io/JT2gE
<{^_^}> [nixpkgs] @danieldk opened pull request #101443 → python3Packages.transformers: 3.3.1 -> 3.4.0 → https://git.io/JT2gr
<{^_^}> [nixpkgs] @danieldk closed pull request #100700 → python3Packages.tokenizers: 0.8.1 -> 0.9.2 → https://git.io/JTG9E
cfricke has joined #nixos
<{^_^}> [nixpkgs] @jonringer opened pull request #101444 → nixos/doc: list added modules → https://git.io/JT22J
ManiacOfMadness has joined #nixos
orivej has quit [Ping timeout: 260 seconds]
CyberManifest has joined #nixos
<hr[m]> Could someone with merge permissions in nixpkgs please merge #101126 It's been reviewed by both package maintainers and has been waiting a few days. Thanks in advance.
<{^_^}> https://github.com/NixOS/nixpkgs/pull/101126 (by wamserma, 2 days ago, open): croc: add passthru.tests
mananamenos_ has joined #nixos
<eyJhb> Does it make sense to add `platforms = platforms.unix;`? Any good way to test this?
ericsagnes has quit [Ping timeout: 246 seconds]
daGrevis has quit [Remote host closed the connection]
daGrevis has joined #nixos
<{^_^}> [nixpkgs] @Mic92 merged pull request #99576 → mergerfs: 2.28.3 -> 2.31.0 → https://git.io/JUd4d
<{^_^}> [nixpkgs] @Mic92 pushed 2 commits to master: https://git.io/JT2ad
whald has quit [Remote host closed the connection]
knupfer1 has joined #nixos
<benny> is anyone able to use emacs 27.1 on nixos 20.03? I'm having major font issues (I have basically only access to 3 fallback fonts)
sangoma has quit [Quit: WeeChat 2.9]
knupfer1 is now known as knupfer
saschagrunert has joined #nixos
lsix has joined #nixos
rsynnest_ has quit [Quit: Connection closed for inactivity]
apteryx has quit [Killed (tolkien.freenode.net (Nickname regained by services))]
apteryx has joined #nixos
ericsagnes has joined #nixos
eoli3n_ has joined #nixos
jdnixx has quit [Quit: Konversation terminated!]
zupo has joined #nixos
jbox has quit [Quit: WeeChat 2.9]
commander has joined #nixos
<DavHau[m]> How can I fetch a tarball without extracting it?
<etu> DavHau[m]: fetchurl
civodul has joined #nixos
Chiliparrot has joined #nixos
<DavHau[m]> ...so true! Something was twisted. Thanks :D
orivej has joined #nixos
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
lopsided98 has quit [Quit: No Ping reply in 180 seconds.]
lopsided98 has joined #nixos
teto has joined #nixos
alp has quit [Ping timeout: 272 seconds]
hmpffff has joined #nixos
eoli3n__ has joined #nixos
eoli3n_ has quit [Ping timeout: 260 seconds]
alp has joined #nixos
teto has quit [Quit: WeeChat 2.9]
Maxdamantus has quit [Ping timeout: 264 seconds]
Maxdamantus has joined #nixos
CyberManifest has quit [Remote host closed the connection]
CyberManifest has joined #nixos
<{^_^}> [nixpkgs] @OPNA2608 opened pull request #101446 → ptcollab: init at unstable-2020-10-20 → https://git.io/JT2Kw
CyberManifest has quit [Remote host closed the connection]
CyberManifest has joined #nixos
dbmikus has joined #nixos
dxu[m] has quit [Ping timeout: 246 seconds]
whald has joined #nixos
dxu[m] has joined #nixos
<{^_^}> [nixpkgs] @omasanori opened pull request #101447 → [WIP] sage: 8.9 -> 9.2 → https://git.io/JT26n
srhm has joined #nixos
dbmikus has quit [Ping timeout: 260 seconds]
zupo has joined #nixos
<{^_^}> [nixpkgs] @vbgl merged pull request #101415 → cryptoverif: 2.01pl1 → 2.03pl1 → https://git.io/JTg7D
<{^_^}> [nixpkgs] @vbgl pushed to master « cryptoverif: 2.01pl1 → 2.03pl1 »: https://git.io/JT2i4
ben has joined #nixos
zupo has quit [Client Quit]
<{^_^}> [nixpkgs] @vbgl pushed to release-20.09 « cryptoverif: 2.01pl1 → 2.03pl1 »: https://git.io/JT2ir
hnOsmium0001 has quit [Quit: Connection closed for inactivity]
dbmikus has joined #nixos
itc-ger has quit [Ping timeout: 240 seconds]
dbmikus has quit [Ping timeout: 260 seconds]
itc-ger has joined #nixos
hmpffff has quit [Ping timeout: 256 seconds]
hmpffff has joined #nixos
n9nes- has joined #nixos
n9nes has quit [Ping timeout: 246 seconds]
itc-ger has quit [Ping timeout: 260 seconds]
itc-ger has joined #nixos
freezeboy has joined #nixos
n9nes has joined #nixos
n9nes- has quit [Ping timeout: 260 seconds]
freezeboy has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @06kellyjac opened pull request #101448 → terragrunt: 0.25.4 -> 0.25.5 → https://git.io/JT21Z
Ariakenom has joined #nixos
n9nes has quit [Ping timeout: 260 seconds]
<eyJhb> How can I make nix-store availabe on a ssh login on a Ubuntu machine? Currently I have installed nix on the machine, and it sources the file when I do a normal ssh machine and then execute nix-store, but when I do ssh machine command, then it will not work
thc202 has joined #nixos
<{^_^}> [nixpkgs] @primeos pushed to master « python3Packages.google_api_python_client: 1.12.4 -> 1.12.5 »: https://git.io/JT215
abcrawf has quit [Quit: Idle for 30+ days]
never_released_ has joined #nixos
sstreet[m] has left #nixos ["Kicked by @appservice-irc:matrix.org : Idle for 30+ days"]
IslandUsurper[m] has quit [Quit: Idle for 30+ days]
never_released has quit [Ping timeout: 264 seconds]
zupo has joined #nixos
Chiliparrot has quit [Ping timeout: 260 seconds]
m0rphism has joined #nixos
zupo has quit [Client Quit]
Chiliparrot has joined #nixos
n9nes has joined #nixos
<ivan> eyJhb: which shell and OS? I guess you just need to move those commands to another dotfile
jabster28 has joined #nixos
<ivan> oh I see
<ivan> into which dotfile did you put them?
<ivan> oh, when I `ssh machine command` I usually just do something like ssh machine '. ~/.zshrc && command'
<ivan> if I need something from the dotfile
<eyJhb> ivan: But I cannot control that, as I need it for a remote builder
<eyJhb> ATm. I am trying to nuke it with kexec, because F Ubuntu :|
evade has joined #nixos
gthm has quit [Quit: leaving]
evade has quit [Client Quit]
gthm has joined #nixos
magma has joined #nixos
sangoma has joined #nixos
magma has quit [Client Quit]
opticnerve has joined #nixos
opticnerve has quit [Read error: Connection reset by peer]
magma has joined #nixos
dbmikus has joined #nixos
magma has quit [Client Quit]
<{^_^}> [nixpkgs] @wedens opened pull request #101449 → radeon-profile: 20190903 -> 20200824 → https://git.io/JT2Se
<mschwaig> I'm looking into flakes for the first time. I can build build a rust project based on this example: https://github.com/berbiche/sample-flake-rust, but I can't figure out how to make 'nix flake check' run 'cargo test'.
<mschwaig> Is 'nix flake check' even meant for running tests? :/
dbmikus has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @primeos pushed to master « chromium: Add some brief documentation »: https://git.io/JT2Su
olav_ has joined #nixos
<olav_> Relative Nixos noob here : I am trying to install rPackages.RPostgres on 20.03 and it breaks complaining that /bin/bash is missing
<olav_> Its the first time that a package from the stable branch is just unable to install for me, and I am unsure about what to do?
<olav_> 1. It was my understanding that there is a build check of packages for stable and the packages on there actually do build. Or is that a misunderstanding?
<olav_> 2. It also my understanding that the only way to do something about this is to fix this in the channel and then wait for the fix to be merged?
<{^_^}> [nixpkgs] @wedens opened pull request #101450 → radeon-profile-daemon: init at 20190603 → https://git.io/JT29z
<dminuoso> olav_: Without knowing the details of your problem, nixos does not comprehensively build all packages on ever ycommit.
<dminuoso> for some, we attempt to mark packages as broken when we can (this is the case with haskellPackages)
<dminuoso> Presumably rPackages is rust packages?
<olav_> ahh okay
<olav_> No its the programming language R
<dminuoso> Ah
<olav_> Its for Statistics
<dminuoso> olav_: The right way is to identify the maintainer, open an issue on github and include a reference to them there, such they get notified.
<olav_> What would be the best step forward - should I attempt to overwrite the derivation locally?
<dminuoso> At the very least
<dminuoso> Sure, you can do that too!
<olav_> It has no maintainer :/
<dminuoso> git blame then :)
<dminuoso> Someone had to ship that
<olav_> I would be very interested in helping with fixing this
<olav_> But I am not strong in the Nix language yet
<dminuoso> Author: Ryan Mulligan <ryan@ryantm.com>
<olav_> Thanks!
<dminuoso> Ah hold on, no. That's just someone who made the last fix
<dminuoso> Give me a moment
<dminuoso> olav_: There's nobody responsible because this seems to be autogenerated
<olav_> Do you have a link for a resource on how to approach fixing a derivation?
<dminuoso> olav_: I think it's already fixed
<dminuoso> 73ae8e53e24b
<dutchie> ryantm is a bot, so probably won't be that helpful at responding to questions
<olav_> Oh really?
<dminuoso> olav_: Judging from the error and the content of the above patch, Id say it should work.
<olav_> But I just updated my nix-channel and tried again
<dminuoso> However, I can reproduce the error locally
<dminuoso> That's really interesting
<olav_> I can see that the error also happened in 2018
<dminuoso> Because there's an override that runs `patchShebangs configure`
<dminuoso> olav_: One option is to `git bisect`
<dutchie> well, ryantm appears to be a real human, but afaik most of the commits in his name are due to a bot
<dminuoso> See what commit introduced the regressoin
<{^_^}> #101299 (by r-ryantm, 1 day ago, merged): argo: 2.11.5 -> 2.11.6
<olav_> I can guess from the name that it fixes /bin/bash with a nixos compatible alternative?
<dminuoso> olav_: Judging from the error, its possible the configure script has a fixed reference to /bin/bash somewhere
<dutchie> oh, the bot uses ryantm-bot@, so you can probaly ignore me
<dminuoso> olav_: If this was the shebang, you'd get a `bad interpreter` instead
<olav_> ahh
<olav_> So you are saying that a fix for this is already merged
<olav_> But do I need to upgrade to unstable to get it`
<olav_> ?
<dminuoso> olav_: haha
<olav_> Or do fixes for this get back ported to the main stable channel?
<dminuoso> /bin/bash src/configure.bash
<dminuoso> Okay, that sucks
<dminuoso> That's literally the content of the configure script
<olav_> Nice
<olav_> But I guess that line comes from upstream?
<dminuoso> Yes
<dminuoso> I dont write nix derivations usually, so I dont know instantly how to address this. But it seems like a trivial problem
<olav_> Apart from asking upstream to change that, can I make a derivation where I replace that file?
CyberManifest has quit [Quit: Leaving...]
<dminuoso> olav_: You'd rather modify `pkgs/development/r-modules/default.nix` to override the generated derivation
<olav_> That would be a for a general fix right? But what if I want to try overriding locally first?
<olav_> Sorry for the perhaps noob question
<dminuoso> olav_: Just overwrite the configure phase
<dminuoso> So you'd do something like
<dminuoso> configurePhase = ''patchShebangs src/configure.bash\nsrc/configure.bash''
<dminuoso> As a rough idea
<{^_^}> [nixpkgs] @moritzschaefer opened pull request #101451 → fix package path for bioc server → https://git.io/JT2Hg
<olav_> Thanks thats very helpful
<olav_> I will try and see if that fixes it locally!
gthm has quit [Quit: leaving]
gthm has joined #nixos
nschoe has joined #nixos
<nschoe> Hi everyone :)
<nschoe> I'm running on channle 20.03, but I need to install KiCad version 5.1.7 (or 5.1.6 if not possible), the channel is on 5.1.5.
<nschoe> I've taken a look into the nixpkgs repo for KiCad: https://github.com/NixOS/nixpkgs/tree/master/pkgs/applications/science/electronics/kicad and it's more ocmplicated than I expected. How should I go about that?
<supersandro2000> fetch 5.1.6 from unstable or run the update script and then track your fork
<supersandro2000> nschoe: or test https://github.com/NixOS/nixpkgs/pull/99201
<{^_^}> #99201 (by evils, 3 weeks ago, open): kicad: 5.1.6 -> 5.1.7
<nschoe> supersandro2000: okay I'll try cloning the repo and then build the 5.1.7 version.
Skeleswant has joined #nixos
emily has quit [Quit: killed]
davidak[m] has quit [Quit: killed]
srasu[m] has quit [Quit: killed]
michaelpj has quit [Quit: killed]
jschievink has quit [Quit: killed]
matthewkenigsber has quit [Quit: killed]
pinage404[m] has quit [Quit: killed]
Notkea[m] has quit [Quit: killed]
Minijackson[m] has quit [Quit: killed]
mkg20001 has quit [Quit: killed]
aterius has quit [Quit: killed]
hsiktas[m] has quit [Quit: killed]
Dandellion has quit [Quit: killed]
colemickens has quit [Quit: killed]
bohan[m] has quit [Quit: killed]
bourbon has quit [Quit: killed]
axx has quit [Quit: killed]
Alex[m] has quit [Quit: killed]
dtz has quit [Quit: killed]
nilsirl[m] has quit [Quit: killed]
Yakulu[m] has quit [Quit: killed]
Valodim[m] has quit [Quit: killed]
theduke has quit [Quit: killed]
Anonymous[m] has quit [Quit: killed]
ryantm has quit [Quit: killed]
bk1603[m] has quit [Quit: killed]
domenkozar[m] has quit [Quit: killed]
fgaz has quit [Quit: killed]
ThaEwat has quit [Quit: killed]
rycee has quit [Quit: killed]
sum1[m] has quit [Quit: killed]
bbigras has quit [Quit: killed]
ptotter[m] has quit [Quit: killed]
humancalico[m] has quit [Quit: killed]
DamienCassou has quit [Quit: killed]
fadenb[m] has quit [Quit: killed]
NobbZ[m] has quit [Quit: killed]
siraben has quit [Quit: killed]
JJJollyjim has quit [Quit: killed]
timokau[m] has quit [Quit: killed]
bennofs[m] has quit [Quit: killed]
ilya-fedin has quit [Quit: killed]
musicmatze has quit [Quit: killed]
srid has quit [Quit: killed]
jgart[m] has quit [Quit: killed]
Ox4A6F has quit [Quit: killed]
mt[m] has quit [Quit: killed]
codyopel has quit [Quit: killed]
alexarice[m] has quit [Quit: killed]
q3k[m] has quit [Quit: killed]
yurb has quit [Quit: killed]
regnat has quit [Quit: killed]
leons has quit [Quit: killed]
l33[m] has quit [Quit: killed]
mcaju has quit [Quit: killed]
hpfr has quit [Quit: killed]
abstract300 has quit [Quit: killed]
eadwu[m] has quit [Quit: killed]
aquarial has quit [Quit: killed]
jtojnar has quit [Quit: killed]
cyberwolf[m] has quit [Quit: killed]
JankLoogi has quit [Quit: killed]
jonathan[m]3 has quit [Quit: killed]
drozdziak1 has quit [Quit: killed]
kevincox[m] has quit [Quit: killed]
thefloweringash has quit [Quit: killed]
Hayden[m] has quit [Quit: killed]
worldofpeace has quit [Quit: killed]
timotheel-f[m] has quit [Quit: killed]
stuebinm[m] has quit [Quit: killed]
jfaassen[m] has quit [Quit: killed]
clefru_mm has quit [Quit: killed]
kueckieben[m] has quit [Quit: killed]
theglenn888[m] has quit [Quit: killed]
faya01[m] has quit [Quit: killed]
test128383[m] has quit [Quit: killed]
scaroo[m] has quit [Quit: killed]
jonte[m] has quit [Quit: killed]
fatjedi[m] has quit [Quit: killed]
SplitFire[m] has quit [Quit: killed]
rnhmjoj has quit [Quit: killed]
georg[m] has quit [Quit: killed]
crazymind-102[m] has quit [Quit: killed]
puzzlewolf has quit [Quit: killed]
milessanctimicha has quit [Quit: killed]
AmitLevy[m] has quit [Quit: killed]
Jake[m] has quit [Quit: killed]
felschr[m] has quit [Quit: killed]
paalped[m] has quit [Quit: killed]
GuillaumeChrel[m has quit [Quit: killed]
jlv has quit [Quit: killed]
ma27[m] has quit [Quit: killed]
demoulin[m] has quit [Quit: killed]
vpfeiffer[m] has quit [Quit: killed]
chinmayxd[m] has quit [Quit: killed]
aloiscochard[m] has quit [Quit: killed]
slabity has quit [Quit: killed]
esclear_m has quit [Quit: killed]
GerdFlaig[m] has quit [Quit: killed]
phirsch has quit [Quit: killed]
TheSirC[m] has quit [Quit: killed]
jojosch[m] has quit [Quit: killed]
dxu[m] has quit [Quit: killed]
sefu[m] has quit [Quit: killed]
nikola[m] has quit [Quit: killed]
annemarie[m]2 has quit [Quit: killed]
maralorn has quit [Quit: killed]
unclechu has quit [Quit: killed]
hiroshi[m] has quit [Quit: killed]
nh2[m] has quit [Quit: killed]
nikivi[m] has quit [Quit: killed]
the_rajsun[m] has quit [Quit: killed]
ejpcmac has quit [Quit: killed]
yusdacra[m] has quit [Quit: killed]
Ke has quit [Quit: killed]
hazel[m] has quit [Quit: killed]
eddyb has quit [Quit: killed]
daemon1024 has quit [Quit: killed]
nicolas[m] has quit [Quit: killed]
CRTified[m] has quit [Quit: killed]
unrooted[m] has quit [Quit: killed]
steve[m] has quit [Quit: killed]
betrion[m] has quit [Quit: killed]
a4wc6n[m] has quit [Quit: killed]
alienpirate5 has quit [Quit: killed]
kc[m] has quit [Quit: killed]
habbasi[m] has quit [Quit: killed]
maxfieldl[m] has quit [Quit: killed]
neonfuz2 has quit [Quit: killed]
mudrii[m] has quit [Quit: killed]
zie[m] has quit [Quit: killed]
sshow[m] has quit [Quit: killed]
matute_[m] has quit [Quit: killed]
mzumquadrat[m] has quit [Quit: killed]
cab404[m] has quit [Quit: killed]
back25[m] has quit [Quit: killed]
mica[m] has quit [Quit: killed]
balsoft has quit [Quit: killed]
abbec has quit [Quit: killed]
neothefox has quit [Quit: killed]
ongy[m] has quit [Quit: killed]
danielrf[m] has quit [Quit: killed]
philipp[m] has quit [Quit: killed]
zane has quit [Quit: killed]
aanderse has quit [Quit: killed]
chreekat[m] has quit [Quit: killed]
juan[m] has quit [Quit: killed]
tristan[m] has quit [Quit: killed]
HumanJohn[m] has quit [Quit: killed]
l-as has quit [Quit: killed]
kraem has quit [Quit: killed]
barn0 has quit [Quit: killed]
l_inus[m] has quit [Quit: killed]
Jezhehim[m] has quit [Quit: killed]
ZerataX has quit [Quit: killed]
TomaszKsiak[m] has quit [Quit: killed]
anthony[m] has quit [Quit: killed]
MElemental[m] has quit [Quit: killed]
mnm[m] has quit [Quit: killed]
lurpahi has quit [Quit: killed]
cchalc[m] has quit [Quit: killed]
superchonk[m] has quit [Quit: killed]
Dennis[m]2 has quit [Quit: killed]
user_account[m] has quit [Quit: killed]
tyrion-mx has quit [Quit: killed]
jojosch|Johannes has quit [Quit: killed]
qrilka[m] has quit [Quit: killed]
callahad[m] has quit [Quit: killed]
c0d3x[m] has quit [Quit: killed]
DanP[m] has quit [Quit: killed]
srxl has quit [Quit: killed]
thequux[m] has quit [Quit: killed]
picme[m] has quit [Quit: killed]
ialhamad[m] has quit [Quit: killed]
doomer[m] has quit [Quit: killed]
flip[m] has quit [Quit: killed]
mindtree[m] has quit [Quit: killed]
treed[m] has quit [Quit: killed]
lukebfox[m] has quit [Quit: killed]
ndarilek has quit [Quit: killed]
omasanori[m] has quit [Quit: killed]
georgyo[m] has quit [Quit: killed]
AntonioYang[m] has quit [Quit: killed]
ugubok[m] has quit [Quit: killed]
Rian[m] has quit [Quit: killed]
inlaw[m] has quit [Quit: killed]
ghasshee[m] has quit [Quit: killed]
tilcreator has quit [Quit: killed]
crazazy[m] has quit [Quit: killed]
njha[m] has quit [Quit: killed]
DavHau[m] has quit [Quit: killed]
rschulman has quit [Quit: killed]
Ericson2314 has quit [Quit: killed]
timclassic has quit [Quit: killed]
ks2048[m] has quit [Quit: killed]
Hirmes[m] has quit [Quit: killed]
hr[m] has quit [Quit: killed]
dxb[m] has quit [Quit: killed]
yeongsheng_tan[m has quit [Quit: killed]
spudly[m] has quit [Quit: killed]
JaakkoLuttinen[m has quit [Quit: killed]
pachumicchu has quit [Quit: killed]
bloodyfish[m] has quit [Quit: killed]
jbal[m] has quit [Quit: killed]
duktus[m] has quit [Quit: killed]
helithumper[m] has quit [Quit: killed]
hjulle has quit [Quit: killed]
onny[m] has quit [Quit: killed]
zrsk[m] has quit [Quit: killed]
amanjeev[m] has quit [Quit: killed]
MilkManzJourDadd has quit [Quit: killed]
amesgen[m] has quit [Quit: killed]
mullein[m] has quit [Quit: killed]
Akira[m] has quit [Quit: killed]
risson[m] has quit [Quit: killed]
MrShatteredMirro has quit [Quit: killed]
wak-work has quit [Quit: killed]
rednaZ[m] has quit [Quit: killed]
grin[m] has quit [Quit: killed]
daddy_james[m] has quit [Quit: killed]
ntnkwmkmnw[m] has quit [Quit: killed]
boogiewoogie[m] has quit [Quit: killed]
leonardp has quit [Quit: killed]
killercup[m] has quit [Quit: killed]
govanify has quit [Quit: killed]
kaiha[m] has quit [Quit: killed]
us3r[m] has quit [Quit: killed]
ipv6[m] has quit [Quit: killed]
bjtitus[m] has quit [Quit: killed]
M0-[m] has quit [Quit: killed]
yangm has quit [Quit: killed]
alexfmpe has quit [Quit: killed]
lytedev[m]1 has quit [Quit: killed]
ccressent[m] has quit [Quit: killed]
zolk3ri[m] has quit [Quit: killed]
roberth has quit [Quit: killed]
qbit[m] has quit [Quit: killed]
fzakaria1 has quit [Quit: killed]
tsrt^ has quit [Max SendQ exceeded]
jiribenes has joined #nixos
tsrt^ has joined #nixos
<{^_^}> [nixpkgs] @stigtsp opened pull request #101452 → mariadb: 10.4.14 -> 10.4.15 (for CVE-2020-15180) → https://git.io/JT25f
n9nes has quit [Ping timeout: 256 seconds]
rprije has quit [Ping timeout: 264 seconds]
ManiacOfMadness has quit [Ping timeout: 272 seconds]
Chiliparrot has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
knupfer has quit [Quit: knupfer]
buovjaga has left #nixos [#nixos]
mikroskeem has joined #nixos
ManiacOfMadness has joined #nixos
<mikroskeem> heya - i'm looking at docker derivation and i don't understand why it's still using old and long deprecated docker-containerd
ericsagnes has quit [Ping timeout: 260 seconds]
<mikroskeem> this is also a blocker for https://github.com/NixOS/nixpkgs/issues/73800
<{^_^}> #73800 (by deliciouslytyped, 48 weeks ago, open): Migrate to cgroupsv2
<mikroskeem> tbh, i think i'm better off commenting under that issue
hmpffff has quit [Ping timeout: 272 seconds]
ManiacOfMadness has quit [Ping timeout: 244 seconds]
<mikroskeem> uh-oh wat
hmpffff has joined #nixos
<mikroskeem> weird, seems like release ends up being fetched from the upstream still.
<supersandro2000> just replace the the url with https://github.com/containerd/containerd
<supersandro2000> mikroskeem
Ox4A6F has joined #nixos
HumanJohn[m] has joined #nixos
DamienCassou has joined #nixos
Ericson2314 has joined #nixos
Hirmes[m] has joined #nixos
l-as has joined #nixos
neothefox has joined #nixos
MilkManzJourDadd has joined #nixos
NobbZ[m] has joined #nixos
Minijackson[m] has joined #nixos
TheSirC[m] has joined #nixos
abstract300 has joined #nixos
abbec has joined #nixos
alexarice[m] has joined #nixos
alienpirate5 has joined #nixos
alexfmpe has joined #nixos
amanjeev[m] has joined #nixos
Anonymous[m] has joined #nixos
aterius has joined #nixos
aquarial has joined #nixos
barn0 has joined #nixos
betrion[m] has joined #nixos
bbigras has joined #nixos
bennofs[m] has joined #nixos
bohan[m] has joined #nixos
bk1603[m] has joined #nixos
mcaju has joined #nixos
chreekat[m] has joined #nixos
colemickens has joined #nixos
crazazy[m] has joined #nixos
daemon1024 has joined #nixos
crazymind-102[m] has joined #nixos
danielrf[m] has joined #nixos
davidak[m] has joined #nixos
darkharmony9999[ has joined #nixos
dominicusin[m] has joined #nixos
drozdziak1 has joined #nixos
dtz has joined #nixos
domenkozar[m] has joined #nixos
dxu[m] has joined #nixos
eadwu[m] has joined #nixos
emily has joined #nixos
fgaz has joined #nixos
fzakaria1 has joined #nixos
GuillaumeChrel[m has joined #nixos
eddyb has joined #nixos
hiroshi[m] has joined #nixos
hsiktas[m] has joined #nixos
hpfr has joined #nixos
humancalico[m] has joined #nixos
ilya-fedin has joined #nixos
Hayden[m] has joined #nixos
codyopel has joined #nixos
JankLoogi has joined #nixos
jgart[m] has joined #nixos
jonte[m] has joined #nixos
jtojnar has joined #nixos
jschievink has joined #nixos
Jake[m] has joined #nixos
kevincox[m] has joined #nixos
kraem has joined #nixos
TomaszKsiak[m] has joined #nixos
ks2048[m] has joined #nixos
l_inus[m] has joined #nixos
matthewkenigsber has joined #nixos
M0-[m] has joined #nixos
mindtree[m] has joined #nixos
tilcreator has joined #nixos
a4wc6n[m] has joined #nixos
aloiscochard[m] has joined #nixos
mkg20001 has joined #nixos
SplitFire[m] has joined #nixos
nikola[m] has joined #nixos
nikivi[m] has joined #nixos
nh2[m] has joined #nixos
nilsirl[m] has joined #nixos
octowan[m] has joined #nixos
omasanori[m] has joined #nixos
paalped[m] has joined #nixos
ongy[m] has joined #nixos
mica[m] has joined #nixos
pinage404[m] has joined #nixos
rednaZ[m] has joined #nixos
regnat has joined #nixos
roberth has joined #nixos
ryantm has joined #nixos
yurb has joined #nixos
doomer[m] has joined #nixos
siraben has joined #nixos
back25[m] has joined #nixos
bjtitus[m] has joined #nixos
cab404[m] has joined #nixos
srid has joined #nixos
slabity has joined #nixos
srasu[m] has joined #nixos
yoctocell[m] has joined #nixos
clefru_mm has joined #nixos
theduke has joined #nixos
ThaEwat has joined #nixos
the_rajsun[m] has joined #nixos
c0d3x[m] has joined #nixos
thefloweringash has joined #nixos
timokau[m] has joined #nixos
cchalc[m] has joined #nixos
tskc[m]1 has joined #nixos
chinmayxd[m] has joined #nixos
unclechu has joined #nixos
ArtemVorotnikov[ has joined #nixos
unrooted[m] has joined #nixos
worldofpeace has joined #nixos
wak-work has joined #nixos
MrShatteredMirro has joined #nixos
demoulin[m] has joined #nixos
duktus[m] has joined #nixos
Yakulu[m] has joined #nixos
tskc[m]1 is now known as kc[m]
yusdacra[m] has joined #nixos
zolk3ri[m] has joined #nixos
DanP[m] has joined #nixos
felschr[m] has joined #nixos
hjulle has joined #nixos
sefu[m] has joined #nixos
philipp[m] has joined #nixos
hr[m] has joined #nixos
fadenb[m] has joined #nixos
axx has joined #nixos
anthony[m] has joined #nixos
sum1[m] has joined #nixos
michaelpj has joined #nixos
flip[m] has joined #nixos
ghasshee[m] has joined #nixos
tristan[m] has joined #nixos
jehova[m] has joined #nixos
ndarilek has joined #nixos
fatjedi[m] has joined #nixos
grahamc[m] has joined #nixos
Notkea[m] has joined #nixos
DavHau[m] has joined #nixos
ialhamad[m] has joined #nixos
jbal[m] has joined #nixos
JaakkoLuttinen[m has joined #nixos
hazel[m] has joined #nixos
yangm has joined #nixos
enick_892 has joined #nixos
inlaw[m] has joined #nixos
jfaassen[m] has joined #nixos
helithumper[m] has joined #nixos
bourbon has joined #nixos
aanderse has joined #nixos
us3r[m] has joined #nixos
jlv has joined #nixos
balsoft has joined #nixos
Ke has joined #nixos
killercup[m] has joined #nixos
fjodor[m] has joined #nixos
ZerataX has joined #nixos
q3k[m] has joined #nixos
srxl has joined #nixos
annemarie[m]2 has joined #nixos
rnhmjoj has joined #nixos
musicmatze has joined #nixos
kaiha[m] has joined #nixos
habbasi[m] has joined #nixos
lndn[m] has joined #nixos
lurpahi has joined #nixos
Jezhehim[m] has joined #nixos
leons has joined #nixos
mnm[m] has joined #nixos
matute_[m] has joined #nixos
maxfieldl[m] has joined #nixos
mzumquadrat[m] has joined #nixos
ptotter[m] has joined #nixos
onny[m] has joined #nixos
jonathan[m]3 has joined #nixos
steve[m] has joined #nixos
milessanctimicha has joined #nixos
JJJollyjim has joined #nixos
neonfuz2 has joined #nixos
puzzlewolf has joined #nixos
nicolas[m] has joined #nixos
Alex[m] has joined #nixos
MElemental[m] has joined #nixos
georg[m] has joined #nixos
Dandellion has joined #nixos
mudrii[m] has joined #nixos
mt[m] has joined #nixos
njha[m] has joined #nixos
grin[m] has joined #nixos
leonardp has joined #nixos
rschulman has joined #nixos
phirsch has joined #nixos
ma27[m] has joined #nixos
scaroo[m] has joined #nixos
CRTified[m] has joined #nixos
qrilka[m] has joined #nixos
rycee has joined #nixos
ejpcmac has joined #nixos
cyberwolf[m] has joined #nixos
timclassic has joined #nixos
qbit[m] has joined #nixos
sshow[m] has joined #nixos
juan[m] has joined #nixos
ntnkwmkmnw[m] has joined #nixos
Valodim[m] has joined #nixos
maralorn has joined #nixos
superchonk[m] has joined #nixos
test128383[m] has joined #nixos
treed[m] has joined #nixos
lukebfox[m] has joined #nixos
ugubok[m] has joined #nixos
tyrion-mx has joined #nixos
timotheel-f[m] has joined #nixos
user_account[m] has joined #nixos
AntonioYang[m] has joined #nixos
yeongsheng_tan[m has joined #nixos
zie[m] has joined #nixos
dxb[m] has joined #nixos
esclear_m has joined #nixos
menelaos[m] has joined #nixos
stuebinm[m] has joined #nixos
zrsk[m] has joined #nixos
jojosch|Johannes has joined #nixos
pachumicchu has joined #nixos
risson[m] has joined #nixos
bloodyfish[m] has joined #nixos
vpfeiffer[m] has joined #nixos
spudly[m] has joined #nixos
Rian[m] has joined #nixos
picme[m] has joined #nixos
thequux[m] has joined #nixos
kueckieben[m] has joined #nixos
boogiewoogie[m] has joined #nixos
ccressent[m] has joined #nixos
daddy_james[m] has joined #nixos
amesgen[m] has joined #nixos
jojosch[m] has joined #nixos
SpaghettiCthulhu has joined #nixos
l33[m] has joined #nixos
theglenn888[m] has joined #nixos
govanify has joined #nixos
lytedev[m] has joined #nixos
Akira[m] has joined #nixos
abcrawf has joined #nixos
mullein[m] has joined #nixos
Dennis[m]2 has joined #nixos
zane has joined #nixos
AmitLevy[m] has joined #nixos
callahad[m] has joined #nixos
faya01[m] has joined #nixos
ipv6[m] has joined #nixos
GerdFlaig[m] has joined #nixos
alp has quit [Remote host closed the connection]
<supersandro2000> Hi matrix
<mikroskeem> rip this channel
alp has joined #nixos
ericsagnes has joined #nixos
hmpffff has quit [Ping timeout: 260 seconds]
hmpffff has joined #nixos
nschoe has quit [Remote host closed the connection]
nschoe has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 opened pull request #101453 → docker: use upstream repo for containerd → https://git.io/JT2FT
<supersandro2000> mikroskeem: created a PR to fix the URL
<mikroskeem> :)
<mikroskeem> thanks
<supersandro2000> s/URL/git/
<mikroskeem> however i'll comment under the cg v2 issue
<nschoe> Hi back. I've cloned evils's fork (to try Kicad 5.1.7). But I think I'm missing something: why is it that when I type 'nix-env -I nixpkgs=/home/nschoe/nixpkgs -qaP --description kicad' it still tells me "5.1.5".but when I do 'nix-shell -I nixpkgs=/home/nschoe/nixpkgs -p kicad' it is now starting to pull and build lots of packages (to build 5.1.7) ?
<nschoe> Doesn't the -I flag works the same for nix-env and nix-shell?
<{^_^}> [nixpkgs] @mweinelt merged pull request #101439 → [20.09] pythonPackages.pyotp: disable on Python27 → https://git.io/JT2m9
<{^_^}> [nixpkgs] @mweinelt pushed 2 commits to release-20.09: https://git.io/JT2FM
<{^_^}> [nixpkgs] @arapov opened pull request #101454 → RFC: uboot: init Hardkernel Odroid C4 board and drop Armbian deps for Odroid C2 board → https://git.io/JT2Fd
werner291 has joined #nixos
simonpe^^ has joined #nixos
ManiacOfMadness has joined #nixos
<simonpe^^> hiya! I'm looking for a simple way to modify nix files through a script, what tools are available for me to do that?
<simonpe^^> something like jq for nix expressions would be sweet
supercoven has joined #nixos
eoli3n__ has quit [Ping timeout: 256 seconds]
<lassulus> well nix is a programming language and not a data format, so the best way to modify nix data would be to use nix itself. You could also import json in nix and modify it beforehand with jq or something
<simonpe^^> lassulus: mm yes, are there any obvious alternatives to json that I should consider?
<eyJhb> clever++ for kexec repo again
<{^_^}> clever's karma got increased to 532
<supersandro2000> simonpe: what do you want to modify? hashes, urls, syntax, the entire thing?
<gchristensen> nix-env is a strange one, nschoe. you could nix-build the package and then nix-env -i ./result
<eyJhb> I have this inet_featuretool with a shebang here `#!/usr/bin/env python3`, I have modified the script to patchSheBangs like so - https://termbin.com/ezk8 but it still have the env python3...
<eyJhb> No clue what I am doing wrong here
<Ke> I use indeed JSON for some data that configures both debian and nixos, though I do not edit it automatically
hmpffff has quit [Ping timeout: 240 seconds]
<nschoe> gchristensen: oh? Okay. So 'nix-build -I nixpkgs=/home/nschoe/nixpkgs -A kicad' then?
<gchristensen> yea
<gchristensen> well
<gchristensen> nix-build /home/nschoe/nixpkgs -A kicad
seku has joined #nixos
<nschoe> gchristensen: no '-I' option?
hmpffff has joined #nixos
<eyJhb> I am going insane over this, it makes no sense
<gchristensen> eyJhb: `python` is python2, not python3
alp has quit [Ping timeout: 240 seconds]
jul1u5 has joined #nixos
dbmikus has joined #nixos
jul1u5 has quit [Remote host closed the connection]
<eyJhb> Damn it, thanks gchristensen :)
<gchristensen> I've fought that too :)
zupo has joined #nixos
dbmikus has quit [Ping timeout: 256 seconds]
Serus has quit [Ping timeout: 258 seconds]
olav_ has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
Soo_Slow has joined #nixos
alp has joined #nixos
<eyJhb> gchristensen: It is quite a annoying thing :( But of course it makes perfect sense
<{^_^}> [nixpkgs] @sdier opened pull request #101455 → igmpproxy: init at version 0.2.1 → https://git.io/JT2pm
<{^_^}> [nixpkgs] @doronbehar opened pull request #101456 → yed: wrap With wrapGAppsHook - fixes #101135 → https://git.io/JT2pl
<gchristensen> it'd be cool if it could error if it can't fix a shebang
<eyJhb> But then again, patchShebangs <dir> would then not be that nice :p
<gchristensen> why not?
<gchristensen> you didn't want to make the shebangs corect?
FRidh has joined #nixos
itc-ger has quit [Ping timeout: 240 seconds]
orivej has quit [Ping timeout: 260 seconds]
<FRidh> I keep getting "Bad file descriptor" and "Too many open files" when switching nixos to github:NixOS/nixpkgs/cfed29bfcb28259376713005d176a6f82951014a. Any idea what is causing it?
<supersandro2000> FRidh: Watchman?
<FRidh> not running that as far as I know
dbmikus has joined #nixos
saschagrunert has quit [Quit: Leaving]
<FRidh> note: currently hard linking saves 17592186044416.00 MiB
<gchristensen> impressive
<gchristensen> you win that race
<FRidh> knew I had a big drive, but not like this
<{^_^}> nix#1310 (by sjau, 3 years ago, open): NixOS cleanup freed 124 PB (on a 512GB SSD)
<andi-> FRidh: is that duringa nix build?
<andi-> with the recent systemd upgrade we have a inode limit on /tmp which I hit when building 2+ firefox instances at the same time..
<FRidh> ah right, thanks
<FRidh> andi-: nix-collect-garbage -d gives that note
<FRidh> nixos-rebuild switch (so nix build) gives the errors
<FRidh> oh interesting
<andi-> try mount -o remount,nr_inodes=1M /tmp
<andi-> I still want to investigate what the proper solution to that is besides raising the limit and how we can make it configurable
dbmikus has quit [Ping timeout: 260 seconds]
cristi_ has joined #nixos
FRidh has quit [Quit: Konversation terminated!]
<eyJhb> gchristensen: yeah, but what about files with no shebangs? Just ignored then I assume?
FRidh has joined #nixos
<gchristensen> sure
patrickod has quit [Quit: Connection closed for inactivity]
cristi_ has quit [Quit: cristi_]
<{^_^}> [nixpkgs] @stigtsp merged pull request #101336 → perldevel: 5.33.2 -> 5.33.3, perl-cross: f59d2b6 -> 65e06e2 → https://git.io/JTzXt
<{^_^}> [nixpkgs] @stigtsp pushed 2 commits to master: https://git.io/JT2jH
eoli3n_ has joined #nixos
<pumpy> would i do xsession.windowManager.i3.enable in home manager's home.nix or services.xserver.windowManager.i3.enable in configuration.nix? im new to nixos and need help understanding how to decide whether to choose a systemwide or user config option if i have the choice. ty!
<aanderse> stigo++
<{^_^}> stigo's karma got increased to 3, it's a crit!
<stigo> o_O :)
<gchristensen> can anybody check this: if you run systemd-cgtop as your user or root, do you see values in the Input/s Output/s ? I don't, despite using cgroupv2 and having the io controller enabled for most of my cgroups
<dutchie> nothing on either, on nixos-unstable without any tweaks to systemd/cgroups
<dutchie> 21.03pre246543.24c9b05ac53
<FRidh> indeed nothing on either
<gchristensen> hm
<simonpe^^> supersandro2000: I want to add stuff to some lists
<supersandro2000> go with json
<simonpe^^> `{}: let hello = [ "world" ]; in { hello, ...otherstuff... }`
<gchristensen> dutchie, FRidh: what filesystems do you use?
<simonpe^^> I want to add "mars" to the hello var
<dutchie> i have a vfat /boot and a btrfs root
<FRidh> gchristensen: ext4
<gchristensen> hrm
whatisRT has joined #nixos
<FRidh> also vfat for boot
fresheyeball has quit [Quit: WeeChat 2.7.1]
cristi_ has joined #nixos
<gchristensen> I'm not sure what is missing
<eyJhb> /ex/exitit
<eyJhb> Damn it, that was net even clone
<{^_^}> [nixpkgs] @moritzschaefer opened pull request #101461 → Fixes missing configure script → https://git.io/JTafP
zupo has quit [Quit: Textual IRC Client: www.textualapp.com]
zupo has joined #nixos
<{^_^}> [nixpkgs] @stigtsp opened pull request #101463 → [20.09] mariadb: 10.4.14 -> 10.4.15 (CVE-2020-15180) → https://git.io/JTaJZ
cristi_ has quit [Quit: cristi_]
dadada_ has quit [Quit: WeeChat 2.7.1]
dadada_ has joined #nixos
whald has quit [Ping timeout: 272 seconds]
costrouc has joined #nixos
whald has joined #nixos
<{^_^}> [nixpkgs] @Synthetica9 opened pull request #101464 → treewide: ran ./maintainers/scripts/update_redirected_urls.sh → https://git.io/JTaTE
gnidorah has joined #nixos
<gnidorah> hi. merge please #100485
<{^_^}> https://github.com/NixOS/nixpkgs/pull/100485 (by gnidorah, 1 week ago, open): iortcw: init at 1.51c
<{^_^}> [nixpkgs] @andir merged pull request #101091 → fastd: 19 -> 21 → https://git.io/JTBt4
<{^_^}> [nixpkgs] @andir pushed 2 commits to master: https://git.io/JTakC
<pumpy> would i do xsession.windowManager.i3.enable in home manager's home.nix or services.xserver.windowManager.i3.enable in configuration.nix? im new to nixos and need help understanding how to decide whether to choose a systemwide or user config option if i have the choice. ty!
<{^_^}> [nixpkgs] @peti merged pull request #101461 → Fixes missing configure script → https://git.io/JTafP
<{^_^}> [nixpkgs] @peti pushed 2 commits to master: https://git.io/JTakQ
butcher has joined #nixos
butcher has quit [Max SendQ exceeded]
butcher has joined #nixos
<{^_^}> [nixpkgs] @ryantm merged pull request #55558 → sonar-scanner-bin: init at 3.3.0.1492 → https://git.io/fhQmT
<{^_^}> [nixpkgs] @ryantm pushed 2 commits to master: https://git.io/JTaIL
<{^_^}> [nix] @mkenigs opened pull request #4182 → Print built derivations as json for build → https://git.io/JTaIK
werner291 has quit [Ping timeout: 260 seconds]
costrouc has quit [Quit: costrouc]
costrouc has joined #nixos
alexbakker has quit [Remote host closed the connection]
mitchellh has quit [Ping timeout: 260 seconds]
qyliss has quit [Remote host closed the connection]
Lun_rLambda has joined #nixos
hanetzer has quit [Quit: ZNC 1.8.2 - https://znc.in]
alexbakker has joined #nixos
hanetzer has joined #nixos
qyliss has joined #nixos
MarkRBM has joined #nixos
mitchellh has joined #nixos
drewc has joined #nixos
bvdw has quit [Quit: The Lounge - https://thelounge.chat]
bvdw has joined #nixos
<{^_^}> [nixpkgs] @ryantm opened pull request #101465 → sonar-scanner-bin: rename to sonar-scanner-cli, 3.3.0.1492 -> 4.5.0.2216 → https://git.io/JTaLo
<pinpox> Hi, I'd like to package this app for nixpkgs https://github.com/solusipse/fiche Could anyone give me a rough guidance on how to do that correctly?
<pinpox> It should include the service aswell, so it can be started like other services
FRidh has quit [Quit: Konversation terminated!]
eoli3n_ has quit [Ping timeout: 258 seconds]
pingiun has joined #nixos
whatisRT has quit [Ping timeout: 240 seconds]
sangoma has quit [Quit: WeeChat 2.9]
<mikroskeem> i added more information under https://github.com/NixOS/nixpkgs/issues/73800
<{^_^}> #73800 (by deliciouslytyped, 48 weeks ago, open): Migrate to cgroupsv2
<mikroskeem> hopefully this helps with cg v2 migration plans :)
<aminechikhaoui> pinpox that should be fairly simple as it doesn't look like that app has external dependencies other that what stdenv.mkDerivation would provide already
<aminechikhaoui> running services would require adding a NixOS module if you're planning to run it on NixOS
<mikroskeem> (hunting cg v2 myself mainly because monitoring per-cgroup psi has made my life a lot easier)
<pinpox> aminechikhaoui: is adding a nixOS module a problem? I've not done that before
<pinpox> I've forked and checked out nixpgks, I'll try to follow the guide and create a PR draft so I can ask about the progress
<{^_^}> [nixpkgs] @grahamc merged pull request #101416 → tailscale: Include version in build flags → https://git.io/JTgdZ
<{^_^}> [nixpkgs] @grahamc pushed 2 commits to master: https://git.io/JTaq1
fendor_ has joined #nixos
<pinpox> aminechikhaoui: Could you name me a similar application's package I can look at to adapt it?
fendor has quit [Ping timeout: 260 seconds]
gustavderdrache has joined #nixos
eoli3n_ has joined #nixos
<aminechikhaoui> pinpox I would suggest following the manual, https://nixos.org/manual/nixpkgs/stable/#idm140737320651584 has a section on the standard environment
<{^_^}> [nixpkgs] @TredwellGit opened pull request #101467 → chromium: use official build settings → https://git.io/JTamQ
dbmikus has joined #nixos
eoli3n_ has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @alirezameskin opened pull request #101468 → zktree:: init at 0.0.1 → https://git.io/JTaYO
dbmikus has quit [Ping timeout: 260 seconds]
whatisRT has joined #nixos
<pinpox> aminechikhaoui: Ok, I'll try that. I'm just now looking more thorougly at the repo, it seems like it hasn't been updated in 3 years. The tool seems to work file at https://termbin.com, is that something I should be concerened about? still worth packaging?
<aminechikhaoui> pinpox I haven't actually checked the tool, but yeah if you were planning to add it to nixpkgs maybe it's not a good idea if it's not actively maintained or widely used as every package addition increases the maintenance burden for nixpkgs. But if you were planning to package it for your personal use it can be done outside of nixpkgs as well.
<{^_^}> [nixpkgs] @zowoq merged pull request #101442 → valgrind: disable on darwin → https://git.io/JT2u6
<{^_^}> [nixpkgs] @zowoq pushed 2 commits to master: https://git.io/JTaOs
eoli3n has quit [Ping timeout: 240 seconds]
fendor_ is now known as fendor
<{^_^}> [nixpkgs] @zowoq merged pull request #101453 → docker: use upstream repo for containerd → https://git.io/JT2FT
<{^_^}> [nixpkgs] @zowoq pushed commit from @SuperSandro2000 to master « docker: use upstream repo for containerd »: https://git.io/JTaOg
ericsagnes has quit [Ping timeout: 260 seconds]
dbmikus has joined #nixos
<{^_^}> [nixpkgs] @pinpox opened pull request #101469 → initial commit based on gnu-hello → https://git.io/JTa3L
davidv7 has quit [Ping timeout: 272 seconds]
<pinpox> aminechikhaoui: I have opened a draft pull-request for further discussion, adapted from the gnu-hello example
Soo_Slow has quit [Quit: Soo_Slow]
dbmikus has quit [Ping timeout: 260 seconds]
<pinpox> aminechikhaoui: Don't really know how widely it is used. I find it very handy and have been using it for years, It's just a pastebin that you can use with netcat like this "cat file.txt | nc termbin.com 9999"
Rusty1 has joined #nixos
<pinpox> Has a few open issues, but nothing breaking
werner291 has joined #nixos
<ptrcmd> I want to enable sof-firware on the default nixos 20.03 kernel..and I added hardware.firmware = [ pkgs.sof-firmware ]; to my configuration.nix
<ptrcmd> but it seems like this doesn't work
<{^_^}> [nixpkgs] @endocrimes opened pull request #101470 → p4: 2020.1.1991450 -> 2020.1.2007551 → https://git.io/JTasm
ericsagnes has joined #nixos
Chiliparrot has joined #nixos
turbo_MaCk has joined #nixos
<ptrcmd> when I run "dmesg | grep sof", I don't see any output related to the sof-audio-pci
Ariakenom has quit [Quit: Leaving]
<ptrcmd> I am on linux 5.4.72
<turbo_MaCk> Was there any breaking change in nixos unstable? I'm not able to rebuild my system with --upgrade -- fails on user-environment.drv
cfricke has quit [Quit: WeeChat 2.9]
<jared-w> If you're using nvidia drivers, nvidia borked their software on linux 5.9
<{^_^}> [nixpkgs] @aquarial closed pull request #101279 → redshift-plasma-applet: update patchPhase to fix manual updates, don't use upstream → https://git.io/JTu1V
<turbo_MaCk> I'm not. I have thinkpad with intel and desktop with AMD.
<jared-w> Hmm. Not sure, then. In general, nixos unstable makes breaking changes relatively-ish often and if you're going to update frequently, you'll likely want to use a pinned nixpkgs version rather than channels so that you can roll forward as well as backwards
<turbo_MaCk> ah got it... I think the problem is in /nix/store/v3m40ghhnl2xf9lj7q7bxq2bffmdacxa-aspell-dict-en-science.drv
<gchristensen> turbo_MaCk: probably should post more information :)
<dutchie> turbo_MaCk: there's a fix for that merged
<{^_^}> #101194 (by acowley, 2 days ago, merged): aspellDicts: force grep to treat dictionaries as text files
<turbo_MaCk> I'm not looking for help with debugging just yet. Just asked in I missed some recent issue
ddellacosta has joined #nixos
<gchristensen> aye
<turbo_MaCk> dutchie: thanks! I might just disable it now as it not important enough to bother with overlay.
<{^_^}> [nixpkgs] @ajs124 closed pull request #94133 → firmwareLinuxNonFree: 2020-05-19 -> 2020-07-21 → https://git.io/JJuVt
Serus has joined #nixos
alp has quit [Ping timeout: 272 seconds]
<ptrcmd> how should I debug why sof-firmware is not included in the firmware folder?
ManiacOfMadness has quit [Ping timeout: 246 seconds]
justanotheruser has joined #nixos
<ptrcmd> umm, I was a bit confused. looks like the firmware is there, but the driver is not
<ptrcmd> I can see sof under /run/current-system/firmware/intel
<{^_^}> [nixpkgs] @hrdinka merged pull request #100162 → pcsx2: multiple improvements → https://git.io/JTJS1
<{^_^}> [nixpkgs] @hrdinka pushed 3 commits to master: https://git.io/JTank
<turbo_MaCk> ptrcmd: Sorry I joined late to see what you're trying to solve. Can you sum it up in case I can help?
johnny101 has quit [Ping timeout: 258 seconds]
<ptrcmd> turbo_MaCk: I am to get microphone to work on my system
<ptrcmd> turbo_MaCk: I am using a dell inspiron 7590 w/ nixos 20.03
<ptrcmd> turbo_MaCk: and linux 5.4.72 from nixos stable
<ptrcmd> turbo_MaCk: and I added hardware.firmware = [ pkgs.sof-firmware ]; to my configuration.nix
<ptrcmd> turbo_MaCk: currently it seems that this is not enough
<turbo_MaCk> ptrcmd: first thing I would check is if you have sound.enable = true; hardware.pulseaudio.enable = true; hardware.pulseauidio.package = pkgs.pulseaudioFull;
<{^_^}> [nixpkgs] @aquarial opened pull request #101471 → redshift: 1.0.18 -> latest src → https://git.io/JTanP
<ptrcmd> turbo_MaCk: yes, I have these
<turbo_MaCk> ptrcmd: what kernel are you using?
<ptrcmd> turbo_MaCk: linux 5.4.72
<ptrcmd> turbo_MaCk: from nixos 20.03
whatisRT has quit [Quit: ZNC 1.7.5 - https://znc.in]
<turbo_MaCk> what I would try is to set boot.kernelPackages = pkgs.linuxPackages_latest;
<ptrcmd> turbo_MaCk: thanks. I am going to try this option now.
<ptrcmd> turbo_MaCk: oh well, building this config is going to take sometime on my laptop
<ptrcmd> oh I was wrong. the build just completed heh
<turbo_MaCk> ptrcmd: let me know if it helped. Anyway I'm worried I don't have any other advice other than looking into kernel.
<ptrcmd> so I am going to reboot and see if it works
avn has joined #nixos
<turbo_MaCk> sounds good
<ptrcmd> turbo_MaCk: hmm..so, with this change, I can see my mic in pavucontrol
<turbo_MaCk> fire some some sw to test if it works :)
<ptrcmd> turbo_MaCk: I wasn't able to get my mic to work (I tested it in audacity) before my laptop hanged :(
<ptrcmd> turbo_MaCk: looks like it's not stable
<ptrcmd> turbo_MaCk: the linuxPackages_latest stuff
<ptrcmd> turbo_MaCk: on my laptop
<ptrcmd> sad
<turbo_MaCk> you can try other version of kernel packages. Anyway it will eventually be supported byt these driver things come hand in hand with kernel.
<turbo_MaCk> you can use nix repl and then :load <nixpkgs> to explore te attributes in kernelPackages
<{^_^}> [rfcs] @dasJ closed pull request #79 → [RFC 0079] No more direct pushes to master and release branches → https://git.io/JT0c3
<ptrcmd> turbo_MaCk: thanks :)
<ptrcmd> yeah :l <nixpkgs> is handy
<turbo_MaCk> good luck resolving this. I'll hang around there in case you make some progress feel free to ping.
<ptrcmd> thanks :)
<{^_^}> [nixpkgs] @bjornfor opened pull request #101472 → parallel: fix calculation of max line length → https://git.io/JTaW2
growpotkin has joined #nixos
dansho has joined #nixos
<turbo_MaCk> in worst case you'll be stuck with RMS style opsec device... you'll just need to find a way to break your webcam as well :D
<pinpox> I submitted my first PR, would anyone give some feedback or hints? https://github.com/NixOS/nixpkgs/pull/101469
<{^_^}> #101469 (by pinpox, 1 hour ago, open): fiche: init at version 0.9.1
dansho has quit [Client Quit]
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
werner293 has joined #nixos
<turbo_MaCk> pinpox: nice first PR, good work
erasmas has joined #nixos
<pinpox> turbo_MaCk: Thanks. Could you help me out on the last comment? I want to have a service aswell for it
werner291 has quit [Ping timeout: 272 seconds]
werner293 is now known as werner291
meh` has joined #nixos
jabster28 has quit [Ping timeout: 260 seconds]
<turbo_MaCk> pinpox: I've already commented. With the service -- I think it would be better to do it in separate PR.
<pinpox> turbo_MaCk: Thanks, had not refreshed the page. I'll do that separately then
<{^_^}> [nixpkgs] @kevincox merged pull request #100685 → brave: 1.12.112 -> 1.15.76 → https://git.io/JTGlQ
<{^_^}> [nixpkgs] @kevincox pushed 2 commits to master: https://git.io/JTa8U
<pinpox> If there are no further required changes it's up for merging
nDuff has joined #nixos
meh`_ has joined #nixos
<turbo_MaCk> pinpox: you'll need to wait for commiter (which I'm not, I'm just maintainer with no write to master). Reviews from maintainers are only to help commiters.
<pinpox> turbo_MaCk: Ok, I see. I made your changes and pushed, hope that is correct now
meh` has quit [Ping timeout: 246 seconds]
malook has joined #nixos
Chiliparrot has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
<{^_^}> [nixpkgs] @Ma27 opened pull request #101473 → nixos/nixos-build-vms: use `pkgs.qemu` for virtualisation → https://git.io/JTa4L
davidak[m] has quit [Ping timeout: 244 seconds]
Jake[m] has quit [Ping timeout: 246 seconds]
jabster28 has joined #nixos
tristan[m] has quit [Ping timeout: 246 seconds]
alp has joined #nixos
zupo has joined #nixos
neothefox has quit [Ping timeout: 244 seconds]
<{^_^}> [nixpkgs] @andir merged pull request #101452 → mariadb: 10.4.14 -> 10.4.15 (CVE-2020-15180) → https://git.io/JT25f
<{^_^}> [nixpkgs] @andir pushed 2 commits to master: https://git.io/JTa4R
itc-ger has joined #nixos
<{^_^}> [nixpkgs] @worldofpeace merged pull request #101274 → nixos/display-managers: add sessionData.desktops to XDG_DATA_DIRS → https://git.io/JTu6O
<{^_^}> [nixpkgs] @worldofpeace pushed 2 commits to master: https://git.io/JTa4E
georg[m] has quit [Ping timeout: 246 seconds]
ThaEwat has quit [Ping timeout: 246 seconds]
<{^_^}> [nixpkgs] @worldofpeace pushed to release-20.09 « nixos/display-managers: add sessionData.desktops to XDG_DATA_DIRS »: https://git.io/JTa4o
turbo_MaCk has quit [Ping timeout: 265 seconds]
yusdacra[m] has quit [Ping timeout: 246 seconds]
yusdacra[m] has joined #nixos
Jake[m] has joined #nixos
tristan[m] has joined #nixos
fgaz has quit [Ping timeout: 246 seconds]
davidak[m] has joined #nixos
fgaz has joined #nixos
neothefox has joined #nixos
ThaEwat has joined #nixos
georg[m] has joined #nixos
<{^_^}> [nixpkgs] @primeos pushed to master « chromiumDev: 88.0.4292.2 -> 88.0.4298.4 »: https://git.io/JTa4Q
eoli3n has joined #nixos
jabster28 has quit [Ping timeout: 246 seconds]
malook has quit [Quit: malook]
jabster28 has joined #nixos
itc-ger has quit [Quit: Leaving]
c_wraith has quit [Ping timeout: 256 seconds]
c_wraith has joined #nixos
hnOsmium0001 has joined #nixos
darkharmony9999[ has quit [Quit: Idle for 30+ days]
disasm has joined #nixos
rajivr has quit [Quit: Connection closed for inactivity]
whald has quit [Remote host closed the connection]
butcher has quit [Remote host closed the connection]
rsynnest_ has joined #nixos
Izorkin has quit [Ping timeout: 246 seconds]
Izorkin has joined #nixos
Izorkin has quit [Ping timeout: 246 seconds]
<{^_^}> [nixpkgs] @grahamc merged pull request #101470 → p4: 2020.1.1991450 -> 2020.1.2007551 → https://git.io/JTasm
<{^_^}> [nixpkgs] @grahamc pushed 2 commits to master: https://git.io/JTa0i
dbmikus has joined #nixos
johnny101 has joined #nixos
<{^_^}> [nixpkgs] @jonringer merged pull request #101463 → [20.09] mariadb: 10.4.14 -> 10.4.15 (CVE-2020-15180) → https://git.io/JTaJZ
<{^_^}> [nixpkgs] @jonringer pushed commit from @stigtsp to release-20.09 « mariadb: 10.4.14 -> 10.4.15 »: https://git.io/JTa09
Izorkin has joined #nixos
kyxie is now known as katrin
dbmikus has quit [Ping timeout: 260 seconds]
Izorkin has quit [Ping timeout: 246 seconds]
philr has quit [Ping timeout: 246 seconds]
cole-h has joined #nixos
Izorkin has joined #nixos
sangoma has joined #nixos
werner292 has joined #nixos
__monty__ has joined #nixos
gnidorah has quit [Quit: Connection closed for inactivity]
werner291 has quit [Ping timeout: 272 seconds]
werner292 is now known as werner291
<{^_^}> [nixpkgs] @B4dM4n opened pull request #101474 → openjdk14: fix i686 bootstrap build → https://git.io/JTaEj
<{^_^}> [nixpkgs] @mweinelt merged pull request #101263 → python3Packages.ftputil: fix tests on darwin → https://git.io/JTu40
<{^_^}> [nixpkgs] @mweinelt pushed 2 commits to master: https://git.io/JTaun
<{^_^}> [nixpkgs] @jD91mZM2 opened pull request #101475 → flake.nix: Make all nixosSystems overridable → https://git.io/JTauB
never_released_ has quit [Ping timeout: 264 seconds]
never_released has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 opened pull request #101476 → pythonPackages.pystray: mark linux only → https://git.io/JTauH
lsix has quit [Quit: WeeChat 2.9]
eoli3n_ has joined #nixos
alp has quit [Ping timeout: 272 seconds]
eoli3n has quit [Ping timeout: 256 seconds]
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
dbmikus has joined #nixos
<{^_^}> [nixpkgs] @marius851000 opened pull request #101477 → plasma-workspace: add glib-networking and gstreamer as dependancies (for environment variable) → https://git.io/JTazQ
<simpson> nixpkgs question: Is there a general practice for wiring up languages whose toolchains have some sort of pure execution, so that both the language toolchain and Nix agree that a certain binary is sending certain Nix-managed inputs to outputs purely?
<tpw_rules> fetchFromGitHub is behaving weird for me with regard to revisions. i have my src = fetchFromGitHub {rev="v1", sha256="abc"} and the derivation works. i want to update to v2 so i set src = fetchFromGitHub {rev="v2", sha256="abc"} because i don't know the new hash, but it still builds v1. i change the hash to something bogus, it says the hash it got is "def", so i put src = fetchFromGitHub {rev="v2", sha256="def"} and now the derivation
<tpw_rules> builds v2
<simpson> IOW is there an accepted way to extend the acceptable languages for writing builders?
<{^_^}> [nixpkgs] @doronbehar opened pull request #101478 → tectonic: 0.1.17 -> 0.2.0 → https://git.io/JTagJ
<gchristensen> simpson: like fancylang.mkDerivation { buildPhase = ''fancy lang syntax'';} ?
<{^_^}> [nixpkgs] @doronbehar merged pull request #101364 → nixos/doc: Mention how to contribute to it → https://git.io/JTgfw
<{^_^}> [nixpkgs] @doronbehar pushed 2 commits to master: https://git.io/JTagI
<{^_^}> [nixpkgs] @dywedir merged pull request #101177 → skim: 0.8.2 -> 0.9.1, use fetchCrate → https://git.io/JTRS1
<{^_^}> [nixpkgs] @dywedir pushed 2 commits to master: https://git.io/JTagO
lewo` has joined #nixos
pittma_ has joined #nixos
ctp__ has joined #nixos
gleber_ has joined #nixos
jared-w_ has joined #nixos
jbetz_ has joined #nixos
nlofaro_ has joined #nixos
eacameron_ has joined #nixos
alunduil_ has joined #nixos
aria_ has joined #nixos
kozowu_ has joined #nixos
jbox has joined #nixos
jfhbrook_ has joined #nixos
kitemikaze__ has joined #nixos
lukego_ has joined #nixos
gluegadget_ has joined #nixos
sam_w_ has joined #nixos
hamishmack_ has joined #nixos
thoughtpolice_ has joined #nixos
cstrahan_ has joined #nixos
mumuluxi_ has joined #nixos
packer_ has joined #nixos
eddyb[legacy]_ has joined #nixos
<{^_^}> [nixpkgs] @jonringer merged pull request #101476 → pythonPackages.pystray: mark linux only → https://git.io/JTauH
<{^_^}> [nixpkgs] @jonringer pushed commit from @SuperSandro2000 to master « pythonPackages.pystray: mark linux only »: https://git.io/JTagl
rizary_ has joined #nixos
jbox is now known as Guest81201
omnigoat_ has joined #nixos
drakonis has quit [Ping timeout: 260 seconds]
rotaerk has quit [Ping timeout: 260 seconds]
lopsided98_ has joined #nixos
enteee_ has joined #nixos
simonpe^1 has joined #nixos
weechat_2 has joined #nixos
nikola3 has joined #nixos
test128383[m]1 has joined #nixos
DavHau[m]1 has joined #nixos
kaliumxyz has quit [Remote host closed the connection]
bk1603[m]1 has joined #nixos
superchonk[m]1 has joined #nixos
nue1 has joined #nixos
a4wc6n[m]1 has joined #nixos
nahamu_ has joined #nixos
<pumpy> if i have services.xserver.windowManager.i3 enabled, how do i make it use the i3-gaps package for i3 instead of vanilla i3 pls?
simonpe^^ has quit [*.net *.split]
ipv6[m] has quit [*.net *.split]
SpaghettiCthulhu has quit [*.net *.split]
thequux[m] has quit [*.net *.split]
AmitLevy[m] has quit [*.net *.split]
picme[m] has quit [*.net *.split]
callahad[m] has quit [*.net *.split]
zie[m] has quit [*.net *.split]
jojosch|Johannes has quit [*.net *.split]
superchonk[m] has quit [*.net *.split]
test128383[m] has quit [*.net *.split]
qrilka[m] has quit [*.net *.split]
mzumquadrat[m] has quit [*.net *.split]
DavHau[m] has quit [*.net *.split]
DanP[m] has quit [*.net *.split]
mnm[m] has quit [*.net *.split]
cchalc[m] has quit [*.net *.split]
a4wc6n[m] has quit [*.net *.split]
tilcreator has quit [*.net *.split]
matute_[m] has quit [*.net *.split]
maxfieldl[m] has quit [*.net *.split]
mica[m] has quit [*.net *.split]
jehova[m] has quit [*.net *.split]
crazazy[m] has quit [*.net *.split]
mcaju has quit [*.net *.split]
Hirmes[m] has quit [*.net *.split]
dominicusin[m] has quit [*.net *.split]
octowan[m] has quit [*.net *.split]
aquarial has quit [*.net *.split]
treed[m] has quit [*.net *.split]
wak-work has quit [*.net *.split]
humancalico[m] has quit [*.net *.split]
lukebfox[m] has quit [*.net *.split]
bk1603[m] has quit [*.net *.split]
TheSirC[m] has quit [*.net *.split]
matthewkenigsber has quit [*.net *.split]
q3k[m] has quit [*.net *.split]
chreekat[m] has quit [*.net *.split]
Minijackson[m] has quit [*.net *.split]
hazel[m] has quit [*.net *.split]
njha[m] has quit [*.net *.split]
ongy[m] has quit [*.net *.split]
aanderse has quit [*.net *.split]
CRTified[m] has quit [*.net *.split]
ryantm has quit [*.net *.split]
lopsided98 has quit [*.net *.split]
domenkozar[m] has quit [*.net *.split]
colemickens has quit [*.net *.split]
Guest62129 has quit [*.net *.split]
nownpl has quit [*.net *.split]
jb55 has quit [*.net *.split]
cantstanya has quit [*.net *.split]
est31 has quit [*.net *.split]
gxt has quit [*.net *.split]
oida has quit [*.net *.split]
kreyren has quit [*.net *.split]
ninjin has quit [*.net *.split]
joey has quit [*.net *.split]
xelxebar has quit [*.net *.split]
andreas303 has quit [*.net *.split]
nicoo has quit [*.net *.split]
packer_ is now known as packer
gleber_ is now known as gleber
nlofaro_ is now known as nlofaro
kitemikaze__ is now known as kitemikaze_
ctp__ is now known as ctp
jbetz_ is now known as jbetz
<{^_^}> [nixpkgs] @jtojnar pushed 3 commits to gnome-3.38: https://git.io/JTa2n
alunduil_ is now known as alunduil
jared-w_ is now known as jared-w
rizary_ is now known as rizary
aria_ is now known as aria
kozowu_ is now known as kozowu
thoughtpolice_ is now known as thoughtpolice
eacameron_ is now known as eacameron
hamishmack_ is now known as hamishmack
lukego_ is now known as lukego
gluegadget_ is now known as gluegadget
cstrahan_ is now known as cstrahan
pittma_ is now known as pittma
sam_w_ is now known as sam_w
omnigoat_ is now known as omnigoat
eddyb[legacy]_ is now known as eddyb[legacy]
<supersandro2000> Anyone else working on pyobjc? I am planning to get it to python3 including the massive amount of "addons"
<supersandro2000> also adding it to everywhere where it is missing
nahamu_ is now known as nahamu
<supersandro2000> 🤦 wrong repo...
<pumpy> found it!
<{^_^}> [nixpkgs] @ryantm merged pull request #101465 → sonar-scanner-bin: rename to sonar-scanner-cli, 3.3.0.1492 -> 4.5.0.2216 → https://git.io/JTaLo
<{^_^}> [nixpkgs] @ryantm pushed 2 commits to master: https://git.io/JTa2R
stree has quit [Excess Flood]
stree has joined #nixos
jfhbrook_ is now known as jfhbrook
TheSirC[m] has joined #nixos
maxfieldl[m] has joined #nixos
<{^_^}> [nixpkgs] @peti pushed 193 commits to haskell-updates: https://git.io/JTa2S
crazazy[m] has joined #nixos
CRTified[m] has joined #nixos
etu has joined #nixos
dominicusin[m] has joined #nixos
mcaju has joined #nixos
tilcreator has joined #nixos
f0x has joined #nixos
cchalc[m] has joined #nixos
zie[m] has joined #nixos
jehova[m] has joined #nixos
qrilka[m] has joined #nixos
mzumquadrat[m] has joined #nixos
ryantm has joined #nixos
matute_[m] has joined #nixos
octowan[m] has joined #nixos
allgreed has joined #nixos
picme[m] has joined #nixos
chreekat[m] has joined #nixos
njha[m] has joined #nixos
thequux[m] has joined #nixos
q3k[m] has joined #nixos
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « haskell-splitmix: update override for the latest version »: https://git.io/JTa27
DanP[m] has joined #nixos
mnm[m] has joined #nixos
Minijackson[m] has joined #nixos
wak-work has joined #nixos
AmitLevy[m] has joined #nixos
jojosch|Johannes has joined #nixos
ipv6[m] has joined #nixos
matthewkenigsber has joined #nixos
treed[m] has joined #nixos
lukebfox[m] has joined #nixos
hazel[m] has joined #nixos
humancalico[m] has joined #nixos
SpaghettiCthulhu has joined #nixos
callahad[m] has joined #nixos
domenkozar[m] has joined #nixos
<{^_^}> [nixpkgs] @jtojnar pushed to gnome-3.38 « release-notes: Mention GNOME 3.38 »: https://git.io/JTaav
aquarial has joined #nixos
aanderse has joined #nixos
mica[m] has joined #nixos
ongy[m] has joined #nixos
colemickens has joined #nixos
<{^_^}> [nixpkgs] @makefu closed pull request #99547 → rbutil: init at 1.4.1 → https://git.io/JU5jm
Izorkin has quit [Ping timeout: 272 seconds]
eoli3n_ has quit [Ping timeout: 272 seconds]
sangoma has quit [Read error: Connection reset by peer]
rotaerk has joined #nixos
Izorkin has joined #nixos
aminechikhaoui has joined #nixos
exco has joined #nixos
rotaerk has quit [Ping timeout: 244 seconds]
Izorkin has quit [Ping timeout: 256 seconds]
dbmikus has quit [Ping timeout: 264 seconds]
xelxebar has joined #nixos
ninjin has joined #nixos
cantstanya has joined #nixos
andreas303 has joined #nixos
werner292 has joined #nixos
captn3m0- has joined #nixos
joey has joined #nixos
drakonis has joined #nixos
werner291 has quit [Ping timeout: 272 seconds]
werner292 is now known as werner291
kaliumxyz has joined #nixos
sangoma has joined #nixos
oida has joined #nixos
<betaboon> anyone knows how to get `python-smbus` working? i cant even figure out how other distributions build it
gxt has joined #nixos
est31 has joined #nixos
domogled has quit [Ping timeout: 260 seconds]
zupo has joined #nixos
<pumpy> new release come soon?
<cole-h> When it's ready :)
dbmikus has joined #nixos
jb55 has joined #nixos
werner291 has quit [Quit: werner291]
<{^_^}> [nixpkgs] @primeos pushed to master « chromiumDev: Mark as broken for now »: https://git.io/JTarJ
samueldr_ is now known as samueldr
samueldr has quit [Changing host]
samueldr has joined #nixos
MichaelRaskin has joined #nixos
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « haskell-splitmix: update override for the latest version »: https://git.io/JTarl
jbox has joined #nixos
nicoo has joined #nixos
<{^_^}> [nixpkgs] @Flakebi opened pull request #101480 → salt: 3001.1 -> 3002 and change maintainer → https://git.io/JTarr
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<aanderse> pumpy: last time i heard a "best guess" it was this coming monday
<pumpy> great
thc202 has quit [Ping timeout: 240 seconds]
cosimone has joined #nixos
<{^_^}> [nixpkgs] @makefu opened pull request #101481 → cozy-audiobooks: 0.6.7 -> 0.7.2 → https://git.io/JTao2
zupo has joined #nixos
dbmikus has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage2nix: update list of broken builds »: https://git.io/JTaoj
cosimone has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @m1cr0man opened pull request #101482 → nixos/acme: lego run when account is missing → https://git.io/JTaKU
<{^_^}> [nixpkgs] @Flakebi opened pull request #101483 → birdtray: 1.8.1 -> 1.9.0 → https://git.io/JTaKT
cosimone has joined #nixos
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage-packages.nix: automatic Haskell package set update »: https://git.io/JTaKk
Guest8470 has joined #nixos
<Guest8470> Hello. Does anyone know how to link `libatomic.so.1`? I need it in an autoPatchElf step.
<clever> ,locate libatomic.so.1
<{^_^}> Found in packages: gcc-unwrapped.lib
emmanuel_erc has joined #nixos
rotaerk has joined #nixos
<emmanuel_erc> hello there
<Guest8470> nice. I'll try. Btw, is there a command line version of what you did?
<emmanuel_erc> Is it normal for some attributes to be not present when using overrideAttrs?
Jonathan20 has joined #nixos
<Jonathan20> Hey, quick question. I am trying to use SDL2 in an app of mine, I am getting link errors. I think the problem might have to do with the `dontDisableStatic` parameter in the Nix expression, how do I change that?
<Guest8470> clever: ^^
<Jonathan20> (In a shell.nix)
<emmanuel_erc> In particular, I 'm trying to override the py attribute in the derivation of libxml2 (which is in nixpkgs btw)
domogled has joined #nixos
marek has joined #nixos
marek has quit [Changing host]
<clever> ,locate
<{^_^}> Use ,locate <filename> to find packages containing such a file. Powered by nix-index (local installation recommended) https://github.com/bennofs/nix-index
<clever> Guest8470: ^
<Guest8470> clever: Thank you :)
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « haskell-skylighting: update override for the new version »: https://git.io/JTaKu
meh`_ has quit [Ping timeout: 264 seconds]
<Jonathan20> `pkgs.SDL2.override {withStatic = true;}` is not working.
maxdevjs has joined #nixos
<Jonathan20> `error: cannot coerce a set to a string, at . . .`
<cole-h> Might need to wrap parens around it.
<cole-h> (pkgs.SDL2.override { withStatic = true; })
<Jonathan20> Oh, thanks!
<cole-h> If it's in a list, that's why. Otherwise, it's seeing two different list entries: `pkgs.SDL2.override` and `{ withStatus = true; }`
<{^_^}> [nixpkgs] @ursi opened pull request #101484 → elmPackages: add node packages → https://git.io/JTa6U
<Jonathan20> Right, makes sense. I am not very fluent at the nix language.
<emmanuel_erc> Actually, got a better question. I think I understand why I'm running into a problem.
alp has joined #nixos
orivej has joined #nixos
<{^_^}> [nixpkgs] @peti pushed 2 commits to haskell-updates: https://git.io/JTa63
cosimone has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage-packages.nix: automatic Haskell package set update »: https://git.io/JTa6n
<emmanuel_erc> in the definition of overrideAttrs, it seems that mkDervation is already called before you override any of the attributes. The attribute that I want to override seems to only be there "before" the call to mkDerivation.
cosimone has joined #nixos
cosimone has quit [Client Quit]
<{^_^}> [nixpkgs] @sikmir opened pull request #101485 → openscenegraph: enable on darwin → https://git.io/JTa6E
<{^_^}> [nixpkgs] @primeos merged pull request #101362 → monetdb: 11.37.11 -> 11.39.5 → https://git.io/JTgvw
<{^_^}> [nixpkgs] @primeos pushed to master « monetdb: 11.37.11 -> 11.39.5 (#101362) »: https://git.io/JTa61
kreyren has joined #nixos
symphorien[m] has joined #nixos
<{^_^}> [nixpkgs] @primeos merged pull request #99297 → intel-media-driver: 20.2.0 -> 20.3.0 → https://git.io/JUS9J
<{^_^}> [nixpkgs] @primeos pushed to master « intel-media-driver: 20.2.0 -> 20.3.0 (#99297) »: https://git.io/JTaiJ
<{^_^}> [nixpkgs] @asdf8dfafjk opened pull request #101486 → [Unsuitable for PR] Microsoft Edge Dev channel → https://git.io/JTaiI
<{^_^}> [cabal2nix] @peti pushed to master « doc: provide a little welcome sentence on the index page »: https://git.io/JTai8
<{^_^}> [nixpkgs] @zimbatm opened pull request #101487 → direnv: 2.23.0 -> 2.23.1 → https://git.io/JTaia
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage2nix: update list of broken builds »: https://git.io/JTaio
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage-packages.nix: automatic Haskell package set update »: https://git.io/JTaiM
knupfer1 has joined #nixos
knupfer1 is now known as knupfer
<{^_^}> [nixpkgs] @peti pushed 29 commits to haskell-updates: https://git.io/JTaiF
<{^_^}> [nixpkgs] @peti pushed 29 commits to haskell-updates: https://git.io/JTaPJ
dbmikus has joined #nixos
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage2nix: update list of broken builds »: https://git.io/JTaPY
<symphorien[m]> a question about the removal of the security.acme.certs.foo.user option in 20.09
<symphorien[m]> I need a certificate for a turnserver
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hasura-graphql-engine: mark build as broken »: https://git.io/JTaPZ
<symphorien[m]> I now have `user = "turnserver";`
<symphorien[m]> but then the acme challenge file is owned by acme user and turnserver group
<symphorien[m]> and is not readable by nginx
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage-packages.nix: automatic Haskell package set update »: https://git.io/JTaPW
<symphorien[m]> So I don't really know how to proceed from there
<cole-h> Add nginx to the turnserver groupm maybe?
<cole-h> s/groupm/group,/
pr06lefs has joined #nixos
dbmikus has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @primeos opened pull request #101488 → git: 2.29.0 -> 2.29.1 → https://git.io/JTaPg
<symphorien[m]> mmh I'll try that
Jonathan20 has quit [Remote host closed the connection]
oida has quit [Ping timeout: 240 seconds]
dbmikus has joined #nixos
nschoe has quit [Ping timeout: 244 seconds]
<{^_^}> [nixpkgs] @buckley310 opened pull request #101489 → [20.09] brave: 1.12.112 -> 1.15.76 → https://git.io/JTaPd
<{^_^}> [nixpkgs] @primeos merged pull request #101488 → git: 2.29.0 -> 2.29.1 → https://git.io/JTaPg
<{^_^}> [nixpkgs] @primeos pushed to staging « git: 2.29.0 -> 2.29.1 (#101488) »: https://git.io/JTaPx
<{^_^}> [nixpkgs] @peti pushed 2 commits to haskell-updates: https://git.io/JTaXf
nue1 is now known as nownpl
<{^_^}> [nixpkgs] @peti pushed 16 commits to haskell-updates: https://git.io/JTaXZ
domogled has quit [Remote host closed the connection]
<fzakaria> How can I go about getting commit access to https://github.com/NixOS/mvn2nix-maven-plugin ?
<fzakaria> I would love to maintain it; it hasn't seen any activity in a while.
<fzakaria> Happy to just run my fork also but thought I would inquire.
berberman has joined #nixos
ericsagnes has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @buckley310 opened pull request #101491 → [20.03] brave: 1.11.97 -> 1.15.76 → https://git.io/JTaXu
berberman_ has quit [Ping timeout: 260 seconds]
n9nes has joined #nixos
<risson> ugh sshd giving an error about permissions on / directory
<risson> but why
hmpffff has quit [Ping timeout: 272 seconds]
mananamenos_ has quit [Ping timeout: 265 seconds]
oida has joined #nixos
hmpffff has joined #nixos
jbox has quit [Ping timeout: 260 seconds]
<symphorien[m]> it works thanks !
supercoven has quit [Ping timeout: 244 seconds]
<{^_^}> [nixpkgs] @Magicloud opened pull request #101493 → virtualbox: 6.1.14 -> 6.1.16 → https://git.io/JTa1Z
ericsagnes has joined #nixos
meh` has joined #nixos
meh` has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @peti merged pull request #100832 → Update Haskell package set to LTS 16.19 (plus other fixes) → https://git.io/JTc9V
<{^_^}> [nixpkgs] @peti pushed 18 commits to master: https://git.io/JTa1S
ris has joined #nixos
<{^_^}> [nixpkgs] @kevincox merged pull request #99931 → cudatext: 1.111.0 -> 1.115.0 → https://git.io/JUx63
<{^_^}> [nixpkgs] @kevincox pushed 2 commits to master: https://git.io/JTa1h
NinjaTrappeur has quit [Ping timeout: 260 seconds]
<tpw_rules> fetchFromGitHub is behaving weird for me. i have my src = fetchFromGitHub {rev="v1", sha256="abc"} and the derivation works. i want to update to v2 so i set src = fetchFromGitHub {rev="v2", sha256="abc"} because i don't know the new hash, but it still builds v1. i change the hash to something bogus, it says the hash it got is "def", so i put src = fetchFromGitHub {rev="v2", sha256="def"} and now the derivation builds v2
<cole-h> That's because the source is cached based on that sha256 hash.
<cole-h> So if you don't change it, it will think it doesn't need to fetch anything new, even though the rev changed.
<cole-h> ,tofu
<{^_^}> To get a sha256 hash of a new source, you can use the Trust On First Use model: use probably-wrong hash (for example: 0000000000000000000000000000000000000000000000000000), then replace it with the correct hash Nix expected. For inserting 52 0's in vim: <esc>52i0<esc>
<tpw_rules> i mean i used a certainly wrong hash and it didn't work ;P
<tpw_rules> but that's good to know. thank you
<cole-h> It's not "certainly wrong" if it's an existing hash :)
<cole-h> It might be wrong in the context, but it exists and thus is not wrong-wrong.
zakame has quit [Ping timeout: 260 seconds]
<pr06lefs> do the normal build phases get run by nix-shell?
zakame has joined #nixos
<pr06lefs> I'm looking to modify $NIX_CFLAGS_COMPILE in my shell.nix. not sure what phase to do that modification in? configurePhase?
<cole-h> If you run it like `nix-shell -A attr`, no.
<{^_^}> [nixpkgs] @vbgl opened pull request #101494 → ocamlPackages.ocp-build: 1.99.19-beta → 1.99.21-beta → https://git.io/JTaMS
<theuni> not sure what the state today is, but i did experience issues when just keeping an old hash while working on a new expression because it would just simply pick up the old "thing" instead of fetching the new item and comparing it to the hash. maybe that was fixed/changed at some point?
<pr06lefs> this worked for me, not in any build phase: NIX_CFLAGS_COMPILE = "-isystem ${lib.getDev gnome2.libglade}/include/libglade-2.0";
<pr06lefs> and then the rest of the normal stuff is appended later I guess
hmpffff has quit [Ping timeout: 272 seconds]
<cole-h> theuni: That's the problem -- it picks up the old thing because it's cached based on its hash (the provided sha256)
<cole-h> "problem"
<cole-h> If the hash doesn't change, Nix assumes the contents haven't changed, regardless of anything else that has chanegd
<cole-h> s/chanegd/changed/
<{^_^}> [nixpkgs] @zimbatm merged pull request #101487 → direnv: 2.23.0 -> 2.23.1 → https://git.io/JTaia
<{^_^}> [nixpkgs] @zimbatm pushed to master « direnv: 2.23.0 -> 2.23.1 (#101487) »: https://git.io/JTaDJ
hmpffff has joined #nixos
<{^_^}> [nixpkgs] @jonringer merged pull request #101121 → python3Packages.pysideShiboken: fix build → https://git.io/JTBAZ
<{^_^}> [nixpkgs] @jonringer pushed 2 commits to master: https://git.io/JTaDY
Izorkin has joined #nixos
jbox has joined #nixos
<emmanuel_erc> does anyone here know if libxml2 is a runtime or build-time dependency of postgresql?
<tpw_rules> emmanuel_erc: postgres has xml functions and datatypes, so it would have to be a runtime
<emmanuel_erc> ah
<emmanuel_erc> thank you
<pumpy> using home-manager services.keybase.enable enables the daemon in home manager but i still gotta add keybase-gui to systempackages?
Izorkin has quit [Ping timeout: 260 seconds]
Izorkin has joined #nixos
plakband has joined #nixos
Guest8470 has quit [Quit: Connection closed]
<pumpy> i import any config dropped into /etc/nixos/conf.d into my configuration.nix. `(map (x: /etc/nixos/conf.d + "/${x}") (builtins.attrNames(builtins.readDir /etc/nixos/conf.d)));` but how can i make it only pick up files that END IN .nix pls?
<pumpy> ansible makes file.nix.backups and those are getting imported too :(
<gchristensen> > builtins.filter
<{^_^}> <PRIMOP>
plakband has quit [Client Quit]
<pumpy> hm
<gchristensen> and I'm not sure how to do a substring, nix isn't really "for" this type of programming so I don't do it much
<pumpy> so i add a filter around the attrNames to check if it ends with .nix. how in nix to check string ending?
<gchristensen> builtins.stringLength and builtins.substring
<theuni> cole-h: for all things that are fantastic with nix/nixos in it's design there's a number of usability issues that make it "fun" at not-so-opportune moments ;)
alp has quit [Ping timeout: 272 seconds]
maxdevjs has quit [Ping timeout: 256 seconds]
<pumpy> gchristensen are you thinking i get last 4 chars of string and see if it equals .nix?
<gchristensen> yea
<pumpy> what's stringLength for? to make sure it's >=4 long first?
<gchristensen> no, to know where to start in the string
<pumpy> oh, length - 4?
maxdevjs has joined #nixos
<pumpy> gchristensen ^
maxdevjs has quit [Remote host closed the connection]
<dminuoso> Mmm. So when we setup a nixos machine, we generally always follow the same routine and exact same partitioning commands. Does nixos have the facility to create a custom iso that will invoke predefined commands?
maxdevjs has joined #nixos
<dminuoso> Ideally I want a low-effort fresh nixos vm that I can just spool up
<gchristensen> dminuoso: it doesn't have a specific facility, other than typical systemd: https://github.com/grahamc/packet-nixos/blob/master/base.nix#L74
gxt has quit [Remote host closed the connection]
gxt has joined #nixos
<infinisil> > isSuffix ".nix" "file.nix"
<{^_^}> undefined variable 'isSuffix' at (string):345:1
<infinisil> > hasSuffix ".nix" "file.nix"
<{^_^}> true
<dminuoso> gchristensen: Ah, I see. So I can just set cfg.partition/cfg.format/cfg.mount and thats it?
<infinisil> pumpy: ^
<pumpy> omg so much easier
<gchristensen> dminuoso: well... all that is part of this packet-nixos repo. I have a service which starts up and erases the disks and stuff.
<pumpy> infinisil i still use it with builtins.filter?
<infinisil> pumpy: Yea
<infinisil> Or lib.filter works too (and there's lib.attrNames as well)
<infinisil> And it's also lib.hasSuffix
<gchristensen> infinisil: I like to only use builtins to get that close-to-the-metal performance.
<gchristensen> (tongue, cheek)
<infinisil> Lol
joey has quit [Remote host closed the connection]
joey has joined #nixos
<Reventlov> https://github.com/github/dmca/blob/master/2020/10/2020-10-23-RIAA.md soon for the youtube-dl nix file ?
<pumpy> infinisil like this? https://dpaste.org/eV0r
<emmanuel_erc> tpw_rules: So I'm trying to get rid of the python interpreter in my build. It seems to be brought by the "py" output of nipkgs.libxml. It is necessary for it to be there?
<emmanuel_erc> Based on what you said.
<infinisil> ,tias pumpy
<{^_^}> pumpy: Try it and see! (then tell us what you saw)
Izorkin has quit [Ping timeout: 260 seconds]
<tpw_rules> can you configure libxml without specifying python as an input?
<infinisil> Reventlov: -> #nixos-chat
<Reventlov> infinisil: well, I'm really sure it can apply to nixos, as nixos distributes youtube-dl too.
<infinisil> Oh you meant it in that regard
<Reventlov> yeah, since nixpkgs is on github too (even if this case, this wasn't covered)
<infinisil> Well, I'm just lmaoing here at how they expect the DMCA to have the effect they want xD
<{^_^}> [nixpkgs] @makefu opened pull request #101495 → iozone: 3.471 -> 3.490 → https://git.io/JTaSC
<infinisil> Like, as if they could just tell github to take that down, and even if, the source code can be forked and copied to hundred other sites
<tpw_rules> easy: because it needs constant and vigilant maintenace
<tpw_rules> maintenance
<pumpy> infinisil what's ,tias mean?
<infinisil> pumpy: Look at what the bot replied
<gchristensen> Reventlov: we don't host the youtube-dl source, it is unlikely we'd get anything about it
<pumpy> infinisil why do you keep saying tias at me?
<gchristensen> he is hoping you will try it and see
<gchristensen> 20:12 <{^_^}> pumpy: Try it and see! (then tell us what you saw)
<pumpy> hm i didnt see that, i ignored the bot
<pumpy> too noisy
<pumpy> Reventlov someone should make a blacklist for any music the RIAA represents. it's all garbage anyway
<samueldr> that's a bit off-topic, and a bad generalization
<pumpy> its copyright poison is a virus that infects all other actually good media
rprije has joined #nixos
<infinisil> samueldr++
<{^_^}> samueldr's karma got increased to 288
meh` has joined #nixos
meh` has quit [Ping timeout: 260 seconds]
meh` has joined #nixos
<emmanuel_erc> tpw_rules: I mean it always will be a buildInput. I just don't want the closure of my build to include the python interpreter if that can be done.
<emmanuel_erc> All I really wnat to know for certain is if the python interpreter is an actual run-time dependency
<tpw_rules> emmanuel_erc: i mean it looks like you can just pass pythonSupport = false to libxml? not sure i understand what you want
<{^_^}> [nixpkgs] @jtojnar pushed 7 commits to gnome-3.38: https://git.io/JTa9e
Izorkin has joined #nixos
<emmanuel_erc> I'll just try that to see if I get what I want.
shibboleth has joined #nixos
lor|d is now known as lord|
orivej has quit [Ping timeout: 260 seconds]
kapil_ has quit [Ping timeout: 240 seconds]
kapilp has joined #nixos
jb55 has quit [Ping timeout: 240 seconds]
est31 has quit [Ping timeout: 240 seconds]
laerling has joined #nixos
hexagoxel has joined #nixos
garbas has joined #nixos
barrucadu has quit [Ping timeout: 244 seconds]
stoile has quit [Ping timeout: 265 seconds]
asymmetric has joined #nixos
liori has joined #nixos
est31 has joined #nixos
stoile has joined #nixos
barrucadu has joined #nixos
barrucadu has joined #nixos
barrucadu has quit [Changing host]
knupfer has quit [Quit: knupfer]
<{^_^}> [nixpkgs] @makefu opened pull request #101497 → pytest-timeout: 1.3.3 -> 1.4.2 → https://git.io/JTa9M
gxt has quit [Remote host closed the connection]
jb55 has joined #nixos
gxt has joined #nixos
jD91mZM2_ has joined #nixos
atriq has joined #nixos
otulp_ has joined #nixos
numkem7 has joined #nixos
<emmanuel_erc> tpw_rules: I see what you're saying. I looked at this page (https://github.com/NixOS/nixpkgs/blob/nixos-unstable/pkgs/development/libraries/libxml2/default.nix) and I can see how disabling pythonSupport could help me.
eeeeeta has joined #nixos
<emmanuel_erc> But I would need to call the function specified in the file with callPackage (and set pythonSupport to false). I'm not entirely sure how to do that.
<emmanuel_erc> Maybe I forgot something.
<{^_^}> [nixpkgs] @7c6f434c merged pull request #101485 → openscenegraph: enable on darwin → https://git.io/JTa6E
minicom0 has joined #nixos
<{^_^}> [nixpkgs] @7c6f434c pushed 2 commits to master: https://git.io/JTaHk
vesper has joined #nixos
alp has joined #nixos
jhuizy3 has joined #nixos
NinjaTrappeur has joined #nixos
<emmanuel_erc> I'm guessing I just use the override attribute?
wavirc22_ has joined #nixos
enteee has joined #nixos
Izorkin has quit [Quit: ZNC 1.8.2 - https://znc.in]
mk_modrzew_ has joined #nixos
<{^_^}> [nixpkgs] @TredwellGit opened pull request #101498 → mumble: 1.3.2 -> 1.3.3 → https://git.io/JTaH8
<benny> is anyone able to use emacs 27.1 on nixos 20.03? I'm having major font issues (I have basically only access to 3 fallback fonts)
eeeeeta is now known as eta
numkem7 has quit [Quit: The Lounge - https://thelounge.chat]
nbathum has joined #nixos
numkem9 has joined #nixos
numkem9 has quit [Client Quit]
doublej41 has joined #nixos
aminechikhaoui has quit [*.net *.split]
enteee_ has quit [*.net *.split]
growpotkin has quit [*.net *.split]
commander has quit [*.net *.split]
mrpi has quit [*.net *.split]
is_null has quit [*.net *.split]
evhan has quit [*.net *.split]
Acou_Bass has quit [*.net *.split]
lunik1 has quit [*.net *.split]
pumpy has quit [*.net *.split]
Neo-- has quit [*.net *.split]
cransom has quit [*.net *.split]
addcninb- has quit [*.net *.split]
dozn has quit [*.net *.split]
jD91mZM2 has quit [*.net *.split]
outerpassage has quit [*.net *.split]
wavirc22 has quit [*.net *.split]
vesper11 has quit [*.net *.split]
mkaito- has quit [*.net *.split]
hodapp has quit [*.net *.split]
notgne2 has quit [*.net *.split]
minicom has quit [*.net *.split]
Reiser has quit [*.net *.split]
jhuizy has quit [*.net *.split]
Taneb has quit [*.net *.split]
AtnNn has quit [*.net *.split]
gambpang_ has quit [*.net *.split]
jD91mZM2_ is now known as jD91mZM2
jhuizy3 is now known as jhuizy
otulp_ is now known as otulp
growpotkin has joined #nixos
aminechikhaoui has joined #nixos
cransom has joined #nixos
pumpy has joined #nixos
addcninb- has joined #nixos
outerpassage has joined #nixos
dozn has joined #nixos
lunik1 has joined #nixos
is_null has joined #nixos
evhan has joined #nixos
Acou_Bass has joined #nixos
notgne2 has joined #nixos
mkaito- has joined #nixos
AmandaC has joined #nixos
mniip has joined #nixos
Mirrexagon has joined #nixos
luigy has joined #nixos
clever has joined #nixos
pbogdan has joined #nixos
AtnNn has joined #nixos
gambpang_ has joined #nixos
<{^_^}> [nixpkgs] @ggreif opened pull request #101499 → [20.09] wasmtime: 0.19.0 -> 0.20.0 → https://git.io/JTaHX
Izorkin has joined #nixos
<{^_^}> #101496 (by chris-martin, 12 minutes ago, open): youtube-dl is broken due to DMCA takedown
<Akira[m]> this kinda sucks
<{^_^}> [nixpkgs] @makefu closed pull request #101497 → pytest-timeout: 1.3.3 -> 1.4.2 → https://git.io/JTa9M
<est31> wait
kwork has joined #nixos
<est31> it's since been deleted
<{^_^}> [nixpkgs] @rnhmjoj opened pull request #101500 → pango: 1.45.3 -> 1.47.0 → https://git.io/JTaHN
* etu clones that asap
<clever> same
astronavt has joined #nixos
<simpson> Somehow I don't think it'll be a permanent problem. Although, it's 2020, why isn't FLOSS decentralized yet~
Neo-- has joined #nixos
<clever> est31: that one seems to have the gh-pages too
jbox has quit [Ping timeout: 272 seconds]
mrpi has joined #nixos
<est31> aaand there's also https://git.osuv.de/star/youtube-dl
hodapp has joined #nixos
<est31> simpson: at the very least, nix OS could clone/cache all git repos referenced, and make derivations build those
<supersandro2000> Don't panic!
heatm1s31 has quit [Remote host closed the connection]
<est31> then a takedown turns an availability problem into a problem of availability of updates
<est31> not panicing
<Akira[m]> takedown request isn't even valid, DMCA takedown is only for copyrighted material, "circumvention tools" have to be sued
<Akira[m]> this will be fixed in the coming days...
<est31> interesting, didn't know that
<est31> anyways this reminds me I haven't used youtube dl since a while
<emmanuel_erc> tpw_rules: If you're still there... All I want to do is make sure that the python interpreter is not in the closure of my build. I've tried using this expression "pkgs.libxml2.override { pythonSupport = false; }". Somehow python still shows up in the closure (I'm using nix why-depends to find it)
<est31> should try it out again
<Yaniel> also there's the argument to be made that ytdl is used for compatibility reasons, which apparently has an explicit exception in the DMCA
<supersandro2000> > the source code expressly suggests its use to copy and/or distribute the following copyrighted works owned by our member companies:
<{^_^}> error: syntax error, unexpected ':', expecting ')', at (string):345:131
<tpw_rules> emmanuel_erc: i don't really know much about nix. i don't know
<supersandro2000> basically you linked 3 videos in your tool which shows that your protection is easily circumventable
ManiacOfMadness has joined #nixos
<emmanuel_erc> ok
commander has joined #nixos
exco has quit [Ping timeout: 246 seconds]
<pumpy> https://dpaste.org/5ji5 error that undefined var 'filter'. why it undefined it's a builtin just like map no?
<samueldr> pumpy: builtins are not part of the global scope
<samueldr> pumpy: map is a specific case here
<samueldr> pumpy: you can open `nix repl` and use [tab] to view what's in that scope
<samueldr> all double-underscored identifiers are internal and not for use :)
<{^_^}> [nixpkgs] @rnhmjoj opened pull request #101501 → pango: 1.45.3 -> 1.45.5 → https://git.io/JTaQb
<nbathum> nixpkgs style question: is it preferred to take `lib` or `stdenv` (for python libraries if that matters)?
<qyliss> nbathum: lib imo, but there's not total consensus
<{^_^}> [nixpkgs] @jtojnar pushed to gnome-3.38 « gnome-photos: use Tracker 3 »: https://git.io/JTa7J
kalbasit_ has joined #nixos
<nbathum> thanks
<dminuoso> gchristensen: Mmm, that seems a bit more specialized for packet.net though.
<gchristensen> dminuoso: it is, it was just an example
<dminuoso> Right
<dminuoso> So what you're proposing is I roll my own?
<pumpy> samueldr++
<{^_^}> samueldr's karma got increased to 289
<gchristensen> yeah
<dminuoso> I cant be the only one who wants to spool up nixos machines on hypervisors. :(
zupo has quit [Ping timeout: 256 seconds]
<pumpy> i run nixos guests fwiw
<pumpy> bhyve hypervisor on fbsd tho
<nbathum> qyliss++
<{^_^}> qyliss's karma got increased to 98
zupo has joined #nixos
<pumpy> https://dpaste.org/HinG new error is attribute hasSuffix missing at string 4 14
<dminuoso> gchristensen: Would you happen to know about other related work perhaps?
<dminuoso> Just trying to explore the design space here
<dminuoso> I mean in principle this repo already does 60-70% of what I want
<pumpy> "nix error attribute hasSuffix missing" search didn't find anything for https://dpaste.org/HinG
<clever> pumpy: lib.hasSuffix
<pumpy> clever that just changed error to error undefined variable lib
<clever> pumpy: { pkgs, lib, config, ... }: on line 1
<pumpy> runningthe map block in nix repl fwiw
<pumpy> ya tried that hm
<pumpy> oh wait how do i set that in the repl?
<clever> `nix repl '<nixpkgs>'` to load nixpkgs
<pumpy> i just open it and put text in
<clever> then lib will be in scope
Reiser has joined #nixos
<pumpy> dang that's long ok
<{^_^}> [nixpkgs] @jfroche opened pull request #101502 → nixos/tests/certmgr: fix certificate location → https://git.io/JTa7y
<clever> can always make a bash alias to it
<{^_^}> [nixpkgs] @WilliButz merged pull request #96511 → Add rtl_433 Prometheus exporter → https://git.io/JUI0Q
<{^_^}> [nixpkgs] @WilliButz pushed 6 commits to master: https://git.io/JTa79
<{^_^}> [nixos-homepage] @garbas pushed to redesign-learn « implement the rest of the design for learn page »: https://git.io/JTa7H
<pumpy> clever that worked. lib.hasSuffix worked but builtins.hasSuffix didn't. i thought it was part of builtins? but i guess that's wrong
<pumpy> clever++
<{^_^}> clever's karma got increased to 533
<{^_^}> [nixpkgs] @ryantm merged pull request #101392 → cargo-release: 0.13.5 -> 0.13.8 → https://git.io/JTguE
<{^_^}> [nixpkgs] @ryantm pushed 2 commits to master: https://git.io/JTa7Q
<clever> pumpy: a lot of functions are implemented in nix, rather then c++
<{^_^}> [nixpkgs] @andir merged pull request #101498 → mumble: 1.3.2 -> 1.3.3 (security) → https://git.io/JTaH8
<{^_^}> [nixpkgs] @andir pushed 2 commits to master: https://git.io/JTa75
<pumpy> just seems like something called "builtin" shouldn't need a special step to import it :D
<clever> builtin is more for things implemented in c++
<clever> lib also contains references to all builtins
<clever> so you can just throw a `with lib;` at the top, and then it will find everything
<jared-w> Which, honestly, I kinda wish more things were. I know it's unreasonable to do any "real" programming in nix, but speed improvements are always nice
<{^_^}> [nixpkgs] @jfroche closed pull request #101502 → nixos/tests/certmgr: fix certificate location → https://git.io/JTa7y
Izorkin has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @andir pushed commit from @TredwellGit to release-20.03 « mumble: 1.3.1 -> 1.3.3 »: https://git.io/JTa5f
<{^_^}> [nixpkgs] @andir pushed commit from @TredwellGit to release-20.09 « mumble: 1.3.2 -> 1.3.3 »: https://git.io/JTa5C
<colemickens> Do we have any Flutter apps packaged in nixpkgs?
<infinisil> clever: Actually not all builtins
<infinisil> Just most
<dminuoso> gchristensen: Ah I think https://gist.github.com/jmettes/abc57a018be70efed9876f5529ff8a1c is much closer to what I want!
<gchristensen> right on!
<{^_^}> [nixpkgs] @nh2 merged pull request #101432 → pdal: 2.1.0 -> 2.2.0 → https://git.io/JT2Jb
<{^_^}> [nixpkgs] @nh2 pushed 2 commits to master: https://git.io/JTa5g
sangoma has quit [Quit: WeeChat 2.9]
<gchristensen> definitely simpler :D
<dminuoso> There's still some glue missing for UEFI, but I think this is a good starting point.
davidv7 has joined #nixos
<dminuoso> (I bet in 6 weeks from now Ill have a packet-nixos equivalent)
jtobin has quit [Quit: Lost terminal]
dbmikus has quit [Ping timeout: 260 seconds]
shibboleth has quit [Quit: shibboleth]
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
zupo has joined #nixos
laduke-132 has joined #nixos
gustavderdrache has quit [Quit: Leaving.]
Rusty1 has quit [Quit: Konversation terminated!]
Tenzer has quit [Quit: Connection closed for inactivity]
zupo has quit [Ping timeout: 260 seconds]
czer00 has quit [Quit: WeeChat 2.9]
Izorkin has joined #nixos
zupo has joined #nixos
<laduke-132> hey, i'm trying to get a c++ hello world env going. I'm looking through here https://nixos.wiki/wiki/C . I keep getting iostream not found, so I'm missing some standard stuff. Not sure if a darwin specific issue.
<clever> laduke-132: are you in nix-shell?
<laduke-132> yeah
<laduke-132> looking at the shell.nix from the cmake section currently
<{^_^}> [nixpkgs] @doronbehar merged pull request #101478 → tectonic: 0.1.17 -> 0.2.0 → https://git.io/JTagJ
<{^_^}> [nixpkgs] @doronbehar pushed 2 commits to master: https://git.io/JTadZ
<clever> can you screenshot the terminal?
<clever> laduke-132: what commands have you run to try and compile it?
zupo has quit [Ping timeout: 240 seconds]
<laduke-132> heh, lot's of them. but `cmake --build .`
<clever> laduke-132: and how did you launch the nix-shell?
cjpbirkbeck has joined #nixos
<laduke-132> just `nix-shell` in the directory with the nix.shell
<laduke-132> shell.nix
dbmikus has joined #nixos
<clever> laduke-132: and what is the contents of shell.nix?
<pumpy> for builtins.readDir is a path of ./foo relative to dir the config.nix file is in?
<clever> pumpy: all relative paths are relative to the file the path is within
<clever> pumpy: nix turns them into absolute paths as it parses the file
<pumpy> great
<pumpy> clever++
<{^_^}> clever's karma got increased to 534
<clever> laduke-132: can you run `cat shell.nix hello.c ; cmake .` and then take a screenshot and upload it somewhere?
<laduke-132> stanby
dmedinag has joined #nixos
<{^_^}> [nixpkgs] @jtojnar pushed 23 commits to gnome-3.38: https://git.io/JTadP
<dmedinag> hey there! I'm looking for help to build my first derivation, is there anyone around to help out? I just have one issue to solve that I've been fighting against for a couple of hours now
<laduke-132> if there's a repo somewhere with a hello-world (that uses iostram or something) and a shell.nix. that'd be cool to look at
<clever> dmedinag: https://nixos.wiki/wiki/C
<{^_^}> [nixpkgs] @andir merged pull request #101481 → cozy-audiobooks: 0.6.7 -> 0.7.2 → https://git.io/JTao2
<{^_^}> [nixpkgs] @andir pushed 2 commits to master: https://git.io/JTad9
srhm has quit [Read error: Connection reset by peer]
<clever> laduke-132: c++ should just work out of the box
Darkmatter66 has quit [Remote host closed the connection]
<dmedinag> https://git.sr.ht/~dmedinag/danixpkgs <- here it is. I'm trying to package gmni, a gemini browser
<{^_^}> [nixpkgs] @bbigras opened pull request #101503 → angle-grinder: init at 0.15.0 → https://git.io/JTadN
<dmedinag> context: if I run `nix-shell -p pkg-config openssl`, I can get a successful status code for `pkg-config libssl` (run by the makefile). But in my builder, I'm getting the opposite
fendor has quit [Remote host closed the connection]
fendor has joined #nixos
<dmedinag> I found out that the openssl package that is being loaded in the builder is not the same as the one in the shell:
<clever> dmedinag: it looks like your re-writing half of the nixpkgs utils from scratch
<clever> dmedinag: you just want to use the existing callPackage in nixpkgs, rather then making your own
<clever> dmedinag: same for mkDerivation, just use stdenv.mkDerivation
<dmedinag> the one in the shell is `/nix/store/7figba9q8yrgz4gj9yhqgjri97h9snsb-openssl-1.1.1g` (which contains a /lib dir), but the one in the build script is `/nix/store/q0ajpzppqfrlbzbddbbzv1w6vfzydhk5-openssl-1.1.1g-bin`
<dmedinag> oh, well. Following the nix pills I probably didn't get far enough haha my bad
<clever> dmedinag: pkg-config relies on setup hooks, and your mkDerivation likely doesnt handle those properly
<{^_^}> [nixpkgs] @jtojnar merged pull request #93725 → nixos/pipewire: add transparent ALSA/PulseAudio/JACK support → https://git.io/JJ86b
<{^_^}> [nixpkgs] @jtojnar pushed 19 commits to master: https://git.io/JTaFI
<dmedinag> let's try the builtin functions to see if that fixes the issue?
<laduke-132> I hope I'm not asking for basic c++ help, but it does build like that if I use the system stuff
Darkmatter66 has joined #nixos
<bbigras> \o/ yay for the pipewire PR merge
<{^_^}> [nixpkgs] @jfroche opened pull request #101504 → Fix 32 bit mysql mariadb test using MyRocks → https://git.io/JTaFZ
<clever> [nix-shell:~/apps/test1]$ $CXX src/Hello.cpp
<clever> laduke-132: it works normally if i just compile it with $CXX directly, does that work for you?
<buffet> hey, is there a way to get a list of files in a dictionary in nix?
<clever> buffet: builtins.readDir
<buffet> thanks
<buffet> that was quick
<dmedinag> clever using stdenv.mkDerivation seems to do the trick!
<dmedinag> thanks so much :D
<laduke-132> hmm yeh. `clang++ src/Hello.cpp` works
<laduke-132> Pretty sure I tried that before I came in here hrm
<pumpy> how can i make home-manager install the keybase-gui package? i dont want to add it to systempackages systemwide
dmedinag has quit [Remote host closed the connection]
<clever> laduke-132: what about $CXX instead of clang++
<buffet> clever, is there a way to do it recursively?
fendor has quit [Remote host closed the connection]
<clever> buffet: use map to check if something is a directory, and run readDir again
<laduke-132> clever: yes
<clever> laduke-132: then its probably something cmake is doing
<buffet> clever, alright 👍
<laduke-132> yeah, sorry!
<clever> dminuoso: in my case, i didnt have a directory of sources, so i made a custom unpackPhase, and i lacked a makefile, so i just threw in a buildPhase too
<laduke-132> which is it's own fun thing to figure out
<clever> dminuoso: and the pkgsCross part, makes it magically cross compile to arm instead
Darkmatter66_ has joined #nixos
Darkmatter66 has quit [Ping timeout: 260 seconds]
erasmas has quit [Quit: leaving]
<{^_^}> [nixpkgs] @TredwellGit opened pull request #101505 → nasm: 2.14.02 -> 2.15.05 (CVE-2019-6290 CVE-2019-6291 CVE-2019-8343 CVE-2019-14248 CVE-2019-20334) → https://git.io/JTaFS
<laduke-132> ah i had set(CMAKE_CXX_STANDARD 14) in there. It build with c++11
<clever> ahhh
nDuff has quit [Quit: zzz]
<{^_^}> [nixpkgs] @doronbehar merged pull request #101480 → salt: 3001.1 -> 3002 and change maintainer → https://git.io/JTarr
<{^_^}> [nixpkgs] @doronbehar pushed 3 commits to master: https://git.io/JTabY
<laduke-132> wow i added clang_10 to nativeBuildInputs and it worked.
<{^_^}> [nixpkgs] @doronbehar closed pull request #99060 → salt: remove self (aneeshusa) as maintainer → https://git.io/JUX5R
<{^_^}> [nixpkgs] @evanjs opened pull request #101506 → pythonPackages.hydrus: 413 -> 414 → https://git.io/JTabs
<clever> laduke-132: you generally dont want to add compilers to the inputs, you want to instead change the stdenv
alp has quit [Ping timeout: 272 seconds]
<clever> laduke-132: such as clangStdenv.mkDerivation
<clever> though i dont see one for clang10...
justanotheruser has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @sikmir opened pull request #101507 → python3Packages.pygmt: init at 0.2.0 → https://git.io/JTabz
<laduke-132> I'll check it out. No idea what I'm doing
Rusty1 has joined #nixos
<evanjs> discovered https://github.com/imtbl/hyve but then realized there are a few sub projects that use yarn/vue etc to build. I was able to generate the main yarn.nix, but I'm not sure what approach I should take for the sub projects 🤔
<{^_^}> [nixpkgs] @andir merged pull request #98748 → xorg.xorgserver: 1.20.8 -> 1.20.9 → https://git.io/JUa0B
<{^_^}> [nixpkgs] @andir pushed 2 commits to master: https://git.io/JTabj
<{^_^}> [nixpkgs] @benley merged pull request #101427 → material-shell: 7 -> 8 → https://git.io/JTgjR
<{^_^}> [nixpkgs] @benley pushed commit from @dbirks to master « material-shell: 7 -> 8 (#101427) »: https://git.io/JTaNl
minicom0 is now known as minicom
<{^_^}> [nixpkgs] @TredwellGit opened pull request #101508 → libraw: 0.20.0 -> 0.20.2 (CVE-2020-15365 CVE-2020-15503 CVE-2020-24890) → https://git.io/JTaNi
globin has joined #nixos
<{^_^}> [nixpkgs] @omasanori opened pull request #101510 → libressl: 3.1.4 -> 3.2.2 → https://git.io/JTaA8
<Rusty1> sudo apt autoremove
<Rusty1> doh
<{^_^}> [nixpkgs] @jtojnar pushed 146 commits to staging-next: https://git.io/JTaAA
<{^_^}> [nixpkgs] @jtojnar pushed 147 commits to staging: https://git.io/JTaAx
ManiacOfMadness has quit [Ping timeout: 272 seconds]
__monty__ has quit [Quit: leaving]
ericsagnes has quit [Ping timeout: 272 seconds]
hmpffff has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<{^_^}> [nixpkgs] @jtojnar pushed 221 commits to gnome-3.38: https://git.io/JTaxF
<colemickens> ,locate blkid
<{^_^}> Found in packages: toybox, busybox, utillinux, libuuid.bin, libuuid.dev, utillinux.bin, utillinux.dev
justanotheruser has joined #nixos
<{^_^}> [nixpkgs] @omasanori opened pull request #101512 → nuspell: 3.1.2 -> 4.0.0, fix license → https://git.io/JTapL
ericsagnes has joined #nixos
m0rphism has quit [Ping timeout: 258 seconds]
<{^_^}> [nixpkgs] @worldofpeace pushed 2 commits to gnome-3.38: https://git.io/JTap6
<{^_^}> [nixpkgs] @worldofpeace closed pull request #100236 → kdeApplications.print-manager: add qtquickcontrols2 → https://git.io/JTTaV
<{^_^}> [nixpkgs] @mtrsk opened pull request #101513 → pythonPackages.imutils: refactor → https://git.io/JTapy
<danderson> anyone happen to have a git repo of nixos configs that use flakes? I'm switching mine to flakes and looking for how folks organized their files given flakes's constraints.
<{^_^}> [nixpkgs] @jtojnar pushed to gnome-3.38 « webkitgtk: clean up »: https://git.io/JTapx
is_null has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @colemickens opened pull request #101514 → fluffychat: init at v0.20.0 [major wip] → https://git.io/JTahc
seku has quit [Quit: Connection closed]
mbrgm_ has joined #nixos
<colemickens> I didn't have to change the layout the core of my actual configs much for flakes: https://github.com/colemickens/nixcfg I've got cloud vms, raspberry pis, regular x86_64 laptops in there, custom packages, an overlay and my nixos hosts. Hopefully it's helpful, lmk if you have questions danderson .
<nbathum> trying to package up what will become pythonPackages.diagrams
<nbathum> but it needs an older pythonPackages.graphviz -_-
mbrgm has quit [Ping timeout: 265 seconds]
mbrgm_ is now known as mbrgm
<nbathum> have something working outside of nixpkgs, but now trying to figure out where to put this override
<nbathum> some python libraries have a `let myPkg' = ... in` where they need to tweak a (python) input
<nbathum> but pythonPackages.graphviz takes graphviz as an input
<{^_^}> [nixpkgs] @r-burns opened pull request #101515 → blugon: fix build on darwin → https://git.io/JTajL
<nbathum> I suppose I'll just get something working and put it up as a draft so that someone with more python and nixpkgs knowledge can suggest how to do this properly