andi- changed the topic of #nixos to: NixOS stable: 19.09 \o/ https://discourse.nixos.org/t/nixos-19-09-release/4306/2 || 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
<superbaloo> this build a disk image that's usable by an uefi bios
<superbaloo> I'm just wondering how I should sign the linux.efi
evanjs has quit [Quit: ZNC 1.7.5 - https://znc.in]
<superbaloo> well, turns out it's quite similar to what gchristensen is doing ><
johnw has joined #nixos
hexa- has quit [Quit: WeeChat 2.7]
evanjs has joined #nixos
tilcreator has quit [Ping timeout: 258 seconds]
hexa- has joined #nixos
hexa- has quit [Client Quit]
asbachb has joined #nixos
noogie has quit [Remote host closed the connection]
<asbachb> I wonder if there's a possibility not to wait for an ethernet interface. e.g. when having a usb ethernet device which is not connected all the time.
ris has quit [Ping timeout: 258 seconds]
turona has quit [Ping timeout: 272 seconds]
turona has joined #nixos
tilcreator has joined #nixos
HugoDaniel has joined #nixos
edomfjp[m]1 has joined #nixos
jgeerds has quit [Ping timeout: 258 seconds]
mexisme has joined #nixos
zeta_0 has joined #nixos
<zeta_0> nodePackages is not being shown in nixpkgs search engine, could anyone send me a link to those nix packages? https://nixos.org/nixos/packages.html?channel=nixos-19.09&query=nodePackages
<zeta_0> thanks in advance
<zeta_0> nevermind, i think that i found the correct link: https://github.com/NixOS/nixpkgs/blob/master/doc/languages-frameworks/node.section.md
thc202 has quit [Ping timeout: 240 seconds]
noogie has joined #nixos
<zeta_0> how to i remove something from cachix, it is throwing errors on my rebuild
<zeta_0> ?
ris has joined #nixos
<cole-h> cachix just adds to your substituters AFAICT. Does NixOS have /etc/nix/nix.conf, too? It would be in there, if so
<andi-> it probably is just in ~/.config/nix/nix.conf and not system wide by default
<cole-h> Check there, too.
hexa- has joined #nixos
<zeta_0> thanks
mexisme has quit [Ping timeout: 260 seconds]
<zeta_0> i removed the corresponding nix file but cachix is still throwing this error?
<zeta_0> warning: unable to download 'https://vaibhavsagar.cachix.org/q6ppki34fcj85dya6jqssif93srynzv0.narinfo': HTTP error 502; retrying in 314 ms
<zeta_0> how do i remove that from cachix so the error goes away?
<cole-h> Did you check both files? `~/.config/nix/nix.conf` and `/etc/nix/nix.conf`?
mbrgm_ has joined #nixos
<zeta_0> etc/nixos/cachix
mbrgm has quit [Ping timeout: 248 seconds]
Fare has quit [Ping timeout: 248 seconds]
mbrgm_ is now known as mbrgm
<{^_^}> [nixpkgs] @elseym opened pull request #80682 → plex: 1.18.6.2368 -> 1.18.7.2438 → https://git.io/JvRsV
<zeta_0> i don't have nix.conf, so then in configuration.nix? i thought i am supposed to the content in the cachix directory?
<zeta_0> i'm confused
<zeta_0> i wasn't getting this error before, how strange
chloekek has quit [Ping timeout: 268 seconds]
<andi-> zeta_0: 502 is an error on the cachix side and you should report that error to them.
<andi-> I guess that might be due to their new CDN (Cloudflare) being unable to connect to the backend in time
<zeta_0> andi-: ok, thanks
o1lo01ol1o has quit [Ping timeout: 240 seconds]
<zeta_0> ok, sent a message in the cachix website, lets see if they respond
<cole-h> They also have an IRC channel: #cachix
<amanjeev> duh! I need this import <nixos-unstable> { config = { allowUnfree = true; }; }. :)
Fare has joined #nixos
<cole-h> amanjeev: Did you also try just adding `{ allowUnfree = true; }` to `~/.config/nixpkgs/config.nix`? That's what I did
<evanjs> domenkozar[m]: made sure I looked a few places first... but is cachix experiencing issues atm? Getting 502 on nixpkgs.cachix, taffy.cachix, etc
HugoDaniel has quit [Ping timeout: 265 seconds]
<evanjs> Tried from two different hosts/networks, too
<cole-h> evanjs: Look up, lol :D
<cole-h> zeta_0 has the same issue, so CDN is having issues probably
<evanjs> man I am good at reading lol
<evanjs> was looking for domen's name, not cachix XD
<amanjeev> cole-h, I am fetching unstable from git. so I needed this https://nixos.wiki/wiki/FAQ#How_can_I_install_a_package_from_unstable_while_remaining_on_the_stable_channel.3F
<amanjeev> xD
<evanjs> I'm more surprised there isn't a cachix health dashboard or something. Seems like something that might be useful
<cole-h> amanjeev: I'd imagine my suggestion would still work, but glad you found a solution :)
<zeta_0> should i just comment out the cachix import in configuration.nix for now?
<zeta_0> to fix the rebuild error
<arcnmx> mm cachix has been having issues all day o:
<evanjs> I only just started having issues
mexisme has joined #nixos
<cole-h> zeta_0: You could try and report back ;^)
m0rphism has quit [Ping timeout: 240 seconds]
<evanjs> zeta_0: if it's already in your nix.conf I can't remember if that will matter
<evanjs> (/etc/nix/nix.conf)
<cole-h> That being said: if you meant commenting out `cachix` from your packages list, that won't solve the problem (that's just the binary itself, which doesn't have direct control over the cachix instances)
<zeta_0> i already messaged that domen kozar on the cachix website and no response yet, so i want to disable cachix for now
<evanjs> Should be able to just do --option substituters and paste all but cachix in there
<zeta_0> and not the cachix installation, commenting out it's import in configuration.nix?
<evanjs> yeah
Fare has quit [Ping timeout: 240 seconds]
<evanjs> so e.g. `nixos-rebuild switch --option substituters https://cache.nixos.org/" I think
<zeta_0> evanjs: thanks, i'll try that out
<evanjs> yeah seems to work on my end
<evanjs> building taffybar on my own should be interesting... ;_;l
<cole-h> Would be cool if cachix could grow the option to remove substituters automagically, instead of having to climb into conf files
<zeta_0> seems like it's working, will this cachix problem be fix soon?
drakonis has quit [Ping timeout: 272 seconds]
zeta_0 has quit [Quit: rcirc on GNU Emacs 26.3]
<andi-> https://status.cachix.org/ seems like it is just down.
Rusty1 has quit [Remote host closed the connection]
<evanjs> ohhhh there's the dashboard lol
<evanjs> andi-++
<{^_^}> andi-'s karma got increased to 23
<evanjs> couldn't find it on google so I gave up haha
daGrevis has quit [Ping timeout: 272 seconds]
mexisme has quit [Ping timeout: 272 seconds]
<{^_^}> Channel nixpkgs-19.09-darwin advanced to https://github.com/NixOS/nixpkgs/commit/b23f2112f5a (from 2 hours ago, history: https://channels.nix.gsc.io/nixpkgs-19.09-darwin)
fusion809 has joined #nixos
<aanderse> was gonna update to 20.03 tonight... blocked by ZHF :-(
daGrevis has joined #nixos
parseval has quit [Ping timeout: 246 seconds]
danguita has quit [Ping timeout: 246 seconds]
Fare has joined #nixos
parseval has joined #nixos
h0m1 has quit [Quit: WeeChat 2.7]
danguita has joined #nixos
h0m1 has joined #nixos
<cole-h> Sounds like you should help out *wink wink nudge nudge*
valwal has joined #nixos
Wharncliffe has joined #nixos
jluttine_ has quit [Ping timeout: 258 seconds]
zeta_0 has joined #nixos
jluttine_ has joined #nixos
<zeta_0> thanks, was able to rebuild without the cachix error
<domenkozar[m]> looking into cachix outage
<{^_^}> [nixpkgs] @cdepillabout merged pull request #80422 → haskell.gtk2hs packages: fix Darwin build → https://git.io/Jv40a
<{^_^}> [nixpkgs] @cdepillabout pushed 2 commits to haskell-updates: https://git.io/JvRGW
<domenkozar[m]> should be working now
<domenkozar[m]> could someone confirm?
<domenkozar[m]> confirmed.
<cole-h> I was just trying to find a way to verify, but good to know it's fixed.
<domenkozar[m]> I'm looking into what happened and will write up once I do a post-mortem
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage-packages.nix: automatic Haskell package set update »: https://git.io/JvRGB
<cole-h> I love post-mortems, so looking forward to it
<CMCDragonkai> using environment.etc, is there a way to create a symlink to point o an arbitrary location on disk?
<CMCDragonkai> there's environment.etc.<name>.target, but it says relative to /etc
<evanjs> Yep. All good on cachix now. At least with the ~6+ substituters I use 😝
<evanjs> domenkozar[m]++
<{^_^}> domenkozar[m]'s karma got increased to 9
ericsagnes has quit [Ping timeout: 272 seconds]
Synthetica has quit [Quit: Connection closed for inactivity]
<domenkozar[m]> cole-h: on the first looks it's quite mysterious, api was down while watchdog didn't restart it and it was running
ryantrinkle has joined #nixos
drakonis has joined #nixos
<cole-h> CMCDragonkai: Have you looked at `environment.etc.<name>.source`?
<cole-h> domenkozar[m]: So basically the watchdog didn't do its job?
ericsagnes has joined #nixos
drakonis has quit [Ping timeout: 240 seconds]
drakonis has joined #nixos
<domenkozar[m]> seems like so, need to do more research
<cole-h> Maybe you didn't feed it enough
werner291 has quit [Quit: werner291]
<cole-h> ;)
kleisli has quit [Ping timeout: 258 seconds]
<domenkozar[m]> heh
Fare has quit [Ping timeout: 248 seconds]
<CMCDragonkai> cole-h: the source works for directories as well?
<cole-h> If you set `.recursive = true;`, yes.
<CMCDragonkai> cole-h: that's not documented
<amanjeev> cole-h: yes :) thank you!
<cole-h> CMCDragonkai: Ah, I was thinking of home-manager's stuff (which does use the `recursive` option)
<cole-h> CMCDragonkai: You could always give it a shot and report back. I don't use NixOS atm, so take my suggestions with a grain of salt :P
<CMCDragonkai> it seems like it works
tertl3 has quit [Quit: Connection closed for inactivity]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #80683 → python27Packages.flask_login: 0.4.1 -> 0.5.0 → https://git.io/JvRGM
drakonis has quit [Ping timeout: 240 seconds]
nuncanada3 has quit [Quit: Leaving]
<CMCDragonkai> nice!
Fare has joined #nixos
h0m1 has quit [Ping timeout: 272 seconds]
h0m1 has joined #nixos
wavirc22 has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @marsam merged pull request #80674 → gitAndTools.gh: 0.5.6 -> 0.5.7 → https://git.io/JvRm9
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JvRGj
<{^_^}> [nixpkgs] @marsam merged pull request #80407 → amass: 3.4.2 -> 3.4.4 → https://git.io/Jv4Wr
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JvRZe
kleisli has joined #nixos
wavirc22 has joined #nixos
bvdw has quit [Read error: Connection reset by peer]
bvdw has joined #nixos
waleee-cl has quit [Quit: Connection closed for inactivity]
Fare has quit [Ping timeout: 240 seconds]
CMCDragonkai has quit [Quit: CMCDragonkai]
CMCDragonkai has joined #nixos
CMCDragonkai1 has joined #nixos
Cadey has quit [Quit: WeeChat 2.7]
wavirc22 has quit [Ping timeout: 258 seconds]
HugoDaniel has joined #nixos
shafox has joined #nixos
HugoDaniel has quit [Ping timeout: 255 seconds]
<{^_^}> [nixpkgs] @Enzime closed pull request #77761 → synergy: 1.8.8 -> 1.11.0 → https://git.io/JvU4V
zebrag has joined #nixos
justanotheruser has quit [Ping timeout: 248 seconds]
inkbottle has quit [Ping timeout: 258 seconds]
<{^_^}> [nixpkgs] @marsam merged pull request #80646 → hugo: 0.64.1 -> 0.65.1 → https://git.io/JvBhb
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JvRZK
drakonis has joined #nixos
<CMCDragonkai1> `nixos-install` has an `--option` setting, does `nixos-rebuild` also have an equivalent `--option` setting?
<{^_^}> [nixpkgs] @marsam merged pull request #80227 → zsh: 5.7.1 -> 5.8 → https://git.io/Jv8Ty
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JvRZ6
reallymemorable has joined #nixos
zeta_0 has quit [Quit: rcirc on GNU Emacs 26.3]
<clever> CMCDragonkai1: both of them just pass the --option's on to nix-build
<CMCDragonkai1> `nixos-rebuild` has `--option` as well?
<clever> yeah
<clever> In addition, nixos-rebuild accepts various Nix-related flags, including --max-jobs / -j, --show-trace, --keep-failed, --keep-going and --verbose / -v. See the Nix manual for details.
<clever> its part of this clause in the man page
<CMCDragonkai1> i see
wavirc22 has joined #nixos
zeta_0 has joined #nixos
asbachb has quit [Ping timeout: 260 seconds]
johnny101m2 has quit [Remote host closed the connection]
drakonis has quit [Ping timeout: 272 seconds]
cptchaos83 has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
cptchaos83 has joined #nixos
<zeta_0> is there a nix pkg for html-language-server? nodePackages.vscode-html-languageserver is not working?
<CMCDragonkai1> does `nix-store --add` or `nix-store --add-fixed` used for adding a package manually like http://developer.download.nvidia.com/compute/cuda/10.2/Prod/local_installers/cuda_10.2.89_440.33.01_linux.run
ajs124 has quit [Quit: killed]
Scriptkiddi has quit [Quit: killed]
mrpi has quit [Quit: killed]
das_j has quit [Quit: killed]
drakonis has joined #nixos
ajs124 has joined #nixos
mrpi has joined #nixos
das_j has joined #nixos
Scriptkiddi has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #80685 → python27Packages.fuzzywuzzy: 0.17.0 -> 0.18.0 → https://git.io/JvRZx
Fare has joined #nixos
zeta_0 has quit [Quit: rcirc on GNU Emacs 26.3]
<CMCDragonkai1> This is a bit strange, I'm defining a module service with this name: `options.services.X.Y = { ... }`, however when I try to enable it like `options.services.X.Y.enable = true;` nixos-rebuild thinks the option doesn't exist. It only works if I use `options.services.X.enable = true`.
mexisme has joined #nixos
zeta_0 has joined #nixos
<{^_^}> [nixpkgs] @Infinisil pushed to haskell-updates « haskellPackages.Chart-tests: Fix build »: https://git.io/JvRnv
<zeta_0> i installed the vscodium package but when i rebooted and search for it in xmonad(dmenu) it is not showing up?
<zeta_0> there were no errors after the rebuild, so i am not sure what is wrong?
<CMCDragonkai1> I actually wrote `services.X.Y.enable = true;` in configuration.nix. Not `options.services.X.Y.enable = true;`. But anyway, the rebuild complains that the option doesn't exist.
<infinisil> CMCDragonkai1: Full module code and error?
<{^_^}> [nixpkgs] @Infinisil pushed to release-20.03 « haskellPackages.Chart-tests: Fix build »: https://git.io/JvRnU
<CMCDragonkai1> infinisil: like this
<CMCDragonkai1> services.kubernetes.scheduler
<CMCDragonkai1> options.services.image-classifier.scheduler = {
<CMCDragonkai1> enable = mkEnableOption "test";
<CMCDragonkai1> systemd.services.hello = {
<CMCDragonkai1> config = lib.mkIf cfg.enable {
<CMCDragonkai1> };
<CMCDragonkai1> wants = [ "network-online.target" ];
<CMCDragonkai1> after = [ "network-online.target" ];
<CMCDragonkai1> wantedBy = [ "multi-user.target" ];
<CMCDragonkai1> serviceConfig = {
<CMCDragonkai1> RuntimeDirectory = "helloworld";
<CMCDragonkai1> ExecStart = "${pkgs.python3}/bin/python -u ${script} $RUNTIME_DIRECTORY";
<CMCDragonkai1> };
<CMCDragonkai1> };
<CMCDragonkai1> };
<infinisil> Don't paste directly..
<infinisil> ,paste
<{^_^}> Use a website such as [ https://gist.github.com/ http://ix.io/ https://hastebin.com/ http://sprunge.us/ https://paste.ee/ ] or similar services to share anything that's longer than a couple lines.
ddellacosta has quit [Ping timeout: 258 seconds]
<CMCDragonkai1> and then I use services.image-classifier.scheduler.enable = true;
<zeta_0> i had to add some gui setting to get java to work with xmonad, does vscodium have a similar issue?
jboy has quit [Quit: bye]
jboy has joined #nixos
<CMCDragonkai1> infinisil: I end up with `attribute 'enable' missing, at /nix/store/s0qndwn87arnzqvpkkr19b73ckpf3p0h-source/modules/image-classifier/default.nix:14:23`
<{^_^}> [nixpkgs] @Infinisil pushed to haskell-updates « haskellPackages.bitwise-enum: Fix build »: https://git.io/JvRnL
<CMCDragonkai1> oh i think i know what happened
<{^_^}> [nixpkgs] @Infinisil pushed to release-20.03 « haskellPackages.bitwise-enum: Fix build »: https://git.io/JvRnt
<CMCDragonkai1> infinisil: ok false alarm... dw
felixfoertsch has joined #nixos
felixfoertsch23 has quit [Ping timeout: 258 seconds]
iyzsong has joined #nixos
<{^_^}> [nixpkgs] @pmyjavec opened pull request #80686 → aws-mfa: init at v0.0.12 → https://git.io/JvRnO
spacefrogg has quit [Quit: Gone.]
aw has quit [Quit: Quitting.]
aw has joined #nixos
spacefrogg has joined #nixos
Arahael has quit [Ping timeout: 265 seconds]
<{^_^}> [nixpkgs] @Infinisil pushed to haskell-updates « haskellPackages.construct: Fix build »: https://git.io/JvRnW
<{^_^}> [nixpkgs] @Infinisil pushed to release-20.03 « haskellPackages.construct: Fix build »: https://git.io/JvRnl
Emiller88 has joined #nixos
<CMCDragonkai1> i've exported a thing from `nix-store` on one system, and tried importing on another system, but the ohter system says error: cannot add path '/nix/store/2fd44mgxgmfmbblxj9r139d4gh65irvg-docker-image-image-classifier.tar.gz' because it lacks a valid signature
<Emiller88> Hey all, I'm having issues getting pinentry running on unstable. Here's a link to my config related to gnupg https://github.com/Emiller88/dotfiles/blob/master/modules/shell/gnupg.nix
Arahael has joined #nixos
<Emiller88> I also found this post which describes my problem https://discourse.nixos.org/t/updated-after-3-week-vacation-gnupg-says-no-pinentry/4731
<iqubic> well, Dunst is working for me. But only halfway.
kloenk has quit [Remote host closed the connection]
Supersonic has quit [Disconnected by services]
Supersonic112 has joined #nixos
Supersonic112 is now known as Supersonic
kloenk has joined #nixos
<zeta_0> will this work in home.nix if i swap environment.systemPackages with home.packages: https://nixos.wiki/wiki/VSCodium
<zeta_0> ?
justanotheruser has joined #nixos
<{^_^}> [nixpkgs] @Infinisil pushed to release-20.03 « haskellPackages.store: 0.7.1 -> 0.7.2 to fix build »: https://git.io/JvRng
onixie has joined #nixos
chagra has quit [Ping timeout: 268 seconds]
<{^_^}> [nixpkgs] @jonringer merged pull request #80681 → python27Packages.nbsphinx: 0.5.0 -> 0.5.1 → https://git.io/JvR3E
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « python27Packages.nbsphinx: 0.5.0 -> 0.5.1 »: https://git.io/JvRn1
<{^_^}> [nixpkgs] @Infinisil pushed to haskell-updates « haskellPackages.streamly-bytestring: Fix build »: https://git.io/JvRnM
<{^_^}> [nixpkgs] @Infinisil pushed to release-20.03 « haskellPackages.streamly-bytestring: Fix build »: https://git.io/JvRny
<iqubic> Is it just me, or do the Dunst keybindings not work properly with NixOS?
<iqubic> Like I have a configuration that lets me clear either one notification, or all of them with a keybinding.
<{^_^}> [nixpkgs] @jonringer merged pull request #80679 → python27Packages.nbval: 0.9.4 -> 0.9.5 → https://git.io/JvRO0
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « python27Packages.nbval: 0.9.4 -> 0.9.5 »: https://git.io/JvRn7
<iqubic> But I should be able to pull up a notification from Dunst's history with a keybinding, and that's not working.
<{^_^}> [nixpkgs] @jonringer merged pull request #80678 → azure-cli: 2.0.81 -> 2.1.0 → https://git.io/JvROW
<{^_^}> [nixpkgs] @jonringer pushed to master « azure-cli: 2.0.81 -> 2.1.0 »: https://git.io/JvRnb
<evanjs> iqubic: maybe take a look at whatever is linked into ~/.dunstrc or wherever
<iqubic> It's actually ~/.config/dunst/dunstrc
<evanjs> zeta_0: as a general rule, yes. For most packages, that should be fine
<evanjs> iqubic: right that
<evanjs> And you said none of those are working?
<iqubic> Compare the shortcuts section of that config to the shortcuts section of this example config from the Dunst github: https://github.com/dunst-project/dunst/blob/master/docs/dunst.pod
<evanjs> Oh you can easily change those if needed
<iqubic> I know. But I like the keybindings the example gives.
<iqubic> And the close and close_all keybindings work just fine.
<iqubic> It's history and context keybindings that do nothing.
<zeta_0> evanjs: thanks, that's good to know, i'll give it a try
<{^_^}> [nixpkgs] @jonringer opened pull request #80687 → azure-cli: 2.0.81 -> 2.1.0 → https://git.io/JvRnj
<iqubic> evanjs: It's really strange, how some keybindings work, and others don't.
<evanjs> iqubic: old issue but the troubleshooting steps might be helpful https://github.com/dunst-project/dunst/issues/171#issuecomment-113967929
<iqubic> evanjs: I just set the idle_threshold to 0, then ran "systemctl --user stop dunst" in a terminal
mexisme has quit [Ping timeout: 258 seconds]
<iqubic> And that fixed my issues.
<evanjs> Wait what haha that was it??
foldingcookie has joined #nixos
mexisme has joined #nixos
foldingcookie has left #nixos [#nixos]
<iqubic> But what's weird is that I could instantly open a terminal, run notify-send, and then dunst was running again. I have no idea how it got started again, when I had just killed the daemon.
chagra has joined #nixos
<evanjs> Did it mention anything about a socket still being alive when you stopped it?
<iqubic> I'm not sure where I'd go to check that.
<iqubic> It wasn't printed out in the terminal.
<evanjs> Okay that’s all I was wondering
<iqubic> another strange thing: runnning "killall dunst" returns "dunst: no process found"
<evanjs> As sockets can/will wake services on demand/as needed
<iqubic> I assume killall issue is related to me running dunst as a systemd service.
<evanjs> How about `pgrep dunst -af`
<evanjs> should still be running somewhere, though.
<evanjs> Systemd just manages that
<iqubic> 15898 /nix/store/gzkf2vhkfbkhrnsmhz44hnnpbfwsym9g-dunst-1.4.1/bin/dunst
<iqubic> So what do I with that. Use that number as PID to kill dunst?
<evanjs> Nah if you need to stop it just stop the service
mexisme has quit [Ping timeout: 260 seconds]
<iqubic> I do that.
<iqubic> But then somehow running notify-send starts it up again.
<iqubic> Which is what I find so damn perplexing.
<iqubic> How does notify-send start up dunst again?
<evanjs> Right right. Hrm. Wonder if the journal shows anything happen between when you stop the service and when you use notify-send
<iqubic> Wait... I just stoped the process with "systemctl --user stop dunst" and htop tells me dunst is still running. WHAT!?!
<evanjs> What about systemctl status?
<iqubic> evanjs: journalctl gives me no info in-between the time I stop dunst and the time I execute notify-send
<iqubic> I ran "systemctl --user stop dunst" twice in a row just before running that status command.
chagra_ has joined #nixos
HugoDaniel has joined #nixos
<iqubic> I'm so gosh darn confused here.
<zeta_0> evanjs: when i tried to rebuild terminal threw this error? https://hastebin.com/tetiyocumi.rb https://nixos.wiki/wiki/VSCodium
Emiller88 has quit [Remote host closed the connection]
Emiller88 has joined #nixos
<zeta_0> evanjs: well, i don't think that i will ever use azure, so i can remove it
chagra has quit [Ping timeout: 260 seconds]
<iqubic> evanjs: I'm so so confused.
<iqubic> I just used htop to kill dunst. notify-send still manages to start dunst again.
<iqubic> I'm just going to call this black magic.
HugoDaniel has quit [Ping timeout: 260 seconds]
<zeta_0> evanjs: when i removed azure it threw this other error? https://hastebin.com/etuyoxiraq.coffeescript
mexisme has joined #nixos
drakonis has quit [Ping timeout: 240 seconds]
<zeta_0> i give up for now, i'll try this again later
<iqubic> evanjs: I can't actually run "dunst -print" to see what results that gives me, because I don't actually have the program of dunst installed in my user environment.
drakonis has joined #nixos
<iqubic> s/program of dunst/dunst command line binary/
<iqubic> I'm not actually going to look into how or why this work in a strange way.
<{^_^}> [nixpkgs] @jonringer merged pull request #80632 → pythonPackages.aiohttp: remove pytest-timeout check dependency → https://git.io/JvBbG
<{^_^}> [nixpkgs] @jonringer pushed commit from @xfix to master « pythonPackages.aiohttp: remove pytest-timeout check dependency »: https://git.io/JvRcn
zeta_0 has quit [Remote host closed the connection]
zeta_0 has joined #nixos
<zeta_0> ok, so after installing vscodium in home.nix it rebuilt without any errors, but after i rebooted i still cannot find the vscodium package with dmenu in xmonad, why is that?
<iqubic> Try searching for "code"
<iqubic> zeta_0: Actually, don't search for "code" instead search for "codium"
mexisme has quit [Ping timeout: 240 seconds]
<iqubic> But actually, that won't work either until you do these few steps: https://github.com/VSCodium/vscodium/blob/master/DOCS.md#terminal-support
<zeta_0> iqubic: cool, codium does show up, but when i run it nothing happens? how weird`
<zeta_0> iqubic: oh, that's why, let me take a look
<zeta_0> iqubic: i don't understand the instructions, what am i supposed to do?
<iqubic> No idea. I'm not familiar with that application. Sorry.
drakonis has quit [Ping timeout: 272 seconds]
<zeta_0> iqubic: this is frustrating, i did not think it would be this difficult setup vscodium
<iqubic> I understand.
<colemickens> codium --verbose
<colemickens> it can be quiet when it has problems startng up
<zeta_0> instead of environment.systemPackages in configuration.nix i installed it with home.packages in home.nix maybe that's why it is not working? https://nixos.wiki/wiki/VSCodium
chagra_ has quit [Ping timeout: 258 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #80688 → python27Packages.pytest-flask: 0.15.0 -> 0.15.1 → https://git.io/JvRcg
<zeta_0> colemickens: thanks, but it threw another error? https://hastebin.com/voyucemiyo.sql
<iqubic> zeta_0: That's actually very helpful for us. We can help you best when we know what isn't working, and why.
<colemickens> [main 2020-02-21T05:23:53.394Z] Error: ENOENT: no such file or directory, mkdir
<colemickens> o_0
<colemickens> I don't really know anything about what home-manager does though.
<colemickens> I use the regular nixpkgs pkg
<zeta_0> ok um, i think this is what is causing the font problem: https://hastebin.com/cotiramami.bash
<zeta_0> i'll change it from 500 to 100, i think i went way past the maximum size
<iqubic> Nope. That last paste has literally nothing to do with fonts. That's setting your mouse cursor.
<iqubic> The size of your mouse cursor has literally nothing to do with fonts.
peelz has quit [Quit: Leaving]
<zeta_0> iqubic: it's talking about the cursor, so that's why i thought that, and i am pretty sure my mouse size is way past the maximum size
<colemickens> I think it's just a misnomer.
Emiller88 has quit [Remote host closed the connection]
<zeta_0> colemickens: what does misnomer mean?
<zeta_0> ok, i looked up it's definition, anyways, i thought they corresponded
<iqubic> basically he's saying that he doesn't think the error has anything to do with the size of your mouse cursor.
<zeta_0> ok, understood
Wharncliffe has quit [Quit: Lost terminal]
<colemickens> Yes. I often get terminal spam from various qt/gtk/whatever applications. In fact, I just tried codium --verbose, and I get some font errors, no icons errors, but a shocking number of other X11 errors. But it stillw orks.
<colemickens> I'd generally expect that if keeps going, it's non fatal, and pick the last error and go from there.
<colemickens> Plus, "mkdir" not being found definitely "smells" bad. (aka, seems suspicious).
<zeta_0> colemickens: do i need to setup environment variables, i followed these instructions except in home.nix instead: https://nixos.wiki/wiki/VSCodium
<zeta_0> colemickens: is mkdir a systemPackage maybe that's why vscodium cannot find it?
gxt has joined #nixos
<iqubic> mkdir isn't a systemPackage. It's a command that should be available in any distro, on any terminal.
<{^_^}> [nixpkgs] @lovesegfault opened pull request #80689 → throttled: 0.6 -> 0.7 → https://git.io/JvRcw
<iqubic> It's built into bash I think.
<zeta_0> then i have no idea what is wrong
<colemickens> zeta_0: at this point, I know that just adding "vscodium" to environment.systemPackages should just work. and if it didn't, it would be an open issue on nixpkgs.
<samueldr> iqubic: better not answer if you don't _know_ the answer, or make it clear
<colemickens> If i were you, I would just try that real quick and see if itworks, then you've narrowed your issue down to being related to home-manager or your usage of it.
<iqubic> Great. In that case, I'm going to stop being a member of this conversation.
<{^_^}> [nixpkgs] @uosis opened pull request #80690 → nerdfonts: fix build on MacOS → https://git.io/JvRcr
<zeta_0> ok, i'll remove that code from home.nix and try it out in configuration.nix like the instructions say
<samueldr> sorry, it was a bit harsh of me, but this is something that can be looked up in the shell `type mkdir` will show that it's known to bash as a specific path
<samueldr> compare to `type type` which shows that `type` is a shell builtin
<newuser99> my lorri daemon doesn't start, how can I diagnose?
<zeta_0> samueldr: sorry, i ask dumb questions when i am brain dead
<newuser99> systemctl --user status lorri says it's "dead", but it doesn't want me to restart it from systemctl
<samueldr> zeta_0: don't apologize, that was my way of trying to at least make this constructive
<samueldr> the question was fine
<newuser99> Failed to restart lorri.service: Operation refused, unit lorri.service may be requested by dependency only (it is configured to refuse manual start/stop).
<samueldr> I have a personal policy of not answering when I don't *know* the answer, and if I think I might, but an unsure, front-load heavily with how it could be wrong
<newuser99> looks like it's supposed to be automatically started after lorri.socket
<newuser99> ...but lorri.socket is dead too
<iqubic> samueldr: I'm going to adopt that policy in my own irc conversations.
<samueldr> sorry again for the unprovoked outburst
<newuser99> ok lorri.socket can be started with systemctl, so that works. but it's a bit strange that home-manager doesnt do that auatomatically.
<iqubic> no. It's fine.
<iqubic> samueldr: Don't worry about it at all.
<{^_^}> [nixpkgs] @r-ryantm opened pull request #80691 → python27Packages.pyroute2: 0.5.7 -> 0.5.9 → https://git.io/JvRc6
<colemickens> newuser99: is it meant to maybe be socket activated when you actually trigger it by entering a dir setup with direnv/lorri?
<colemickens> newuser99: I'm purely just guessing aloud for an idea for you, I don't know that that's how lorri works.
iyzsong has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @leigh-perry opened pull request #80692 → google-cloud-sdk: 268.0.0 -> 281.0.0 → https://git.io/JvRci
iyzsong has joined #nixos
<newuser99> colemickens: I don't think so. I think the direnv is supposed to be the client-side of that relationship, communicating with an already-started server over the socket
<newuser99> but ...maybe?
<{^_^}> [nixpkgs] @jonringer merged pull request #80685 → python27Packages.fuzzywuzzy: 0.17.0 -> 0.18.0 → https://git.io/JvRZx
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « python27Packages.fuzzywuzzy: 0.17.0 -> 0.18.0 »: https://git.io/JvRcQ
adit[m] has left #nixos ["User left"]
<{^_^}> [nixpkgs] @jonringer merged pull request #80664 → python37Packages.aioresponses: 0.6.2 -> 0.6.3 → https://git.io/JvRLY
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « python37Packages.aioresponses: 0.6.2 -> 0.6.3 »: https://git.io/JvRc7
<zeta_0> ok time to do a rebuild'
johnw has quit [Remote host closed the connection]
zeta_0 has quit [Remote host closed the connection]
zeta_0 has joined #nixos
Arahael has quit [Ping timeout: 255 seconds]
endforma1 has quit [Ping timeout: 260 seconds]
<zeta_0> ok, after the rebuild those errors are still being thrown: https://hastebin.com/olamoturel.rb
<zeta_0> i fixed one of the errors by lowering the mouse size
<zeta_0> i guess i will focus on fixing the font first
zeta_0 has quit [Quit: rcirc on GNU Emacs 26.3]
<{^_^}> [nixpkgs] @jonringer merged pull request #80691 → python27Packages.pyroute2: 0.5.7 -> 0.5.9 → https://git.io/JvRc6
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « python27Packages.pyroute2: 0.5.7 -> 0.5.9 »: https://git.io/JvRcx
<{^_^}> [nixpkgs] @jonringer opened pull request #80693 → pulseaudio-dlna: add missing setuptools dep → https://git.io/JvRCe
palo1 has joined #nixos
<{^_^}> [nixpkgs] @vbgl merged pull request #80093 → ocaml-ng.ocamlPackages_4_10.ocaml: 4.10.0+rc1 → 4.10.0+rc2 → https://git.io/Jvlt9
<{^_^}> [nixpkgs] @vbgl pushed to master « ocaml-ng.ocamlPackages_4_10.ocaml: 4.10.0+rc1 → 4.10.0+rc2 »: https://git.io/JvRCk
<CMCDragonkai1> How do I override the ExecStart
<CMCDragonkai1> For a systemd service?
<{^_^}> [nixpkgs] @jonringer merged pull request #80688 → python27Packages.pytest-flask: 0.15.0 -> 0.15.1 → https://git.io/JvRcg
<{^_^}> [nixpkgs] @jonringer pushed commit from @r-ryantm to master « python27Packages.pytest-flask: 0.15.0 -> 0.15.1 »: https://git.io/JvRCL
<infinisil> CMCDragonkai1: `ExecStart = lib.mkForce "..."` should usually work
palo has quit [Ping timeout: 260 seconds]
palo1 is now known as palo
cole-h has quit [Ping timeout: 258 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #80694 → python27Packages.pyftpdlib: 1.5.5 -> 1.5.6 → https://git.io/JvRCG
<{^_^}> [nixpkgs] @jonringer merged pull request #80682 → plex: 1.18.6.2368 -> 1.18.7.2438 → https://git.io/JvRsV
<{^_^}> [nixpkgs] @jonringer pushed commit from @elseym to master « plex: 1.18.6.2368 -> 1.18.7.2438 »: https://git.io/JvRCZ
Arahael has joined #nixos
fre_ has quit [Ping timeout: 240 seconds]
LysergicDreams has quit [Ping timeout: 255 seconds]
fre2 has quit [Ping timeout: 265 seconds]
ghasshee has joined #nixos
fling has quit [Ping timeout: 268 seconds]
dansho has quit [Remote host closed the connection]
dansho has joined #nixos
marcusr has quit [Read error: Connection reset by peer]
Arahael has quit [Ping timeout: 240 seconds]
<ghasshee> Hi, does anyone know how to make the cronjob "* * * * * ghasshee . /etc/profile; echo $(date +%Y%m%d)" work correctly?
LysergicDreams has joined #nixos
marcusr has joined #nixos
<ghasshee> I could migrate almost all cronjobs to nixos but the job of this syntax.
gxt has quit [Ping timeout: 240 seconds]
fling has joined #nixos
growpotkin has quit [Quit: ZNC 1.7.5 - https://znc.in]
waleee-cl has joined #nixos
wavirc22 has quit [Ping timeout: 240 seconds]
snajfa has joined #nixos
reallymemorable has quit [Quit: reallymemorable]
maddo has joined #nixos
wavirc22 has joined #nixos
zupo has joined #nixos
Arahael has joined #nixos
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
17WAAOVIH has joined #nixos
veske has joined #nixos
<kini> I'm running VirtualBox on a NixOS host, and trying to mount the guest additions ISO inside the guest (Windows), but VirtualBox says it can't find the guest additions ISO. Is there a separate package I need to install to get the ISO to be visible to the VirtualBox program?
marcusr has quit [Remote host closed the connection]
coco has joined #nixos
inkOne_ has joined #nixos
marcusr has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #80695 → python27Packages.pyodbc: 4.0.28 -> 4.0.30 → https://git.io/JvRCD
Arahael has quit [Ping timeout: 260 seconds]
inkOne_ has quit [Client Quit]
snajfa has quit [Ping timeout: 260 seconds]
inkOne_ has joined #nixos
domogled has joined #nixos
HugoDaniel has joined #nixos
<kini> hmm, I don't see anything in nixpkgs that downloads the correct URL except for pkgs/applications/virtualization/virtualbox/guest-additions/default.nix which I guess is for *installing* the guest additions on a NixOS *guest*, so I guess there's no such package currently available
<{^_^}> [nixpkgs] @invokesus opened pull request #80696 → patroni: init at 1.6.4 → https://git.io/JvRCQ
magnetophon has joined #nixos
cr4y1 has joined #nixos
Naptra has joined #nixos
<{^_^}> [nixpkgs] @nlewo merged pull request #80689 → throttled: 0.6 -> 0.7 → https://git.io/JvRcw
<{^_^}> [nixpkgs] @nlewo pushed 2 commits to master: https://git.io/JvRCN
<{^_^}> [nixpkgs] @nlewo merged pull request #80347 → insomnia: 7.0.6 -> 7.1.0 → https://git.io/Jv85q
sgrunert has joined #nixos
<{^_^}> [nixpkgs] @nlewo pushed 2 commits to master: https://git.io/JvRCp
sascha-grunert has joined #nixos
sgrunert has quit [Client Quit]
andreas303 has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @nlewo merged pull request #80064 → helm: 3.0.3 -> 3.1.0 → https://git.io/JvWpR
<{^_^}> [nixpkgs] @nlewo pushed 2 commits to master: https://git.io/JvRWe
hoijui has joined #nixos
<{^_^}> [nixpkgs] @fkstef closed pull request #80668 → rainloop: 1.13.0 -> 1.14.0 → https://git.io/JvRqo
hyper_ch2 has joined #nixos
logzet has joined #nixos
Makaveli7 has joined #nixos
andreas303 has joined #nixos
<eyJhb> kini: It should be able to download it itself
<kini> yeah, it provides that as an option. keeps getting network failures but that's probably some other issue I guess. I just figured that I'd probably want to avoid letting any application download stuff by itself on NixOS since it's unlikely to know to put it into the Nix store, right?
<eyJhb> kini: There is no _need_ to put it into the Nix store as such, it will use your home directory for it
<eyJhb> As VirtualBox runs are your own user, that is where it normally will put it :)
<kini> I see, but then that also means it won't get deleted when this VirtualBox version gets garbage collected from the Nix store though. I was thinking of it as a piece of the VirtualBox software - on Debian for example there is an apt package called `virtualbox-guest-additions-iso` which contains the ISO and is managed by the package manager etc.
<eyJhb> kini: well, you could package it for VirtualBox as well ;)
<eyJhb> /NixOS
<kini> good idea :)
hyper_ch2 has quit [Remote host closed the connection]
Arahael has joined #nixos
philr has joined #nixos
rootatarch has joined #nixos
m0rphism has joined #nixos
hyper_ch2 has joined #nixos
iqubic` has joined #nixos
iqubic has quit [Ping timeout: 240 seconds]
gxt has joined #nixos
hoijui has quit [Quit: Leaving]
gagbo has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #80697 → python27Packages.qtawesome: 0.6.1 -> 0.7.0 → https://git.io/JvRWZ
marek has joined #nixos
marek has quit [Changing host]
KONTOL has quit [Quit: ZNC - https://znc.in]
o1lo01ol1o has joined #nixos
Tucky has joined #nixos
Jackneill has joined #nixos
chimay has joined #nixos
zupo has joined #nixos
xkapastel has joined #nixos
typetetris_ has joined #nixos
Arahael has quit [Ping timeout: 240 seconds]
typetetris_ is now known as typetetris
<typetetris> Hi there! If I have a nix expression, but can't build it, because some builders fail, can I look up, why the derivations with the failing builders are needed in the first place? If so, how?
o1lo01ol1o has quit [Remote host closed the connection]
cfricke has joined #nixos
<{^_^}> [nixpkgs] @hedning opened pull request #80698 → p11-kit: 0.23.19 -> 0.23.20 → https://git.io/JvRW2
<NoctisLabs> Does anyone know how Qubes does that seamless virtual window thing? Is that Xen specific or can I do it with Qemu?
cfricke has quit [Read error: Connection reset by peer]
cfricke_ has joined #nixos
ris has quit [Ping timeout: 258 seconds]
<wakest[m]> Morning all! how can I change the default browser for https? I have Firefox and Gnome Web installed and I want to only have links open in Firefox.
o1lo01ol1o has joined #nixos
<infinisil> wakest[m]: xdg-mime default firefox.desktop x-scheme-handler/{http,https}
<wakest[m]> add to configuration.nix?
florianjacob1117 has joined #nixos
<{^_^}> [nixpkgs] @vanschelven opened pull request #80699 → python.pkgs.httpretty: disable flaky test → https://git.io/JvRWb
cfricke_ has quit [Quit: WeeChat 2.7]
o1lo01ol1o has quit [Ping timeout: 258 seconds]
HugoDaniel has quit [Ping timeout: 255 seconds]
o1lo01ol1o has joined #nixos
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
andymandias has joined #nixos
<{^_^}> [nixos-weekly] @mic opened pull request #114 → contextflow is looking for NixOs experts → https://git.io/JvRWj
<{^_^}> [nixpkgs] @xfix opened pull request #80700 → kodi: fix build → https://git.io/JvRlJ
<{^_^}> [nixpkgs] @Mic92 merged pull request #53033 → openvswitch: better integration with systemd → https://git.io/fhIyN
<{^_^}> [nixpkgs] @Mic92 pushed 2 commits to master: https://git.io/JvRlY
bvdw has quit [Read error: Connection reset by peer]
<{^_^}> [nixos-weekly] @domenkozar merged pull request #114 → contextflow is looking for NixOs experts → https://git.io/JvRWj
<{^_^}> [nixos-weekly] @domenkozar pushed 2 commits to master: https://git.io/JvRlO
bvdw has joined #nixos
<{^_^}> [nixpkgs] @vbgl opened pull request #80701 → ocamlPackages.javalib: 3.1.1 → 3.2.1; ocamlPackages.sawja: 1.5.7 → 1.5.8 → https://git.io/JvRlG
<infinisil> wakest[m]: Nah that's a command
17WAAOVIH has quit [Quit: This computer has gone to sleep]
veske has quit [Quit: This computer has gone to sleep]
cfricke has joined #nixos
veske2 has joined #nixos
veske has joined #nixos
<{^_^}> [nixpkgs] @eyJhb opened pull request #80703 → blender: 2.81a -> 2.82 → https://git.io/JvRlw
phaebz has joined #nixos
Arahael has joined #nixos
<wakest[m]> infinisil: cool thanks, I ran it and it didn't seem to do anything so hopefully I just need to restart for it to take effect.
<infinisil> wakest[m]: Oh no you shouldn't need to
<infinisil> wakest[m]: Does `xdg-open https://github.com` open it in firefox?
anohigisavay has joined #nixos
zupo has joined #nixos
florianjacob1117 has quit [Quit: authenticating]
florianjacob1117 has joined #nixos
florianjacob1117 is now known as florianjacob
Arahael has quit [Ping timeout: 258 seconds]
lsix has joined #nixos
fendor has joined #nixos
fre has joined #nixos
dansho has quit [Quit: Leaving]
<wakest[m]> infinisil: yes it does. the issue I am having is when I click on links in ssb-patchwork they open in Gnome Web, everything else opens in Firefox. running i3
iyzsong-x has joined #nixos
iyzsong has quit [Ping timeout: 260 seconds]
<infinisil> Well then the default *did* change, which was your original question. If a specific application doesn't work then that's probably that applications fault
<wakest[m]> infinisil: do you have any idea how I might get Patchwork to stop sending links to Gnome Web? Can I deregister gnome web from being able to handle http links from remote apps?
<infinisil> Ideally I'd look at the source of patchwork to see how it calls the browser and go from there
<infinisil> Other than that you might be able to hack around it by wrapping patchwork with a PATH that only contains firefox
fre2 has joined #nixos
<anohigisavay> Hi. newbie question: i use environment.systemPackages to maintain my packages. how to prevent a package from being upgraded?
<wakest[m]> thanks that helps!
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
HugoDaniel has joined #nixos
<{^_^}> [nixpkgs] @basvandijk opened pull request #80705 → .github/CODEOWNERS: remove myself from the Haskell code owners → https://git.io/JvR8M
<tilpner> NoctisLabs: Check https://github.com/jollheef/appvm , the screenshots look like what you want, but it might just be full-screen applications
Chiliparrot has joined #nixos
ongy[m] has joined #nixos
ongy[m] has quit [Changing host]
ongy[m] has joined #nixos
ongy[m] has quit [Changing host]
civodul has joined #nixos
Arahael has joined #nixos
noudle has joined #nixos
<{^_^}> [nixpkgs] @Infinisil opened pull request #80706 → swift: Fix build for glibc 2.30 → https://git.io/JvR85
veske2 has quit [Quit: This computer has gone to sleep]
veske has quit [Quit: This computer has gone to sleep]
<infinisil> anohigisavay: You can do so by pinning the package to a specific nixpkgs version
plutes has joined #nixos
veske2 has joined #nixos
veske has joined #nixos
q3k has quit [Remote host closed the connection]
<infinisil> E.g. `let nixpkgsPinned = import (fetchTarball { url = "https://github.com/NixOS/nixpkgs/tarball/<some-commit>"; sha256 = "..."; }) {}; in { environment.systemPackages = [ nixpkgsPinned.hello ]; }`
antoszka has left #nixos ["WeeChat 2.7"]
q3k has joined #nixos
<anohigisavay> infinisil: thank you! that also brought me to https://nixos.wiki/wiki/FAQ/Pinning_Nixpkgs. i'll take a closer look.
hyper_ch2 has quit [Remote host closed the connection]
waleee-cl has quit [Quit: Connection closed for inactivity]
cidkid has joined #nixos
__monty__ has joined #nixos
<mikky> so I have this Go package (traefik) which is built using `buildGo112Package` and I need to overlay it (newer version) and build it using `buildGo113Package`. I know how to override the version but I'm stuck with forcing build113
<{^_^}> [nixpkgs] @uosis opened pull request #80707 → ammonite: fix source reference to allow dynamic binding → https://git.io/JvR40
thc202 has joined #nixos
iyzsong-x has quit [Ping timeout: 240 seconds]
iyzsong has joined #nixos
__red__ has quit [Quit: WeeChat 2.6]
bridge[evilred] has quit [Remote host closed the connection]
chloekek has joined #nixos
pbogdan has quit [Quit: ZNC 1.7.4 - https://znc.in]
psyanticy has joined #nixos
kleisli has quit [Ping timeout: 265 seconds]
CMCDragonkai1 has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @Taneb opened pull request #80708 → metamath: 0.180 -> 0.181 → https://git.io/JvRBq
asbachb has joined #nixos
phaebz has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @basvandijk merged pull request #80705 → .github/CODEOWNERS: remove myself from the Haskell code owners → https://git.io/JvR8M
<{^_^}> [nixpkgs] @basvandijk pushed 2 commits to master: https://git.io/JvRBZ
HugoDaniel has quit [Ping timeout: 265 seconds]
cfricke has quit [Quit: WeeChat 2.7]
<asbachb> Hej! Any idea how I could prevent that systemd is waiting for my network device to come up? e.g. I have a usb ethernet device which is not plugged in all the time.
waleee-cl has joined #nixos
<{^_^}> [nixpkgs] @peti merged pull request #80532 → shotcut: 19.12.31 -> 20.02.17 → https://git.io/JvBYI
<{^_^}> [nixpkgs] @peti pushed 2 commits to master: https://git.io/JvRBu
philr has quit [Ping timeout: 240 seconds]
phaebz has joined #nixos
<{^_^}> [nixpkgs] @edwtjo pushed to master « shogun: 6.0.0 -> 6.1.4 »: https://git.io/JvRBr
rsoeldner_ has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @edwtjo closed pull request #72739 → shogun: switch to using opencv3 → https://git.io/Je2k9
<phaebz> Trying to install on a free partition in a dual-boot scenario where I would boot from that partition with the already installed bootloader, after editing configuration.nix and `nixos-install` I get the error: You must set the option ‘boot.loader.grub.devices’ or 'boot.loader.grub.mirroredBoots' to make the system bootable.
<{^_^}> [nixpkgs] @r-ryantm opened pull request #80709 → rtl_433: 19.08 -> 20.02 → https://git.io/JvRBi
cosimone has joined #nixos
<{^_^}> [nixpkgs] @peti pushed 2 commits to haskell-updates: https://git.io/JvRBX
<{^_^}> [nixpkgs] @mmahut opened pull request #80710 → libfido2: build with systemd only on linux → https://git.io/JvRBM
<{^_^}> [nixpkgs] @rnhmjoj closed pull request #80556 → haskellPackages.pandoc-crossref: downgrade to latest working → https://git.io/JvBBO
fpob has joined #nixos
rsoeldner has joined #nixos
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage2nix: update to ghc-8.8.2 for lts-15.x »: https://git.io/JvRBy
o1lo01ol1o has quit [Remote host closed the connection]
chimay has quit [Ping timeout: 255 seconds]
steevveen has joined #nixos
<steevveen> Hi! Just noticed that my /var/log is 4GBytes big. Is there a nixos option for purging old logs ? Dp u
<steevveen> Do you purge it often ?
HugoDaniel has joined #nixos
<{^_^}> [nixpkgs] @Mic92 merged pull request #78385 → vimUtils.vimrcFile: fixes packpath order → https://git.io/Jvt09
<{^_^}> [nixpkgs] @Mic92 pushed 2 commits to master: https://git.io/JvRBA
<chloekek> steevveen: You can configure logrotate with services.logrotate.enable and services.logrotate.config.
<niksnut> also see journald.conf for journal size limits
HugoDaniel has quit [Ping timeout: 240 seconds]
cidkid has quit [Quit: Leaving.]
hyper_ch2 has joined #nixos
KONTOL has joined #nixos
hyper_ch2 has quit [Remote host closed the connection]
kiloreux has joined #nixos
kiloreux_ has joined #nixos
Fare has quit [Ping timeout: 240 seconds]
<kiloreux> How can optimize hash calculations for derivatives?
<kiloreux> It's taking a long time on my servers
<{^_^}> [nixpkgs] @bennofs opened pull request #80712 → weechatScripts.weechat-matrix: enable on darwin → https://git.io/JvRRc
<__monty__> kiloreux: What sort of optimizing are you expecting? Most CPUs have hardware SHA256 afaik so nothing to optimize on that front probably. Comes down to how fast the data to be hashed can be read from disk.
<kiloreux> __monty__, I have a huge list of derivatives. And even though everything is backed into an image (No internet downloading). Install is still finished in more than 60s
<kiloreux> So I am trying to optimize this install
Neo-- has joined #nixos
gxt has quit [Ping timeout: 240 seconds]
newuser99 has quit [Ping timeout: 260 seconds]
<steevveen> niksnut chloekek thanks, used both services.journald.extraConfig and services.logrotate . The size is more reasonable now :-)
wavirc22 has quit [Ping timeout: 240 seconds]
Neo-- has quit [Ping timeout: 260 seconds]
domogled has quit [Remote host closed the connection]
o1lo01ol1o has joined #nixos
o1lo01ol1o has quit [Read error: Connection reset by peer]
o1lo01ol1o has joined #nixos
HugoDaniel has joined #nixos
v88m has quit [Ping timeout: 240 seconds]
wavirc22 has joined #nixos
<infinisil> kiloreux: What concretely takes a lot of time? What command?
<{^_^}> [nixpkgs] @Infinisil pushed 2 commits to master: https://git.io/JvRR5
<{^_^}> [nixpkgs] @Infinisil merged pull request #80526 → nixos/buildkite-agents: fix hooksDir assertion → https://git.io/JvBt5
veske2 has quit [Quit: This computer has gone to sleep]
veske has quit [Quit: This computer has gone to sleep]
veske2 has joined #nixos
<{^_^}> [nixpkgs] @Infinisil pushed commit from @yorickvP to release-20.03 « nixos/buildkite-agents: fix hooksDir assertion »: https://git.io/JvRRd
veske has joined #nixos
<kiloreux> infinisil, nix-env -f file.nix -iA myApp
<kiloreux> This command is taking too much time it seems.
fendor has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @peti pushed 3 commits to haskell-updates: https://git.io/JvRRj
veske2 has quit [Quit: This computer has gone to sleep]
veske has quit [Quit: This computer has gone to sleep]
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage-packages.nix: automatic Haskell package set update »: https://git.io/JvR0e
veske2 has joined #nixos
veske has joined #nixos
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage2nix: let's try to compile everything to see what works »: https://git.io/JvR0U
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage-packages.nix: automatic Haskell package set update »: https://git.io/JvR0k
alexherbo2 has joined #nixos
<{^_^}> [nixpkgs] @peti pushed 48 commits to haskell-updates: https://git.io/JvR0s
werner291 has joined #nixos
komasa has quit [Remote host closed the connection]
coco has quit [Ping timeout: 265 seconds]
komasa has joined #nixos
nschoe has joined #nixos
<{^_^}> [nixpkgs] @peti pushed 47 commits to haskell-updates: https://git.io/JvR0P
<{^_^}> [nixpkgs] @xfix opened pull request #80714 → icon-lang: fix build → https://git.io/JvR01
<steevveen> I thought I could have all parent dependencies using the command `nix why-depends /nix/store/r12lm........-ghc-8.4.4` but it complains it lacks another parameter, so I guess it is a tool for expressing the link between two package. What if I want to have the list of all derivation that are depending on one nix-store entry ?
<multun> steevveen: nix-store --referrers
<{^_^}> [nixpkgs] @peti pushed 29 commits to haskell-updates: https://git.io/JvR0Q
<multun> steevveen: --referrers-closure also gives indirect dependencies
<steevveen> nix-store --referrers /nix/store/qskdjfhqskjhgf... complains "no operation specified" what am I missing ?
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage-packages.nix: automatic Haskell package set update »: https://git.io/JvR0F
<steevveen> nix-store -q -referrers /nix/store/dfssjhgjshgf... works fine, thanks !
<{^_^}> [nixpkgs] @jtojnar opened pull request #80715 → gimp: 2.10.14 → 2.10.16 → https://git.io/JvR0A
<{^_^}> [nixpkgs] @gebner merged pull request #80652 → [20.03] lean: 3.4.2 -> 3.5.1 → https://git.io/JvRJ3
<{^_^}> [nixpkgs] @gebner pushed 2 commits to release-20.03: https://git.io/JvR0p
<infinisil> kiloreux: What about `nix-instantiate file.nix -A myApp -vv`, is that similarly slow? If so, you can get an idea of where it might spend its time because of the output with -vv
sigmundv has joined #nixos
<{^_^}> [nixpkgs] @peti pushed 25 commits to haskell-updates: https://git.io/JvRET
<{^_^}> [nixpkgs] @r-ryantm opened pull request #80716 → seafile-shared: 7.0.5 -> 7.0.6 → https://git.io/JvREk
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage-packages.nix: automatic Haskell package set update »: https://git.io/JvREq
<{^_^}> [nixpkgs] @bennofs merged pull request #80712 → weechatScripts.weechat-matrix: enable on darwin → https://git.io/JvRRc
<{^_^}> [nixpkgs] @bennofs pushed to master « weechatScripts.weechat-matrix: enable on darwin »: https://git.io/JvREO
civodul has quit [Ping timeout: 240 seconds]
iyzsong has quit [Ping timeout: 240 seconds]
wavirc22 has quit [Ping timeout: 260 seconds]
wavirc22 has joined #nixos
<{^_^}> [nixpkgs] @romildo opened pull request #80717 → qogir-theme: 2019-10-25 -> 2020-02-20 → https://git.io/JvRE8
coco has joined #nixos
<kiloreux> infinisil, nothing significant there. The issue is, if I run this command on my machine it finishes in less than 2 seconds. But when I run it on an AMI image that I baked. It takes a lot of time.
wavirc22 has quit [Ping timeout: 240 seconds]
<kiloreux> I am trying to understand what could be different inside the new AMI I am building.
chagra_ has joined #nixos
<{^_^}> [nixpkgs] @rnhmjoj opened pull request #80718 → pythonPackages.pytes-timeout: disable flaky test → https://git.io/JvREr
<{^_^}> [nixpkgs] @mucaho opened pull request #80719 → clingcon: init at 3.3.0 → https://git.io/JvREi
mlatus_ has joined #nixos
mlatus_ has quit [Client Quit]
sascha-grunert has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @romildo opened pull request #80720 → qogir-icon-theme: 2020-01-29 -> 2020-02-21 → https://git.io/JvREM
plutes has quit [Read error: Connection reset by peer]
tilcreator has quit [Ping timeout: 240 seconds]
Mateon1 has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @jtojnar merged pull request #80715 → gimp: 2.10.14 → 2.10.16 → https://git.io/JvR0A
<{^_^}> [nixpkgs] @jtojnar pushed 4 commits to master: https://git.io/JvRE7
steevveen has quit [Remote host closed the connection]
zupo has joined #nixos
Mateon2 has joined #nixos
claudiii has joined #nixos
phaebz` has joined #nixos
veske2 has quit [Quit: This computer has gone to sleep]
veske has quit [Quit: This computer has gone to sleep]
mlatus is now known as loka
phaebz has quit [Ping timeout: 240 seconds]
loka is now known as mlatus
tilcreator has joined #nixos
kiloreux has quit [Remote host closed the connection]
cosimone has quit [Quit: Terminated!]
<ircfreenodenetlo> hi everyone, I have a local fork of xscreensaver and I would like to install it system-wide (in place of the original one) on a nixos system set on stable channel. What would be the best way to achieve something like this?
nschoe has quit [Quit: Program. Terminated.]
anohigisavay has quit [Quit: Konversation terminated!]
<ghasshee> Hi, I have another question. I copied giant gibytes video files into an encrypted partition over NixOS1903 in the last week. Then OS behaved incredibly slow. Kcryptd threads were not consuming cpu sharing then. Does anyone know what was going internally then?
<ghasshee> Kcryptd threads were not cosuming cpu sharing so much then.
pnobre has joined #nixos
<pnobre> hey there... giving nixos a go but having issues in logging in as a normal user (can login with root without any problems) on gdm... same user is able to login using sddm... any clues ?
<ghasshee> Were GPU calculations off ? I did not check that yet..
pnobre has quit [Quit: Leaving]
noudle has quit []
pnobre_ has joined #nixos
philr has joined #nixos
veske has joined #nixos
nschoe has joined #nixos
veske2 has joined #nixos
fendor has joined #nixos
rootatarch has quit [Quit: WeeChat 2.7]
<{^_^}> [nixpkgs] @emacsomancer opened pull request #80721 → mullvad-vpn: 2020.2 -> 2020.3 → https://git.io/JvRzT
asbachb has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @mmahut merged pull request #80710 → libfido2: build only Linux → https://git.io/JvRBM
<{^_^}> [nixpkgs] @mmahut pushed 2 commits to master: https://git.io/JvRzI
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Makaveli7 has quit [Quit: WeeChat 2.7]
zupo has joined #nixos
<{^_^}> [nixpkgs] @mmahut opened pull request #80722 → libfido2: evaluate systemd only on Linux → https://git.io/JvRz3
<{^_^}> [nixpkgs] @marsam opened pull request #80723 → go-tools: 2019.2.2 -> 2020.1.2 → https://git.io/JvRzG
zupo_ has joined #nixos
veske2 has quit [Quit: This computer has gone to sleep]
veske has quit [Quit: This computer has gone to sleep]
zupo has quit [Ping timeout: 258 seconds]
<{^_^}> [nixpkgs] @jtojnar opened pull request #80724 → Experimental nix → https://git.io/JvRzl
veske has joined #nixos
veske2 has joined #nixos
zupo_ has quit [Client Quit]
chimay has joined #nixos
zupo has joined #nixos
pnobre_ has quit [Ping timeout: 255 seconds]
veske has quit [Client Quit]
veske2 has quit [Client Quit]
<{^_^}> [nixpkgs] @marsam opened pull request #80725 → dune_2: 2.3.0 -> 2.3.1 → https://git.io/JvRzo
veske2 has joined #nixos
veske has joined #nixos
<{^_^}> [nixpkgs] @domenkozar pushed to haskell-updates « haskellPackages.crpytonite: fix build »: https://git.io/JvRz6
<jtojnar> pnobre_ anything in journal?
domogled has joined #nixos
veske has quit [Client Quit]
veske2 has quit [Client Quit]
<jtojnar> ,overlay loyon
<{^_^}> loyon: Overlays look like `self: super: { foo = ...; }`. Use the self argument to get dependencies, super for overriding things and library functions (including callPackage). More info: https://nixos.org/nixpkgs/manual/#sec-overlays-install
Rusty1 has joined #nixos
Arahael has quit [Ping timeout: 255 seconds]
hyper_ch2 has joined #nixos
<{^_^}> [nixpkgs] @marsam opened pull request #80726 → fluent-bit: 1.3.7 -> 1.3.8 → https://git.io/JvRgT
balsoft has joined #nixos
<{^_^}> [nixpkgs] @marsam merged pull request #80442 → wal-g: 0.2.0 -> 0.2.14 → https://git.io/Jv4r6
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JvRgL
<jluttine_> how can i find the store path of openssl.out ?
<{^_^}> [nixpkgs] @Valodim opened pull request #80727 → sphinxsearch: Add support for MySQL & xmlpipe2 → https://git.io/JvRgY
jluttine_ is now known as jluttine
<jluttine> btw, nixos wiki down?
<jtojnar> jluttine_ nix-build --no-out-link -A openssl.out
HugoDaniel has quit [Ping timeout: 260 seconds]
<jtojnar> seems to work for me
<jtojnar> the wiki
<jluttine> ah, yeah, now the wiki works..
<jluttine> jtojnar: error: getting status of '/home/jluttine/default.nix': No such file or directory
pnobre_ has joined #nixos
<jluttine> needed to be: nix-build '<nixpkgs>' --no-out-link -A openssl.out
<jtojnar> when running outside of nixpkgs directory: nix-build '<nixpkgs>' --no-out-link -A openssl.out
<jluttine> thanks!
inkbottle has joined #nixos
zebrag has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @timokau opened pull request #80728 → maven: make jdk overridable → https://git.io/JvRg5
<jluttine> my weechat relay has broken, perhaps after some recent-ish updates in weechat stuff in nixos/nixpkgs.. i can't connect to my weechat from my android app. i see the following error in my weechat: error -87 No supported cipher suites have been found
<jluttine> any ideas what could be wrong?
<evanjs> clever: looking at alternatives to embedding the kernel in the initrd. hrmmmm... https://wiki.archlinux.org/index.php/EFISTUB#Using_a_startup.nsh_script
<evanjs> Wonder how I'd put this in the mini-system setup, though
<{^_^}> [nixpkgs] @romildo opened pull request #80729 → nordic: 1.6.5 -> 1.8.1 → https://git.io/JvR2t
<evanjs> i.e. one image... though I guess the goal is just to get it to the same place on the targert system, right? e.g. I don't need to "make" an ESP partition in the nix build script haha. Just trying to sort the steps/specs out in my head atm
HugoDaniel has joined #nixos
<{^_^}> [nixpkgs] @kampka opened pull request #80730 → matrix-appservice-slack: 1.0.2 -> 1.1.0 → https://git.io/JvR2O
<{^_^}> [nixpkgs] @emmanuelrosa opened pull request #80731 → electrum: remove qdarkstyle<2.7 restriction → https://git.io/JvR2s
ryantrinkle has quit [Ping timeout: 240 seconds]
reallymemorable has joined #nixos
<{^_^}> [nixpkgs] @romildo opened pull request #80732 → nordic-polar: 1.5.0 -> 1.6.0 → https://git.io/JvR2X
<balsoft> Hi, is there any way to get the "final state" of some config attribute (i.e. after all other modules have been merged) in a module? I thought I have seen this done somewhere
<balsoft> Hm, no need to, sorry
<balsoft> Though I'd still be glad to hear if this is possible
<balsoft> Basically what I wanted to do is only modify certain systemd units and never add any, but now I don't think there's a need for that
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
vidbina has joined #nixos
philr has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @vbgl pushed commit from @marsam to master « dune_2: 2.3.0 -> 2.3.1 »: https://git.io/JvRal
<{^_^}> [nixpkgs] @vbgl merged pull request #80725 → dune_2: 2.3.0 -> 2.3.1 → https://git.io/JvRzo
<eyJhb> How can I get vim_configurable to have python3 support?
jluttine has quit [Quit: WeeChat 2.7]
jluttine has joined #nixos
Arahael has joined #nixos
cosimone has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #80733 → sunvox: 1.9.5 -> 1.9.5c → https://git.io/JvRaz
<jluttine> got my problem solved: just restarted weechat :D :D perhaps a system upgrade while weechat was running messed up weechat
LysergicDreams has quit [Ping timeout: 265 seconds]
LysergicDreams has joined #nixos
pwaller[m] has joined #nixos
gustavderdrache has joined #nixos
bvdw has quit [Read error: Connection reset by peer]
bvdw has joined #nixos
<{^_^}> [nixpkgs] @romildo merged pull request #80530 → numix-icon-theme-square: 19.09.20 -> 19.12.27 → https://git.io/JvBmc
<{^_^}> [nixpkgs] @romildo pushed 4 commits to master: https://git.io/JvRaD
kazimazi has joined #nixos
<aanderse> Jan Tojnar: i can't seem to find issue where you mention using mkMerge in modules over // ... can you please provide link?
<aanderse> cc marek
<jtojnar> aaron, I am not sure there was an issue
<aanderse> 🤔
<jtojnar> we just fixed that as we found it
<jtojnar> the only relevant thing is https://github.com/NixOS/nixpkgs/pull/72949
<{^_^}> #72949 (by Infinisil, 15 weeks ago, open): Prevent `mkIf`'s from being `//`'d, and co.
<aanderse> ahhh, that is the one. it is a nice explanation to link
<aanderse> and it was infinisil not you... my bad
ravndal has quit [Remote host closed the connection]
<kazimazi> hi I have a uni assignment in which I need to set up an Oracle Database and I have difficulties installing it. Name of the derivatio in nixpkgs is oracleXE. Nix cannot install it so I used "nix-store --add-fixed sha256 oracle-xe-11.2.0-1.0.x86_64.rpm" as suggested, but I#
<kazimazi> m not sure whats next. (sorry accidentally sent it in 2)
ravndal has joined #nixos
<aanderse> thanks again Jan Tojnar :)
<aanderse> jtojnar++
<{^_^}> jtojnar's karma got increased to 30
<{^_^}> [nixpkgs] @grahamc merged pull request #80446 → ssb-patchwork: 3.17.2 -> 3.17.4 → https://git.io/Jv46s
<{^_^}> [nixpkgs] @grahamc pushed 3 commits to master: https://git.io/JvRVL
<jtojnar> kazimazi it is possible that the hash of the RPM file changed
<jtojnar> you might need to replace it in in the Nix expression for the one printed by the nix-store/nix-prefetch-uurl
alexherbo2 has quit [Quit: The Lounge - https://thelounge.chat]
<marek> jtojnar++ aanderse++
<{^_^}> aanderse's karma got increased to 17, jtojnar's karma got increased to 31
<jtojnar> kazimazi if you used nix-store --add-fixed it does not seem to print the hash so you will need to get it using `nix --option experimental-features nix-command hash-path $pathReturnedByTheNixStoreCommand`
<kazimazi> jtojnar thank you I'm checking it
matthiaskrgr has joined #nixos
<{^_^}> [nixpkgs] @arnoldfarkas closed pull request #80341 → libuv: disable test ipc_closed_handle → https://git.io/Jv8Ho
<{^_^}> [nixpkgs] @danieldk opened pull request #80734 → sentencepiece: set platforms to unix to support Darwin → https://git.io/JvRV4
wavirc22 has joined #nixos
<{^_^}> [nixpkgs] @timokau merged pull request #80728 → maven: make jdk overridable → https://git.io/JvRg5
<{^_^}> [nixpkgs] @timokau pushed 2 commits to master: https://git.io/JvRV2
<{^_^}> [nixpkgs] @mmahut merged pull request #80722 → libfido2: evaluate systemd only on Linux → https://git.io/JvRz3
<{^_^}> [nixpkgs] @mmahut pushed 2 commits to master: https://git.io/JvRVV
<{^_^}> [nixpkgs] @timokau opened pull request #80735 → [20.03] maven: make jdk overridable → https://git.io/JvRV1
Neo-- has joined #nixos
phaebz` has quit [Ping timeout: 240 seconds]
<kazimazi> jtojnar I couldn't make it work, it might have been due to my inexperience.
<jtojnar> kazimazi what are you stuck on?
<kazimazi> jtojnar So I cloned nixpkgs and edited the sha of oracle-xe/default.nix then I ´nix-env -f $NIXPKGS -iA oracleXE´ (set the $NIXPKGS beforehand) and got the same error that nix couldn't download it
endforma1 has joined #nixos
<kazimazi> I might be going in a totally wrong way that's my first tring to "contribute"
hyper_ch2 has quit [Remote host closed the connection]
HugoDaniel has quit [Quit: leaving]
ryantrinkle has joined #nixos
fenedor has joined #nixos
fendor has quit [Ping timeout: 265 seconds]
ddellacosta has joined #nixos
<{^_^}> [nixops] @grahamc opened pull request #1227 → Python 2to3, too → https://git.io/JvRwn
<gchristensen> nixops users, please try this PR: https://github.com/NixOS/nixops/pull/1227
<{^_^}> nixops#1227 (by grahamc, 53 seconds ago, open): Python 2to3, too
<{^_^}> [nixpkgs] @joachifm merged pull request #80731 → electrum: remove qdarkstyle<2.7 restriction → https://git.io/JvR2s
<{^_^}> [nixpkgs] @joachifm pushed 2 commits to master: https://git.io/JvRwW
<{^_^}> [nixpkgs] @joachifm merged pull request #80642 → pax-utils: 1.2.4 -> 1.2.5 → https://git.io/JvBxA
<{^_^}> [nixpkgs] @joachifm pushed 2 commits to master: https://git.io/JvRwl
linarcx has joined #nixos
<{^_^}> [nixpkgs] @mmahut opened pull request #80736 → nixos/virtualbox-image: add params → https://git.io/JvRw4
<{^_^}> [nixpkgs] @r-ryantm opened pull request #80737 → spectmorph: 0.5.0 -> 0.5.1 → https://git.io/JvRwR
mlatus_ has joined #nixos
mlatus_ has quit [Remote host closed the connection]
<philipp[m]> Wait, flakes are already rolling out?
<philipp[m]> At least that's what I'm getting from that office-hours announcement. Can I see the state of the rollout anywhere?
<gchristensen> philipp[m]: people think they are, and the purpose of office hours today is to talk about the reality of it
<gchristensen> (which is that they aren't)
<jared-w> gchristensen: You mean to say that an unstable opt-in way to test out an experimental feature means it's not officially supported and stable? *gasp*
<philipp[m]> Alright, thought I had missed something.
<jared-w> gchristensen: Unrelated note. It'd be nice if there was a python3toRust out there somewhere... :p
<philipp[m]> (For the record I trust the people that are involved with the judgment when they are ready for release and I'm looking forward to the day they are released)
<gchristensen> philipp[m]: thanks :) there were a few things over the last weeks that together looked really fishy and strange as if flakes were becoming more official than the RFC allows them. we'll be talking about what happened when and why, and the current state of things and how to go forward from here
typetetris has quit [Quit: Connection closed for inactivity]
aminechikhaoui has quit [Quit: The Lounge - https://thelounge.github.io]
<evanjs> okay so I'm unsure if it's just taffybar or GDK_PIXBUF or something with the desktop files, but is anybody else getting "Failed to load icon from filepath clion" errors? Maybe in the dock or, well, taffybar :P
aminechikhaoui has joined #nixos
<evanjs> *filepath <app_name>
<evanjs> happens with multiple, but not all applications
ATuin has joined #nixos
nschoe has quit [Ping timeout: 258 seconds]
<mdash> yeargh. Trying to get started using ReasonML and for some reason they love to distribute compiled executables in their source packages
<mdash> it doesn't have to be this hard guys
<simpson> It *gets* to be this hard.
<Taneb> mdash: are they required?
<mdash> Taneb: Supposedly they can be built from source. We'll see.
<mdash> (Oh look, the package manager has compiled executables in its distribution too)
<pwaller[m]> Cross-compiling clang (x86_64 build, aarch64 host) is broken. I managed to identify through bisection that it first broke in clang_5 for this commit: https://github.com/NixOS/nixpkgs/commit/6e7e22da70850e18d7949b95b215c011b9afda70
<pwaller[m]> The breakage results in "error: attribute 'llvmPackages_5' missing, at nixpkgs/pkgs/top-level/all-packages.nix:6801:27" which is https://github.com/NixOS/nixpkgs/blob/6e7e22da70850e18d7949b95b215c011b9afda70/pkgs/top-level/all-packages.nix#L6801
<pwaller[m]> By removing pieces of the patch, the problematic construct appears to be the use of `targetLlvmLibraries.compiler-rt` in `extraPackages` for `libstdcxxClang` (line 49) of the patch. I'm new to both nix and cross-compiling, but I have read a lot and I'm getting some confidence. Anyone able to see the issue in these lines or ping someone who might easily spot it?
<pwaller[m]> `extraBuildCommands = mkExtraBuildCommands cc;` for `libstdcxxClang` is also problematic. If I comment out those two lines, then `nix-instantiate` succeeds.
chagra_ has quit [Ping timeout: 255 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #80738 → suricata: 5.0.1 -> 5.0.2 → https://git.io/JvRri
chagra_ has joined #nixos
<evanjs> hrm... got a few more icons working by removing a postInstall gdk_pixbuf wrapper I had on taffybar but various icons still don't show :/
stree has joined #nixos
phaebz` has joined #nixos
Ianulus has joined #nixos
coco has quit [Quit: WeeChat 2.6]
<johanot> hmm.. I don't know what I think about this: https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/programs/gnupg.nix#L71 . this gives me an eval-dependency on pkgs.pinentry, even though I never enable the gnupg module. What is the official opinion about module options defined with eager references to packages? :)
iqubic` has quit [Quit: ERC (IRC client for Emacs 28.0.50)]
iqubic has joined #nixos
tomberek has joined #nixos
orivej has joined #nixos
<{^_^}> [nixpkgs] @Mic92 merged pull request #80370 → rambox: don't build from sources → https://git.io/Jv4kO
<{^_^}> [nixpkgs] @Mic92 pushed 3 commits to master: https://git.io/JvRrd
v88m has joined #nixos
<{^_^}> [nixpkgs] @bjornfor merged pull request #80695 → python27Packages.pyodbc: 4.0.28 -> 4.0.30 → https://git.io/JvRCD
<{^_^}> [nixpkgs] @bjornfor pushed commit from @r-ryantm to master « python27Packages.pyodbc: 4.0.28 -> 4.0.30 »: https://git.io/JvRo4
<{^_^}> [nixpkgs] @Mic92 merged pull request #80377 → slack: 4.2.0 -> 4.3.3, add Darwin target → https://git.io/Jv4mH
<{^_^}> [nixpkgs] @Mic92 pushed 4 commits to master: https://git.io/JvRoS
gnidorah has joined #nixos
phaebz` has quit [Ping timeout: 240 seconds]
<gnidorah> jtojnar: hi! just a friendly reminder "i could review #71079 mid february"
<{^_^}> https://github.com/NixOS/nixpkgs/pull/71079 (by gnidorah, 18 weeks ago, open): Theming options for Gtk and Qt
<mkaito> I'm trying to get the modSha256 for buildGoModule, so I gave it an incorrect one, but then it tells me it wanted "sha256-ye8H9kolO4hCCSCAhMic/z76u6wxiGyTl+xzlOOfB4A=" which... kinda looks like base64? what's that and what hash does it want?
Tucky has quit [Quit: WeeChat 2.7]
stree has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @jpgneves opened pull request #80739 → bazel: 2.0.0 -> 2.1.0 → https://git.io/JvRox
stree has joined #nixos
stree has quit [Client Quit]
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/0bffd2150e5 (from 10 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
stree has joined #nixos
stree has quit [Remote host closed the connection]
stree has joined #nixos
zupo has joined #nixos
vidbina has quit [Ping timeout: 240 seconds]
zeta_0 has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #80741 → tixati: 2.66 -> 2.67 → https://git.io/JvRKa
<{^_^}> [nixpkgs] @Infinisil merged pull request #80706 → swift: Fix build for glibc 2.30 → https://git.io/JvR85
<{^_^}> [nixpkgs] @Infinisil pushed 2 commits to master: https://git.io/JvRKV
<{^_^}> [nixpkgs] @Infinisil pushed to release-20.03 « swift: Fix build for glibc 2.30 »: https://git.io/JvRKr
<zeta_0> hello there, yesterday i installed vscodium by following the nixos wiki instructions, but for some reason vscodium is not opening and is throwing these errors? https://hastebin.com/lomemiyifa.rb
<zeta_0> have any of you had similar issues with vscodium?
thblt has joined #nixos
<thblt> Using stdenv.lib.overrideDerivation, is there a way to append to a variable without reinitializing this variable? Specifically, I want to add a configure flag to Emacs https://github.com/NixOS/nixpkgs/blob/b0ccd6dd16909c8639c2d9bee7dd2a2a0ac74c30/pkgs/applications/editors/emacs/default.nix#L75-L87
<qyliss> thblt: I think you probably want overrideAttrs instead of overrideDerivation
<qyliss> thblt: here's an example where I append to a list of patches: https://git.qyliss.net/nixlib/tree/nixpkgs-overlays/patches/dino/default.nix#n4
<thblt> Thanks!
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
emacsoma1 has joined #nixos
emacsomancer has quit [Read error: Connection reset by peer]
<zeta_0> i pasted my question in ##vs-code but that channel looks dead
<thblt> qyliss: it worked (and I think I understand what it's doing), thanks again!
<{^_^}> [nixpkgs] @fusion809 opened pull request #80742 → marvin: 20.4.0 -> 20.5.0 → https://git.io/JvR69
chloekek has quit [Quit: WeeChat 2.7]
cosimone_ has joined #nixos
civodul has joined #nixos
fusion809 has quit [Remote host closed the connection]
erasmas has joined #nixos
opthomasprime has joined #nixos
smatting has joined #nixos
cosimone has quit [Read error: Connection reset by peer]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #80743 → tracker: 2.3.1 -> 2.3.2 → https://git.io/JvR6p
alexherbo2 has joined #nixos
cosimone has joined #nixos
cosimone_ has quit [Ping timeout: 258 seconds]
risson has joined #nixos
emacsoma1 is now known as emacsomancer
kazimazi has quit [Remote host closed the connection]
ixxie has joined #nixos
<{^_^}> [nixpkgs] @Infinisil opened pull request #80744 → turses: Fix build → https://git.io/JvRiB
cosimone has quit [Quit: Terminated!]
<{^_^}> [nixpkgs] @hedning closed pull request #80743 → tracker: 2.3.1 -> 2.3.2 → https://git.io/JvR6p
cole-h has joined #nixos
<thblt> zeta_0: `nix-env -iA nixos.vscodium; codium` works for me… mkdir not found is *weird*. Are you on NixOS?
mexisme has joined #nixos
kazimazi has joined #nixos
thblt has left #nixos ["ERC (IRC client for Emacs 28.0.50)"]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #80745 → whois: 5.5.5 -> 5.5.6 → https://git.io/JvRiK
knupfer has joined #nixos
erictapen has joined #nixos
mexisme has quit [Ping timeout: 260 seconds]
<cole-h> Is there an option in NixOS similar to pacman's `IgnorePkg`? Basically, when you update, it won't update that package (and thereby won't build it if it's not in the cache)
<andi-> not really unless you explicitly pin that to some revision
asbachb has joined #nixos
<asbachb> Do I get it right, that overlays are preferred over pkgOverride?
<infinisil> asbachb: Yup
<asbachb> Is it possible to write a overlay directly into a configuration.nix (without placing it somewhere else=?
<infinisil> asbachb: nixpkgs.overlays = [ (self: super: { ... }) ]
<infinisil> So yup :)
<asbachb> infinisil: Thanks. I'll give it a try!
<infinisil> In fact overlays defined like this are the only ones applied to nixos (by default)
<{^_^}> [nixpkgs] @Infinisil merged pull request #80625 → pysam: 0.15.3 -> 0.15.4 (and disabling tests) → https://git.io/JvBdQ
<{^_^}> [nixpkgs] @Infinisil pushed 2 commits to master: https://git.io/JvRih
Naptra has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @Infinisil pushed commit from @unode to release-20.03 « pysam: 0.15.3 -> 0.15.4 »: https://git.io/JvRPv
alexherbo22 has joined #nixos
alexherbo2 has quit [Ping timeout: 255 seconds]
alexherbo22 is now known as alexherbo2
thblt has joined #nixos
thblt has left #nixos ["ERC (IRC client for Emacs 28.0.50)"]
<zeta_0> thblt: yes, i am on nixos and i followed these instructions exactly: https://nixos.wiki/wiki/VSCodium
<zeta_0> thblt left right before i responded
<zeta_0> i am also using xmonad so maybe that's what is causing vscodium to not work, i have no idea?
<{^_^}> [nixpkgs] @zimbatm merged pull request #80554 → google-cloud-sdk: fix Darwin build by only stripping local symbols → https://git.io/JvB4K
<{^_^}> [nixpkgs] @zimbatm pushed commit from @honkfestival to master « google-cloud-sdk: fix Darwin build by only stripping local symbols (#80554) »: https://git.io/JvRPn
<{^_^}> [nixpkgs] @zimbatm pushed commit from @honkfestival to release-20.03 « google-cloud-sdk: fix Darwin build by only stripping local symbols (#80554) »: https://git.io/JvRPc
<{^_^}> Channel nixos-19.09-small advanced to https://github.com/NixOS/nixpkgs/commit/b23f2112f5a (from 18 hours ago, history: https://channels.nix.gsc.io/nixos-19.09-small)
<{^_^}> [nixpkgs] @Ma27 merged pull request #80650 → grafana: 6.6.1 -> 6.6.2 → https://git.io/JvRvf
<{^_^}> [nixpkgs] @Ma27 pushed 2 commits to master: https://git.io/JvRPg
<{^_^}> [nixpkgs] @domenkozar pushed to haskell-updates « servant-server: fix build »: https://git.io/JvRPy
sigmundv has quit [Ping timeout: 240 seconds]
andreas303 has quit [Remote host closed the connection]
ATuin has quit [Ping timeout: 260 seconds]
andreas303 has joined #nixos
ambro718 has joined #nixos
gagbo has quit [Ping timeout: 258 seconds]
magnetophon has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @Ma27 pushed commit from @Frostman to release-20.03 « grafana: 6.6.1 -> 6.6.2 »: https://git.io/JvRXY
asbachb2 has joined #nixos
erasmas has quit [Read error: Connection reset by peer]
<kazimazi> can someone walk me through how I could install oracleXE?
<{^_^}> [nixpkgs] @Ma27 pushed commit from @Frostman to release-19.09 « grafana: 6.6.1 -> 6.6.2 »: https://git.io/JvRXG
<asbachb2> infinisil: Just to be sure: This looks good? https://gist.github.com/asbachb/1bb47a7a9e0bfaa2db46204baacd6db0
magnetophon has joined #nixos
asbachb2 has quit [Remote host closed the connection]
<aswanson> I'm attempting to run a factorio server via `services.factorio.enable`. I'm on nixos-19.09 which uses v0.16.51 of the headless factorio server which isn't compatible with up to date installations of factorio. Nixos-unstable has the latest version of factorio-headless. I attempted to use the version from unstable via nixpkgs.config.packagesOverrides but it doesn't seem to be working. Will
<aswanson> packageOverrides impact a service like I'm expecting it to?
<ircfreenodenetlo> Jan Tojnar: thanks a lot, I just created my first overlay and it is working like a charm!
<zeta_0> any ideas on what configuration i'd need to add to xmonad to get vscodium working? apologies for being off topic
krasnij has joined #nixos
<{^_^}> [nixpkgs] @rnhmjoj merged pull request #71079 → Theming options for Gtk and Qt → https://git.io/JvRXo
<{^_^}> [nixpkgs] @rnhmjoj pushed 7 commits to master: https://git.io/JvRXK
ATuin has joined #nixos
smatting has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @vcunat opened pull request #80746 → openssl_1_0_2: mark as insecure; fixes #77503 (kinda) → https://git.io/JvR1f
xkapastel has quit [Quit: Connection closed for inactivity]
ATuin has quit [Ping timeout: 268 seconds]
<infinisil> aswanson: Should be `self.adoptopenjdk-openj9-bin-11` instead of `super.adoptopenjdk-openj9-bin-11`
<{^_^}> [nixpkgs] @Infinisil merged pull request #80744 → turses: Fix build → https://git.io/JvRiB
<{^_^}> [nixpkgs] @Infinisil pushed 2 commits to master: https://git.io/JvR1x
<aswanson> asbachb2: that was meant for you
<{^_^}> [nixpkgs] @Infinisil pushed to release-20.03 « turses: Fix build »: https://git.io/JvRMU
simbergm1 has quit [Ping timeout: 246 seconds]
chvp has quit [Ping timeout: 246 seconds]
pheoxy has quit [Ping timeout: 246 seconds]
wak-work has quit [Ping timeout: 246 seconds]
pwaller[m] has quit [Ping timeout: 240 seconds]
ircfreenodenetlo has quit [Ping timeout: 240 seconds]
balsoft has quit [Ping timeout: 240 seconds]
sebass[m] has quit [Ping timeout: 240 seconds]
nrdxp[m] has quit [Ping timeout: 240 seconds]
val2229[m] has quit [Ping timeout: 240 seconds]
neonfuz2 has quit [Ping timeout: 240 seconds]
siraben has quit [Ping timeout: 240 seconds]
emily has quit [Ping timeout: 240 seconds]
Ovsyanka[m] has quit [Ping timeout: 245 seconds]
tyrion-mx has quit [Ping timeout: 245 seconds]
devis350[m] has quit [Ping timeout: 245 seconds]
pinion[m] has quit [Ping timeout: 245 seconds]
truby has quit [Ping timeout: 245 seconds]
pentadyne[m] has quit [Ping timeout: 245 seconds]
musicmatze has quit [Ping timeout: 245 seconds]
maddo has quit [Quit: See ya]
edomfjp[m]1 has quit [Ping timeout: 252 seconds]
emmanuelrosa[m] has quit [Ping timeout: 252 seconds]
Leira[m] has quit [Ping timeout: 252 seconds]
isgy[m] has quit [Ping timeout: 252 seconds]
rnhmjoj has quit [Ping timeout: 252 seconds]
p-h[m] has quit [Ping timeout: 252 seconds]
sreybastien[m] has quit [Ping timeout: 252 seconds]
petersjt014[m] has quit [Ping timeout: 252 seconds]
babariviere[m] has quit [Ping timeout: 252 seconds]
kennykwey[m] has quit [Ping timeout: 252 seconds]
aterius has quit [Ping timeout: 252 seconds]
qqlq has quit [Ping timeout: 252 seconds]
Irenes[m] has quit [Ping timeout: 252 seconds]
gustavderdrache[ has quit [Ping timeout: 252 seconds]
Dandellion has quit [Ping timeout: 252 seconds]
flacks_ has quit [Ping timeout: 252 seconds]
Victor[m] has quit [Ping timeout: 252 seconds]
MerlinGttlinger[ has quit [Ping timeout: 252 seconds]
puzzlewolf has quit [Ping timeout: 246 seconds]
sehqlr[m] has quit [Ping timeout: 246 seconds]
st3r4g[m] has quit [Ping timeout: 246 seconds]
schmittlauch[m] has quit [Ping timeout: 246 seconds]
aanderse has quit [Ping timeout: 246 seconds]
luc65r[m] has quit [Ping timeout: 240 seconds]
eol[m] has quit [Ping timeout: 240 seconds]
haruko[m] has quit [Ping timeout: 240 seconds]
mica[m] has quit [Ping timeout: 240 seconds]
blitzclone_ has quit [Ping timeout: 240 seconds]
dpc has quit [Ping timeout: 240 seconds]
veleiro has quit [Ping timeout: 240 seconds]
florianjacob has quit [Ping timeout: 248 seconds]
srid[m] has quit [Ping timeout: 248 seconds]
aleph9[m] has quit [Ping timeout: 248 seconds]
xavierzwirtz[m] has quit [Ping timeout: 248 seconds]
goibhniu has quit [Ping timeout: 248 seconds]
M2easy2do[m] has quit [Ping timeout: 248 seconds]
PlayfulCuriosity has quit [Ping timeout: 248 seconds]
hr[m] has quit [Ping timeout: 248 seconds]
geemili has quit [Ping timeout: 248 seconds]
Pasha[m] has quit [Ping timeout: 248 seconds]
mupf[m] has quit [Ping timeout: 248 seconds]
mudrii[m] has quit [Ping timeout: 248 seconds]
Notkea[m] has quit [Ping timeout: 248 seconds]
GerdFlaig[m] has quit [Ping timeout: 248 seconds]
Minijackson[m] has quit [Ping timeout: 248 seconds]
gsals[m] has quit [Ping timeout: 248 seconds]
test53453535[m] has quit [Ping timeout: 272 seconds]
ZerataX has quit [Ping timeout: 272 seconds]
abbec has quit [Ping timeout: 256 seconds]
Logan[m] has quit [Ping timeout: 256 seconds]
boogiewoogie[m] has quit [Ping timeout: 256 seconds]
Keith[m] has quit [Ping timeout: 256 seconds]
jbbr[m] has quit [Ping timeout: 256 seconds]
pkolloch[m] has quit [Ping timeout: 256 seconds]
hpfr[m] has quit [Ping timeout: 256 seconds]
bennofs[m] has quit [Ping timeout: 256 seconds]
Guest95114 has quit [Ping timeout: 245 seconds]
cornu has quit [Ping timeout: 245 seconds]
wjjunyor[m] has quit [Ping timeout: 245 seconds]
timokau[m] has quit [Ping timeout: 245 seconds]
joelwallis1[m] has quit [Ping timeout: 245 seconds]
maralorn[m] has quit [Ping timeout: 245 seconds]
pingveno[m] has quit [Ping timeout: 245 seconds]
yoho[m]1 has quit [Ping timeout: 245 seconds]
killercup[m] has quit [Ping timeout: 245 seconds]
Ericson2314 has quit [Ping timeout: 245 seconds]
nilsirl[m] has quit [Ping timeout: 245 seconds]
contrun[m] has quit [Ping timeout: 245 seconds]
cyberwolf[m] has quit [Ping timeout: 252 seconds]
the_pumpkin_man[ has quit [Ping timeout: 260 seconds]
gcoakes[m] has quit [Ping timeout: 260 seconds]
dot-product[m] has quit [Ping timeout: 260 seconds]
index-0[m] has quit [Ping timeout: 260 seconds]
fabiomen10[m] has quit [Ping timeout: 260 seconds]
gotofail[m] has quit [Ping timeout: 260 seconds]
wnklmnn[m] has quit [Ping timeout: 260 seconds]
eddyb has quit [Ping timeout: 260 seconds]
leons has quit [Ping timeout: 260 seconds]
kaychaks[m] has quit [Ping timeout: 260 seconds]
rycee has quit [Ping timeout: 260 seconds]
thefloweringash has quit [Ping timeout: 260 seconds]
fgaz has quit [Ping timeout: 260 seconds]
tek[m] has quit [Ping timeout: 252 seconds]
seb314[m] has quit [Ping timeout: 252 seconds]
hiroshi[m] has quit [Ping timeout: 252 seconds]
arcnmx has quit [Ping timeout: 252 seconds]
colemickens has quit [Ping timeout: 252 seconds]
layus[m] has quit [Ping timeout: 246 seconds]
tbenst[m] has quit [Ping timeout: 246 seconds]
sputny[m] has quit [Ping timeout: 246 seconds]
grahamc[m] has quit [Ping timeout: 246 seconds]
akapaka[m] has quit [Ping timeout: 246 seconds]
Jarva[m] has quit [Ping timeout: 246 seconds]
imj[m] has quit [Ping timeout: 246 seconds]
slby[m] has quit [Ping timeout: 246 seconds]
dyon[m] has quit [Ping timeout: 246 seconds]
HailSagan[m] has quit [Ping timeout: 246 seconds]
Criena has quit [Ping timeout: 246 seconds]
alan[m]1 has quit [Ping timeout: 246 seconds]
chatmaster5000[m has quit [Ping timeout: 246 seconds]
kraem[m] has quit [Ping timeout: 246 seconds]
grin[m] has quit [Ping timeout: 246 seconds]
hagelslag[m] has quit [Ping timeout: 246 seconds]
DenisLehmann[m] has quit [Ping timeout: 246 seconds]
Gaz[m]1 has quit [Ping timeout: 246 seconds]
slabity has quit [Ping timeout: 246 seconds]
denbrahe[m] has quit [Ping timeout: 246 seconds]
ilya-fedin has quit [Ping timeout: 246 seconds]
morgib[m] has quit [Ping timeout: 246 seconds]
mt[m] has quit [Ping timeout: 246 seconds]
webdavis has quit [Ping timeout: 246 seconds]
mkg20001 has quit [Ping timeout: 246 seconds]
haslersn has quit [Ping timeout: 246 seconds]
atopuzov[m] has quit [Ping timeout: 246 seconds]
wangoe[m] has quit [Ping timeout: 246 seconds]
frhun has quit [Ping timeout: 246 seconds]
kriteus[m] has quit [Ping timeout: 246 seconds]
Noughtmare[m] has quit [Ping timeout: 246 seconds]
Valodim[m] has quit [Ping timeout: 246 seconds]
jamiemagee has quit [Ping timeout: 240 seconds]
acowley[m] has quit [Ping timeout: 240 seconds]
alexarice[m] has quit [Ping timeout: 240 seconds]
Smith[m] has quit [Ping timeout: 240 seconds]
chris| has quit [Ping timeout: 240 seconds]
tokudan[m] has quit [Ping timeout: 240 seconds]
xa0[m] has quit [Ping timeout: 240 seconds]
rendeko[m] has quit [Ping timeout: 240 seconds]
bricewge has quit [Ping timeout: 240 seconds]
jschievink has quit [Ping timeout: 240 seconds]
keithy[m] has quit [Ping timeout: 240 seconds]
kiloreux_ has quit [Quit: Leaving]
TroelsAgergaardJ has quit [Ping timeout: 248 seconds]
aquarial has quit [Ping timeout: 248 seconds]
Nyanloutre[m] has quit [Ping timeout: 248 seconds]
l_inus[m] has quit [Ping timeout: 248 seconds]
quiet_laika[m] has quit [Ping timeout: 248 seconds]
li_matrix has quit [Ping timeout: 248 seconds]
ksixty has quit [Ping timeout: 248 seconds]
DanP[m] has quit [Ping timeout: 248 seconds]
bohan[m] has quit [Ping timeout: 248 seconds]
thequux[m] has quit [Ping timeout: 248 seconds]
Ox4A6F has quit [Ping timeout: 248 seconds]
EuAndreh[m] has quit [Ping timeout: 248 seconds]
jonge[m] has quit [Ping timeout: 248 seconds]
domenkozar[m] has quit [Ping timeout: 248 seconds]
MarkOtaris has quit [Ping timeout: 248 seconds]
MilkManzJourDadd has quit [Ping timeout: 248 seconds]
f0i[m] has quit [Ping timeout: 245 seconds]
wedens[m] has quit [Ping timeout: 245 seconds]
wildtrees[m] has quit [Ping timeout: 245 seconds]
quidel[m] has quit [Ping timeout: 245 seconds]
danielrf[m] has quit [Ping timeout: 245 seconds]
bachp has quit [Ping timeout: 246 seconds]
jtojnar has quit [Ping timeout: 246 seconds]
bobvanderlinden_ has quit [Ping timeout: 252 seconds]
Dave[m]1 has quit [Ping timeout: 252 seconds]
Zero-ghost[m] has quit [Ping timeout: 252 seconds]
tobia_[m] has quit [Ping timeout: 252 seconds]
softinio[m] has quit [Ping timeout: 252 seconds]
ongy[m] has quit [Ping timeout: 252 seconds]
rihardsk[m] has quit [Ping timeout: 252 seconds]
snupples[m] has quit [Ping timeout: 252 seconds]
sylvie[m] has quit [Ping timeout: 252 seconds]
david-sawatzke[m has quit [Ping timeout: 252 seconds]
nocoolnametom has quit [Ping timeout: 252 seconds]
lucasmarcos[m] has quit [Ping timeout: 256 seconds]
teuffil[m] has quit [Ping timeout: 256 seconds]
bb010g has quit [Ping timeout: 256 seconds]
tlater[m] has quit [Ping timeout: 256 seconds]
LinuxHackerman has quit [Ping timeout: 256 seconds]
tomberek[m] has quit [Ping timeout: 256 seconds]
marijan[m] has quit [Ping timeout: 256 seconds]
notice81cabbage[ has quit [Ping timeout: 256 seconds]
nolan_d has quit [Ping timeout: 256 seconds]
prusnak[m] has quit [Ping timeout: 256 seconds]
ma27[m] has quit [Ping timeout: 256 seconds]
alienpirate5 has quit [Ping timeout: 256 seconds]
wakest[m] has quit [Ping timeout: 256 seconds]
dtz has quit [Ping timeout: 256 seconds]
vaibhavsagar has quit [Ping timeout: 256 seconds]
ragge[m] has quit [Ping timeout: 240 seconds]
tsrt^ has quit [Max SendQ exceeded]
worldofpeace has quit [Ping timeout: 272 seconds]
ngerstle[m] has quit [Ping timeout: 272 seconds]
xavierm02 has quit [Ping timeout: 272 seconds]
pantomath[m] has quit [Ping timeout: 272 seconds]
philipp[m] has quit [Ping timeout: 272 seconds]
kiloreux has joined #nixos
jonreeve[m] has quit [Ping timeout: 260 seconds]
WillW has quit [Ping timeout: 260 seconds]
boturl4r[m] has quit [Ping timeout: 260 seconds]
psiperator[m] has quit [Ping timeout: 260 seconds]
phittacus has quit [Ping timeout: 260 seconds]
abbradar[m] has quit [Ping timeout: 260 seconds]
roberth has quit [Ping timeout: 260 seconds]
NoblesseOblige24 has quit [Ping timeout: 260 seconds]
deepchange[m] has quit [Ping timeout: 260 seconds]
pinage404[m] has quit [Ping timeout: 260 seconds]
spacekitteh[m] has quit [Ping timeout: 260 seconds]
shizonic has quit [Ping timeout: 272 seconds]
<evax> hi, I'm trying to build a minimal docker image to run an Rscript. I'm using dockerTools.buildImage and rWrapper to inject the R packages I depend on, but Rscript fails to start complaining it can't find packages that are part of the R distribution (namely utils and stats)
tsrt^ has joined #nixos
<evax> I suspect the docker image environment is too shallow and R is expecting more
zeta_0 has quit [Remote host closed the connection]
<evax> in particular which being in the path, but I tried and can't seem to find a way to make R happy. What would the nix way to setup the path for the entrypoint in a docker image?
maddo has joined #nixos
<evanjs> clever: hrm. any thoughts on how I might "easily" test a split initrd+kernel setup with nix and the mini-system setup I currently have? My current obstacle is "given a startup.nsh that needs to be in the ESP root, how do I get nix to generate an image (iso?) so I can like my efi directory into said image and load that image into QEMU?"
zeta_0 has joined #nixos
<evanjs> I guess TL;DR -- is there a mechanism in nixos for creating empty images? I'm seeing stuff under vmtools and etc, but can't figure out how I might just create a generic empty/formatted disk image
joelwallis1[m] has joined #nixos
kaychaks[m] has joined #nixos
yoho[m]1 has joined #nixos
pingveno[m] has joined #nixos
thefloweringash has joined #nixos
killercup[m] has joined #nixos
eddyb has joined #nixos
wjjunyor[m] has joined #nixos
maralorn[m] has joined #nixos
<clever> evanjs: vmTools.runInLinuxVm, will basically just run a buildCommand in qemu, as root
<clever> preVM and postVM can be used to attach an extra .img file to the vm and process it further
<clever> evanjs: nixpkgs/nixos/lib/make-disk-image.nix is an example usage
<evanjs> stumbled across that earlier, lemme go back and actually read it :P
<clever> evanjs: line 205 and onward, gets ran in the vm, as root
jonreeve[m] has joined #nixos
fabiomen10[m] has joined #nixos
WillW has joined #nixos
timokau[m] has joined #nixos
kazimazi has quit [Remote host closed the connection]
boturl4r[m] has joined #nixos
wnklmnn[m] has joined #nixos
abbradar[m] has joined #nixos
roberth has joined #nixos
danielrf[m] has joined #nixos
ghasshee has quit [Ping timeout: 240 seconds]
deepchange[m] has joined #nixos
wildtrees[m] has joined #nixos
gotofail[m] has joined #nixos
<zeta_0> clever: i installed vscodium using the nixos wiki instructions and it built without any errors, but when i rebooted and ran codium, it is throwing this weird error, i am using xmonad without a desktop environment, so i am guessing that it is missing some sort of functionality? https://hastebin.com/lomemiyifa.rb https://nixos.wiki/wiki/VSCodium
psiperator[m] has joined #nixos
<srk> evanjs: possibly also via virt-format from libguestfs
wedens[m] has joined #nixos
<clever> zeta_0: unknown, i dont use xmonad or codium
quidel[m] has joined #nixos
<aswanson> is this the completely wrong approach? I added the unstable channel as `nixos-unstable` and have this in my configuration.nix but now I'm getting errors about perl350 and callPackage missing - https://gist.github.com/aswan89/752f4eb7ef9dbd9d8b99033c9b1d726a
spacekitteh[m] has joined #nixos
pinage404[m] has joined #nixos
kazimazi has joined #nixos
<zeta_0> clever: it's ok, thanks for taking a look, xmonad has been great, but it has these frustrating edge cases where certain desktop environment things don't work
f0i[m] has joined #nixos
chvp has joined #nixos
pheoxy has joined #nixos
aanderse has joined #nixos
sehqlr[m] has joined #nixos
simbergm1 has joined #nixos
st3r4g[m] has joined #nixos
phittacus has joined #nixos
NoblesseOblige24 has joined #nixos
kazimazi has quit [Remote host closed the connection]
vidbina has joined #nixos
val2229[m] has joined #nixos
balsoft has joined #nixos
neonfuz2 has joined #nixos
nrdxp[m] has joined #nixos
Valodim[m] has joined #nixos
schmittlauch[m] has joined #nixos
pwaller[m] has joined #nixos
puzzlewolf has joined #nixos
Dandellion has joined #nixos
MerlinGttlinger[ has joined #nixos
Victor[m] has joined #nixos
emmanuelrosa[m] has joined #nixos
aterius has joined #nixos
Leira[m] has joined #nixos
petersjt014[m] has joined #nixos
Irenes[m] has joined #nixos
kennykwey[m] has joined #nixos
babariviere[m] has joined #nixos
domogled has quit [Read error: Connection reset by peer]
slabity has joined #nixos
dyon[m] has joined #nixos
webdavis has joined #nixos
hagelslag[m] has joined #nixos
bachp has joined #nixos
alan[m]1 has joined #nixos
DenisLehmann[m] has joined #nixos
rendeko[m] has joined #nixos
gustavderdrache[ has joined #nixos
chris| has joined #nixos
qqlq has joined #nixos
siraben has joined #nixos
p-h[m] has joined #nixos
isgy[m] has joined #nixos
sreybastien[m] has joined #nixos
rnhmjoj has joined #nixos
edomfjp[m]1 has joined #nixos
MerlinGttlinger[ has quit [Client Quit]
siraben has quit [Client Quit]
pheoxy has quit [Quit: killed]
deepchange[m] has quit [Quit: killed]
thefloweringash has quit [Quit: killed]
puzzlewolf has quit [Client Quit]
Valodim[m] has quit [Client Quit]
NoblesseOblige24 has quit [Client Quit]
spacekitteh[m] has quit [Quit: killed]
Victor[m] has quit [Client Quit]
pinage404[m] has quit [Quit: killed]
abbradar[m] has quit [Quit: killed]
Dandellion has quit [Client Quit]
danielrf[m] has quit [Quit: killed]
webdavis has quit [Client Quit]
Irenes[m] has quit [Client Quit]
gustavderdrache[ has quit [Client Quit]
roberth has quit [Quit: killed]
aterius has quit [Client Quit]
aanderse has quit [Quit: killed]
chvp has quit [Quit: killed]
schmittlauch[m] has quit [Client Quit]
st3r4g[m] has quit [Client Quit]
phittacus has quit [Client Quit]
qqlq has quit [Client Quit]
wnklmnn[m] has quit [Quit: killed]
rendeko[m] has quit [Client Quit]
DenisLehmann[m] has quit [Client Quit]
hagelslag[m] has quit [Client Quit]
fabiomen10[m] has quit [Quit: killed]
emmanuelrosa[m] has quit [Client Quit]
WillW has quit [Quit: killed]
babariviere[m] has quit [Client Quit]
boturl4r[m] has quit [Quit: killed]
chris| has quit [Client Quit]
bachp has quit [Client Quit]
sreybastien[m] has quit [Client Quit]
petersjt014[m] has quit [Client Quit]
val2229[m] has quit [Client Quit]
gotofail[m] has quit [Quit: killed]
maralorn[m] has quit [Quit: killed]
nrdxp[m] has quit [Client Quit]
wedens[m] has quit [Quit: killed]
timokau[m] has quit [Quit: killed]
kennykwey[m] has quit [Client Quit]
sehqlr[m] has quit [Quit: killed]
quidel[m] has quit [Quit: killed]
p-h[m] has quit [Client Quit]
wildtrees[m] has quit [Quit: killed]
jonreeve[m] has quit [Quit: killed]
rnhmjoj has quit [Client Quit]
alan[m]1 has quit [Client Quit]
isgy[m] has quit [Client Quit]
edomfjp[m]1 has quit [Client Quit]
f0i[m] has quit [Quit: killed]
balsoft has quit [Client Quit]
pwaller[m] has quit [Client Quit]
simbergm1 has quit [Quit: killed]
slabity has quit [Client Quit]
Leira[m] has quit [Client Quit]
neonfuz2 has quit [Client Quit]
pingveno[m] has quit [Quit: killed]
eddyb has quit [Quit: killed]
yoho[m]1 has quit [Quit: killed]
wjjunyor[m] has quit [Quit: killed]
killercup[m] has quit [Quit: killed]
kaychaks[m] has quit [Quit: killed]
psiperator[m] has quit [Quit: killed]
joelwallis1[m] has quit [Quit: killed]
dyon[m] has quit [Client Quit]
<qyliss> ahh, matrix
Thra11 has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #80747 → uftrace: 0.9.3 -> 0.9.4 → https://git.io/JvRyd
mehlon has joined #nixos
<{^_^}> [nixpkgs] @Infinisil merged pull request #80661 → [r20.03] kdepim-runtime: Remove obsolete patch to fix compilation → https://git.io/JvRks
<{^_^}> [nixpkgs] @Infinisil pushed 2 commits to release-20.03: https://git.io/JvRSq
orcus has quit [Quit: ZNC 1.7.5 - https://znc.in]
orcus has joined #nixos
<{^_^}> [nixpkgs] @Infinisil merged pull request #80645 → cmake_2_8: fix build → https://git.io/JvBp5
<{^_^}> [nixpkgs] @Infinisil pushed 2 commits to master: https://git.io/JvRSn
Arahael has quit [Ping timeout: 268 seconds]
ris has joined #nixos
shibboleth has joined #nixos
tomberek has quit [Remote host closed the connection]
lord| has quit [Ping timeout: 255 seconds]
<{^_^}> [nixpkgs] @Infinisil pushed commit from @xfix to release-20.03 « cmake_2_8: fix build »: https://git.io/JvRS6
<Thra11> If a package is broken because a single test is failing, what's the best course of action (I believe the test is invalid): Should I set doCheck = false (overkill IMO), write my own patch to disable the broken test, just be patient and give upstream a chance to fix it (I have reported it), or do something else?
<simpson> Thra11: All of those are reasonable. In addition, you could override checkPhase to tell the test harness to avoid the broken test, if the harness supports that.
mehlon has left #nixos ["Leaving"]
orcus has quit [Quit: ZNC 1.7.5 - https://znc.in]
<samueldr> yes, the preferred method is to skip only that broken test
orcus has joined #nixos
<samueldr> well, no, the preferred method would be fixing the brokenness, but that's sometimes out of scope, or out of reach :)
<{^_^}> [nixpkgs] @Ma27 pushed to master « python3Packages.face_recognition: 1.2.3 -> 1.3.0 »: https://git.io/JvR9Y
johnw has joined #nixos
asbachb has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #80748 → trac: 1.4 -> 1.4.1 → https://git.io/JvR9r
Izorkin has quit [Ping timeout: 265 seconds]
<{^_^}> Channel nixpkgs-unstable advanced to https://github.com/NixOS/nixpkgs/commit/f098b0dd2cd (from 34 hours ago, history: https://channels.nix.gsc.io/nixpkgs-unstable)
Izorkin has joined #nixos
<zeta_0> i posted my problem on the vscodium's issue section, but the maintainers told me that this a a nix related issue and pasted this link? https://github.com/NixOS/nixpkgs/blob/master/pkgs/applications/editors/vscode/vscodium.nix https://github.com/VSCodium/vscodium/issues/341
<{^_^}> VSCodium/vscodium#341 (by zeta-00, 12 minutes ago, closed): vscodium not working with xmonad?
vidbina has quit [Ping timeout: 255 seconds]
AmandaC has quit [Ping timeout: 255 seconds]
domogled has joined #nixos
<zeta_0> ok i posted it in the issues section if anyone wants to take a look: https://github.com/NixOS/nixpkgs/issues/80749
<{^_^}> #80749 (by zeta-00, 56 seconds ago, open): vscodium not working with xmonad?
<zeta_0> thanks in advance
Chiliparrot has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
vidbina has joined #nixos
vidbina has quit [Read error: Connection reset by peer]
vidbina has joined #nixos
Ox4A6F has joined #nixos
EuAndreh[m] has joined #nixos
Ericson2314 has joined #nixos
cornu has joined #nixos
Minijackson[m] has joined #nixos
MilkManzJourDadd has joined #nixos
Noughtmare[m] has joined #nixos
Valodim[m] has joined #nixos
abbradar[m] has joined #nixos
aanderse has joined #nixos
abbec has joined #nixos
alienpirate5 has joined #nixos
arcnmx has joined #nixos
aterius has joined #nixos
atopuzov[m] has joined #nixos
Guest97578 has joined #nixos
bennofs[m] has joined #nixos
blitzclone_ has joined #nixos
phittacus has joined #nixos
bohan[m] has joined #nixos
chvp has joined #nixos
boturl4r[m] has joined #nixos
cyberwolf[m] has joined #nixos
colemickens has joined #nixos
Dandellion has joined #nixos
danielrf[m] has joined #nixos
deepchange[m] has joined #nixos
david-sawatzke[m has joined #nixos
bserckx[m] has joined #nixos
domenkozar[m] has joined #nixos
dpc has joined #nixos
dtz has joined #nixos
DanP[m] has joined #nixos
edomfjp[m]1 has joined #nixos
eddyb has joined #nixos
emily has joined #nixos
v88m has quit [Read error: Connection reset by peer]
f0i[m] has joined #nixos
fgaz has joined #nixos
flacks_ has joined #nixos
frhun has joined #nixos
xa0[m] has joined #nixos
florianjacob has joined #nixos
Gaz[m]1 has joined #nixos
goibhniu has joined #nixos
GerdFlaig[m] has joined #nixos
grin[m] has joined #nixos
gustavderdrache[ has joined #nixos
gsals[m] has joined #nixos
hagelslag[m] has joined #nixos
ilya-fedin has joined #nixos
hpfr[m] has joined #nixos
hiroshi[m] has joined #nixos
Irenes[m] has joined #nixos
jschievink has joined #nixos
jonge[m] has joined #nixos
ksixty has joined #nixos
jtojnar has joined #nixos
kaychaks[m] has joined #nixos
keithy[m] has joined #nixos
killercup[m] has joined #nixos
kriteus[m] has joined #nixos
leons has joined #nixos
bricewge has joined #nixos
M2easy2do[m] has joined #nixos
Ovsyanka[m] has joined #nixos
acowley[m] has joined #nixos
loyon[m] has joined #nixos
aleph9[m] has joined #nixos
alan[m]1 has joined #nixos
maralorn[m] has joined #nixos
ma27[m] has joined #nixos
marijan[m] has joined #nixos
MarkOtaris has joined #nixos
MerlinGttlinger[ has joined #nixos
simbergm has joined #nixos
mkg20001 has joined #nixos
aquarial has joined #nixos
babariviere[m] has joined #nixos
mt[m] has joined #nixos
alexarice[m] has joined #nixos
bobvanderlinden_ has joined #nixos
musicmatze has joined #nixos
NoblesseOblige24 has joined #nixos
nilsirl[m] has joined #nixos
notice81cabbage[ has joined #nixos
chatmaster5000[m has joined #nixos
chris| has joined #nixos
nolan_d has joined #nixos
ongy[m] has joined #nixos
pantomath[m] has joined #nixos
Notkea[m] has joined #nixos
pentadyne[m] has joined #nixos
mica[m] has joined #nixos
bachp has joined #nixos
bb010g has joined #nixos
DenisLehmann[m] has joined #nixos
balsoft has joined #nixos
philipp[m] has joined #nixos
pheoxy has joined #nixos
dot-product[m] has joined #nixos
pinage404[m] has joined #nixos
prusnak[m] has joined #nixos
quidel[m] has joined #nixos
quiet_laika[m] has joined #nixos
rendeko[m] has joined #nixos
dyon[m] has joined #nixos
eol[m] has joined #nixos
emmanuelrosa[m] has joined #nixos
roberth has joined #nixos
psiperator[m] has joined #nixos
puzzlewolf has joined #nixos
rycee has joined #nixos
Dave[m]1 has joined #nixos
devis350[m] has joined #nixos
gcoakes[m] has joined #nixos
grahamc[m] has joined #nixos
seb314[m] has joined #nixos
schmittlauch[m] has joined #nixos
sebass[m] has joined #nixos
haslersn has joined #nixos
siraben has joined #nixos
shizonic has joined #nixos
slabity has joined #nixos
snupples[m] has joined #nixos
spacekitteh[m] has joined #nixos
geemili has joined #nixos
Pasha[m] has joined #nixos
boogiewoogie[m] has joined #nixos
fabiomen10[m] has joined #nixos
tokudan[m] has joined #nixos
st3r4g[m] has joined #nixos
sylvie[m] has joined #nixos
tbenst[m] has joined #nixos
HailSagan[m] has joined #nixos
Jarva[m] has joined #nixos
PlayfulCuriosity has joined #nixos
imj[m] has joined #nixos
thefloweringash has joined #nixos
thequux[m] has joined #nixos
haruko[m] has joined #nixos
jbbr[m] has joined #nixos
gotofail[m] has joined #nixos
hr[m] has joined #nixos
nocoolnametom has joined #nixos
index-0[m] has joined #nixos
jamiemagee has joined #nixos
qqlq has joined #nixos
isgy[m] has joined #nixos
veleiro has joined #nixos
Criena has joined #nixos
Keith[m] has joined #nixos
contrun[m] has joined #nixos
vaibhavsagar has joined #nixos
kennykwey[m] has joined #nixos
Victor[m] has joined #nixos
wak-work has joined #nixos
joelwallis1[m] has joined #nixos
webdavis has joined #nixos
wangoe[m] has joined #nixos
wakest[m] has joined #nixos
jonreeve[m] has joined #nixos
l_inus[m] has joined #nixos
Leira[m] has joined #nixos
li_matrix has joined #nixos
kraem[m] has joined #nixos
luc65r[m] has joined #nixos
xavierm02 has joined #nixos
wnklmnn[m] has joined #nixos
worldofpeace has joined #nixos
layus[m] has joined #nixos
morgib[m] has joined #nixos
yoho[m] has joined #nixos
ZerataX has joined #nixos
mupf[m] has joined #nixos
Logan[m] has joined #nixos
neonfuz2 has joined #nixos
LinuxHackerman has joined #nixos
mudrii[m] has joined #nixos
lucasmarcos[m] has joined #nixos
p-h[m] has joined #nixos
petersjt014[m] has joined #nixos
ngerstle[m] has joined #nixos
pkolloch[m] has joined #nixos
Nyanloutre[m] has joined #nixos
pingveno[m] has joined #nixos
rnhmjoj has joined #nixos
rihardsk[m] has joined #nixos
pinion[m] has joined #nixos
pwaller[m] has joined #nixos
ragge[m] has joined #nixos
sreybastien[m] has joined #nixos
slby[m] has joined #nixos
sputny[m] has joined #nixos
softinio[m] has joined #nixos
srid[m] has joined #nixos
sehqlr[m] has joined #nixos
Smith[m] has joined #nixos
teuffil[m] has joined #nixos
the_pumpkin_man[ has joined #nixos
nrdxp[m] has joined #nixos
tlater[m] has joined #nixos
tobia_[m] has joined #nixos
test53453535[m] has joined #nixos
TroelsAgergaardJ has joined #nixos
timokau[m] has joined #nixos
tek[m] has joined #nixos
val2229[m] has joined #nixos
truby has joined #nixos
wedens[m] has joined #nixos
tomberek[m] has joined #nixos
wjjunyor[m] has joined #nixos
WillW has joined #nixos
tyrion-mx has joined #nixos
Zero-ghost[m] has joined #nixos
wildtrees[m] has joined #nixos
xavierzwirtz[m] has joined #nixos
akapaka[m] has joined #nixos
v88m has joined #nixos
<gchristensen> /!\ Today's office hours is a different format /!\ watch live: https://youtu.be/FKpeI8U8-AE discuss in #nixos-officehours, no group Zoom call today. We're discussing the last few weeks: Hydra's memory problems, the flakes.nix merge to nixpkgs, RFC process, etc. We start in 38 minutes
lord| has joined #nixos
smollcato has quit [Read error: Connection reset by peer]
<qyliss> Does anybody have the microphone on Bluetooth headphones with a built-in mic working on NixOS?
smollcato has joined #nixos
<adisbladis> qyliss: Yeah
<qyliss> adisbladis: do you have to do anything special with hardware.pulseaudio or hardware.bluetooth?
<adisbladis> qyliss: Nope, special there.
<qyliss> hmm
<adisbladis> But you have to set the bluetooth profile to HSP to use both headphones & microphone at the same time
<qyliss> Aha!
<qyliss> I had to change the profile
dansho has joined #nixos
<adisbladis> qyliss: So it works now?
<qyliss> Needs to be set to "Headset Head Unit" rather than "High Fidelity Playback"
<qyliss> adisbladis: well it shows up in pavucontrol
<qyliss> need to test it actually uses it
averell has quit [Quit: .]
averell has joined #nixos
<samueldr> the audio quality will be different, but I assume you know :)
<qyliss> I only got high fidelity working a few minutes ago so can't say I'll miss it :P
drakonis has joined #nixos
<noonien> is there a variation of the nix pills that focuses a bit more on nixpkgs?
zupo has joined #nixos
kleisli has joined #nixos
<evanjs> clever: srk it was way easier than I thought haha ${self.qemu}/bin/qemu-system-x86_64 ${usb3HubConfig}${smallAdapterConfig} -nographic ${highMemoryConfig} -drive file=fat:rw:${updEFIDir},format=raw,media=disk -net none -drive if=pflash,format=raw,readonly,file=${OVMFFile}
<evanjs> basically, `-drive file=fat:rw:${updEFIDir},format=raw,media=disk -net none -drive if=pflash,format=raw,readonly,file=${OVMFFile}`
<evanjs> I just pass in -drive file=fat:rw with the directory I created that has the startup.nsh, kernel, and initrd :D
<clever> evanjs: yeah
zeta_0 has quit [Quit: rebuilding]
growpotkin has joined #nixos
zeta_0 has joined #nixos
florianjacob has quit [Quit: authenticating]
florianjacob has joined #nixos
fresheyeball has quit [Quit: WeeChat 2.6]
<Raito_Bezarius> Quick question, if I modify networking.firewall.allowedPorts from multiple locations, will this be merged?
<Raito_Bezarius> Or is it like wrong to try to have a module which touch to the firewall configuration?
<cole-h> If it's a list, I think they'll merge
opthomasprime has quit [Remote host closed the connection]
<iqubic> Yes.
<Raito_Bezarius> It is a list, indeed
<Raito_Bezarius> Alright, thanks!
<iqubic> lists do merge.
<Raito_Bezarius> cole-h++
<{^_^}> cole-h's karma got increased to 2
<Raito_Bezarius> iqubic++
<{^_^}> iqubic's karma got increased to 1
<cole-h> (also just want to make sure you know: it's `allowedUDPPorts` and `allowedTCPPorts`)
o1lo01ol1o has quit [Ping timeout: 240 seconds]
<cole-h> AFAICS, there is no "general" `allowedPorts`
<Raito_Bezarius> (yes, I know, I should have mentioned XXXPorts but I was saying this from memory!)
<infinisil> Although to be pedantic, it's not the fact that it's a list that makes it mergeable, it's that the type of the option allows merging like that. You could have an option settable to a list that doesn't merge different assignments
pnobre_ has quit [Ping timeout: 265 seconds]
<cole-h> OKOK, just making sure so you didn't have to come back and ask about that :D
<Raito_Bezarius> infinisil: is there a list of mergeable types?
<Raito_Bezarius> or is it like the "obvious" ones? (listOf X & attrs?)
<cole-h> infinisil: Could you give an example? That kinda went over my head (still new to Nix{,OS})
<infinisil> All option types have a .merge attribute, and the result of that decides how different assignments get merged together
<infinisil> Or if at all
<infinisil> This is the relevant file: https://github.com/NixOS/nixpkgs/blob/master/lib/types.nix
<infinisil> E.g. types.bool has `merge = mergeEqualOption;`, meaning it will merge okay if all assignments are set to the same value
<cole-h> Ah, OK. Interesting; thanks :)
<cole-h> <3 infinisil
<{^_^}> infinisil's karma got increased to 218
<Raito_Bezarius> infinisil++
<{^_^}> infinisil's karma got increased to 219
<Raito_Bezarius> thank you :)
m0rphism has quit [Ping timeout: 258 seconds]
AmandaC has joined #nixos
ATuin has joined #nixos
zeta_0 has quit [Remote host closed the connection]
drakonis has quit [Ping timeout: 245 seconds]
chimay has quit [Ping timeout: 260 seconds]
psyanticy has quit [Quit: Connection closed for inactivity]
zeta_0 has joined #nixos
elibrokeit has joined #nixos
foldingcookie has joined #nixos
foldingcookie has left #nixos [#nixos]
maddo has quit [Quit: See ya]
newuser99 has joined #nixos
<eyJhb> Anyone up for helping with vim? How can I use vim_configureable.customize + override?
<eyJhb> I need to use python3 instead of python2..
<eyJhb> Currently I can add two different lines, but then it doesn't configure vim as it should
Chiliparrot has joined #nixos
maddo has joined #nixos
zeta_0 has quit [Quit: rebuilding again]
<{^_^}> [nixpkgs] @ryantm merged pull request #80737 → spectmorph: 0.5.0 -> 0.5.1 → https://git.io/JvRwR
<{^_^}> [nixpkgs] @ryantm pushed 2 commits to master: https://git.io/JvR7Z
lsix has quit [Quit: WeeChat 2.6]
<{^_^}> [nixpkgs] @ryantm merged pull request #80741 → tixati: 2.66 -> 2.67 → https://git.io/JvRKa
<{^_^}> [nixpkgs] @ryantm pushed 2 commits to master: https://git.io/JvR7W
bvdw has quit [Read error: Connection reset by peer]
bvdw has joined #nixos
maddo has quit [Client Quit]
Neo-- has quit [Ping timeout: 248 seconds]
maddo has joined #nixos
steve-chavez has joined #nixos
<steve-chavez> Hello. Can anyone share a link to NixCon 2016 recordings? I can't find them anywhere..
<infinisil> steve-chavez: I don't there there was one that year?
<eyJhb> Seems empty :/
<eyJhb> Btw. infinisil can I shanghai you?
drakonis has joined #nixos
<steve-chavez> Oh.. I'm not sure. In particular I'm searching for a talk that used nix for database migrations.
<infinisil> eyJhb: Depends on what that is, because I have no idea :)
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/97d19a167ad (from 5 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
bhipple has joined #nixos
<eyJhb> infinisil: basically need your help, because I am 99% sure you know the solution :p 2 sec
kiloreux_ has joined #nixos
<infinisil> Sounds good
<eyJhb> infinisil: I basically have this (imagine the rest around it), https://termbin.com/l1dy and I need to combine the customize and override into a single statement, as currently it only takes the override if I use it
<eyJhb> And I need python3 support, because.. YouCOmpleteMe :/
<cole-h> Couldn't you just tack on the `.customize` to the outside of the parens of the `.override`?
<infinisil> eyJhb: vim_configurable.override { ... } returns a new vim_configurable you can further .customize
<cole-h> ^
linarcx has quit [Ping timeout: 240 seconds]
<Raito_Bezarius> is it okay to write option builder?
kiloreux has quit [Ping timeout: 265 seconds]
<Raito_Bezarius> like, a function which takes a param and returns an option module declaration
<newuser99> How do I fix this? https://bpaste.net/PLOA
<Raito_Bezarius> (I guess there's no technical limitation)
<eyJhb> infinisil, cole-h ` (vim_configurable.override { python = python3; }).customize {` ?
<Raito_Bezarius> But, I suppose some people have used such a setup?
bhipple has quit [Ping timeout: 255 seconds]
<cole-h> eyJhb: I believe so
<infinisil> eyJhb: Needs some more parens around the whole thing though
<eyJhb> `error: The option value `environment.systemPackages.[definition 2-entry 16]' in `/etc/nixos/hosts/eos/development.nix' is not of type `package'.` :/
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<cole-h> Probably need another layer of parens, yeah
mexisme has joined #nixos
<eyJhb> Works, thanks guys!
<cole-h> otherwise it will treat it like `(vim_configurable.override { python = python3; }).customize` and `{ ...<configure stuff>... }`
<eyJhb> OR gals, or... Whatever you prefer
<newuser99> `nix-shell .` works but `nix-shell` doesn't. I guess that means my shell.nix is wrong. What do I need to change?
bhipple has joined #nixos
<eyJhb> Joys, youcomplete me won't work anyways because stuff I guess..
<eyJhb> :(
<newuser99> apparently just using the derivation directly without mkShell works
<newuser99> I don't understand this but ok
kleisli has quit [Ping timeout: 258 seconds]
_deepfire has joined #nixos
growpotk- has joined #nixos
risson has quit [Quit: pouet]
shibboleth has quit [Quit: shibboleth]
<eyJhb> Arhhh, why does YouCompleteMe have to be so complicated..
<Raito_Bezarius> eyJhb: are you forced to use YCM?
<Raito_Bezarius> why don't use something modern like deoplete?
<jared-w> eyJhb: speaking from personal experince, switch to something eles. Definitely. Language servers are much better now imo
<Raito_Bezarius> yes, +1
<Raito_Bezarius> lang servers are super good
zupo has joined #nixos
<eyJhb> Anything that works I am okay with...
<jared-w> I use coc.nvim but I'm going to look super closely at neovim's native implementation one that's a smidge more stable
<jared-w> coc.nvim has the nice property that if you don't hate nodejs you can copy and paste a config and basically restart vim into a working setup
<eyJhb> Currently using vim8.2, and haven't seen the big reason to switch to neovim :/
<Raito_Bezarius> is there something which prevents options to take arbitrary functions as option parameter?
<eyJhb> But Raito_Bezarius deoplete requires you to bind a key, to autocompletion?
<jared-w> it works with normal vim too (it started off as neovim only)
kleisli has joined #nixos
<Raito_Bezarius> eyJhb: AFAIK, no https://github.com/Shougo/deoplete.nvim
growpotk- has quit [Quit: ZNC 1.7.5 - https://znc.in]
<jared-w> eyJhb: you're probably thinking of the fact that most plugins out there don't bind over your tab key by default
<eyJhb> Yeah, but does it bind my tab key?
growpotk- has joined #nixos
<eyJhb> Also, is there a language support list?
<Raito_Bezarius> eyJhb: closely to most of your languages are supported by a lang server or natively
<Raito_Bezarius> are you thinking of a specific (obscure) language?
<Raito_Bezarius> eyJhb: it can bind your tab key if you want it to
<Raito_Bezarius> it's in the docs
<eyJhb> Golang, but should I just add `deoplete-go` to my plugins list in NixOS, then it should get deoplete + go support?
gnidorah has quit [Quit: Connection closed for inactivity]
NoctisLabs has quit [Quit: WeeChat 2.7]
<eyJhb> Also, where is the docs for bind?
mexisme has quit [Ping timeout: 265 seconds]
<{^_^}> Channel nixos-19.09-small advanced to https://github.com/NixOS/nixpkgs/commit/85548f2a131 (from 3 hours ago, history: https://channels.nix.gsc.io/nixos-19.09-small)
<Raito_Bezarius> also, yes it's enough to add deoplete-go IIRC
<Raito_Bezarius> it'll answer most of your questions
NoctisLabs has joined #nixos
<eyJhb> Raito_Bezarius: seems like I need to add more than deoplete-go, as I only get `5fnhsqfsxsc0zpqz37dic7y4daghvzg2-vimplugin-deoplete-go-2020-01-01`
<Raito_Bezarius> eyJhb: you need deoplete too
<eyJhb> Just, nix search doesn't reveal any deoplete package
<Raito_Bezarius> eyJhb: I'm not very accustomed to how Nix+Vim interacts, maybe jared-w or someone else can help you on this
<Raito_Bezarius> though it sounds strange there would be only deoplete-go and not deoplete
<eyJhb> Might have found it, rebuilding
alexherbo2 has quit [Quit: The Lounge - https://thelounge.chat]
zeta_0 has joined #nixos
<eyJhb> deoplete-nvim ... Makes sense
<zeta_0> could someone send me a link to the nodePackages nixpkgs, or a link that has some instructions on this? thanks in advance
<zeta_0> it's not in the search results, that's why i'm asking: https://nixos.org/nixos/packages.html?channel=nixos-19.09&query=nodePackages
<Raito_Bezarius> zeta_0: try with the code search I think
<Raito_Bezarius> (nix.gsc.io iirc?)
<eyJhb> Raito_Bezarius: doens't work on Vim8 sadly, because not all packages are ported.. :(
<Raito_Bezarius> eyJhb: sorry :(
<eyJhb> To switch or not to switch
<Raito_Bezarius> vim8 confs should be relatively compatible with nvim
<Raito_Bezarius> you can give it a try and rollback whatever if it's too much annoying
<eyJhb> Maybe coc
chloekek has joined #nixos
<evanjs> so how do I override runtimeShell? Hard to find examples of how do so :P
<zeta_0> cole-h: ok, i just need to find this folder that shows the packages? pkgs/development/node-packages
<zeta_0> cole-h: if all of nodes packges are generated by nix then great, but i also have to make sure that i have the right names
bhipple has quit [Ping timeout: 260 seconds]
<NoctisLabs> Question, when I do a rebuild switch and get the error: "warning: error(s) occurred while switching to the new configuration" did the new configuration switch and it's just warning me about the errors, or did it not switch because of the errors?
acarrico has quit [Ping timeout: 260 seconds]
<jared-w> eyJhb: nix + vim is a bit weird. You have to either go all in and write your vim config in nix or you use nix purely to setup vim and leave vim to manage most of its own plugins. I choose the latter approach, personally. But neither are wrong.
<evanjs> more specifically, is there an easy way to say, use busybox for makeWrapper in place of bash? Looks like busybox does not have a shellPath...
hax404 has joined #nixos
erictapen has quit [Ping timeout: 260 seconds]
<noonien> hmm, is there any reason why buildGoModule requires a sha? dependencies can be vendored
nixtacular has joined #nixos
<nixtacular> i'm trying to get overlays to work with home-manager, but it just seems to ignore them
growpotk- has quit [Ping timeout: 258 seconds]
<noonien> and there would be no need for a fixed output derivation, also, passing `= null`, gives this error: ` has '__noChroot' set, but that's not allowed when 'sandbox' is 'true'`
<nixtacular> i have all my overlays in ~/.config/nixpkgs/overlays as individual files. not sure what's going on.
MmeQuignon has joined #nixos
<jared-w> noonien: if your dependencies are vendored then it's not really a module then, iirc?
ryantrinkle has quit [Ping timeout: 255 seconds]
<nixtacular> example (~/.config/nixpkgs/overlays/vimPlugins.nix): `self: super: { vimPlugins = thisDoesntExist }` should raise an error, but it doesn't. it just gets ignored
<jared-w> (the traditional way is a Sha with all zeroes, not "null")
justanotheruser has quit [Ping timeout: 245 seconds]
<eyJhb> jared-w: I manage vim using Nix, but I am trying coc now
<eyJhb> But everything seems weird...
Cadey has joined #nixos
<noonien> jared-w: it is, to buidl it, you need to do `go build -mod=vendor`
bhipple has joined #nixos
ambro718 has quit [Ping timeout: 258 seconds]
<MmeQuignon> Hi everyone. I'm trying to configure nginx and acme here. I would like to create one certificate for two domains (example.com and sub.example.com). I create two virtualhosts in nginx with forceSSL and enable ACME set to true, and one entry security.acme.certs."example.com" with extraDomains = {"sub.example.com"=null;};. But at build, nixos complains about duplicate entries in
<MmeQuignon> /etc/tmpfiles.d/nixos.com ([/etc/tmpfiles.d/nixos.conf:7] Duplicate line for path "/var/lib/acme/acme-challenge/.well-known/acme-challenge", ignoring.). It seems there's a conflict, but I can't figure out by myself. What am I doing wrong ? Thanks !
<MmeQuignon> Maybe both nginx and acme are trying to create a webroot for that domain, but I'm not sure of what I should do.
<{^_^}> [nixops-aws] @grahamc opened pull request #23 → boto3 PR + python2->3 → https://git.io/JvRdV
Neo-- has joined #nixos
ryantrinkle has joined #nixos
<nixtacular> weird. i fixed my problem with the overlays. it was a two part solution. 1) had to remove `nixpkgs-overlays` from my NIX_PATH, 2) had to reboot
<nixtacular> the reboot was what surprised me. i had already removed `nixpkgs-overlays` from my nix path.
<{^_^}> [nixpkgs] @Ma27 opened pull request #80751 → treewide: add a debug-output to a few packages → https://git.io/JvRd9
reallymemorable has quit [Quit: reallymemorable]
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/b7566d77154 (from 3 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
zupo has quit [Ping timeout: 240 seconds]
zeta_0 has quit [Quit: rcirc on GNU Emacs 26.3]
zupo has joined #nixos
nixtacular has quit [Remote host closed the connection]
kiloreux_ has quit [Read error: Connection reset by peer]
kiloreux__ has joined #nixos
ATuin has quit [Quit: WeeChat 2.7]
<cole-h> nixtacular: You probably just needed to restart the nix daemon
<cole-h> (oh, they left)
vidbina has quit [Read error: Connection reset by peer]
Neo-- has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @jonringer merged pull request #80693 → pulseaudio-dlna: add missing setuptools dep → https://git.io/JvRCe
<{^_^}> [nixpkgs] @jonringer pushed to master « pulseaudio-dlna: add missing setuptools dep »: https://git.io/JvRFt
vidbina has joined #nixos
vidbina has quit [Read error: Connection reset by peer]
<{^_^}> [nixpkgs] @doronbehar opened pull request #80752 → abcde: use python3 eyeD3 → https://git.io/JvRF0
gustavderdrache has quit [Quit: Leaving.]
vidbina has joined #nixos
steve-chavez has quit [Quit: WeeChat 2.4]
<{^_^}> [nixpkgs] @doronbehar opened pull request #80753 → bear: Use python3 by default → https://git.io/JvRFz
jgeerds has joined #nixos
<kiloreux__> I have a set of nix expressions and derivatives that are taking a very long time to evaluate when booting a new machine.
<kiloreux__> They evaluate in 2 seconds on my machine
<kiloreux__> But very long times in the machine built from the image
<kiloreux__> Can't still figure out what's the difference
<kiloreux__> And why this is happening
<kiloreux__> No network calls are being madde
<niksnut> disk I/O maybe? evaluation can be very slow if you're not on an SSD
Anton-Latukha has joined #nixos
Anton-Latukha has quit [Client Quit]
v0|d has joined #nixos
shafox_ has joined #nixos
<Raito_Bezarius> is it possible to dynamically import module options?
<Raito_Bezarius> like can I configure a module option to import other module options and configure them?
shafox has quit [Read error: Connection reset by peer]
kiloreux_ has joined #nixos
gxt has joined #nixos
<Raito_Bezarius> it sounds like I can declare them statically as imports and dynamically generate an attrset to configure them in the config of my meta module option
kiloreux__ has quit [Ping timeout: 240 seconds]
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
NoctisLabs has quit [Quit: WeeChat 2.7]
<{^_^}> [nixops] @grahamc opened pull request #1228 → travis: check files are formatted correctly with `black` → https://git.io/JvRbb
<Thra11> simpson, samueldr: Thanks. I'll see about writing a patch to remove the test for now.
fendoer has joined #nixos
<kiloreux_> niksnut, it's SSD already.
<gchristensen> kiloreux_: IFD?
justanotheruser has joined #nixos
fenedor has quit [Ping timeout: 258 seconds]
<kiloreux_> gchristensen, already done yeah.
alexherbo2 has joined #nixos
zupo has joined #nixos
<{^_^}> [nixpkgs] @flokli opened pull request #80755 → python.pkgs.slackclient: 1.2.1 -> 2.5.0 → https://git.io/JvRN3
ixxie has quit [Ping timeout: 260 seconds]
matthiaskrgr has quit [Quit: Free ZNC ~ Powered by LunarBNC: https://LunarBNC.net - currently broken?]
nikivi has quit [Quit: Free ZNC ~ Powered by LunarBNC: https://LunarBNC.net]
kleisli has quit [Ping timeout: 255 seconds]
matthiaskrgr has joined #nixos
hax404 has quit [Remote host closed the connection]
hax404 has joined #nixos
<{^_^}> Channel nixpkgs-19.09-darwin advanced to https://github.com/NixOS/nixpkgs/commit/85548f2a131 (from 5 hours ago, history: https://channels.nix.gsc.io/nixpkgs-19.09-darwin)
knupfer has quit [Ping timeout: 240 seconds]
hax404 has quit [Client Quit]
noudle has joined #nixos
hax404 has joined #nixos
_rvl has quit [Quit: ZNC 1.7.4 - https://znc.in]
nikivi has joined #nixos
chloekek has quit [Ping timeout: 255 seconds]
<Dandellion> ,locate libsqlcipher
<Dandellion> ,locate libsqlcipher.so
_rvl has joined #nixos
yawnt has joined #nixos
<yawnt> hello, im trying to route traffic through tun0 based on uidrange
<yawnt> the setup works on archlinux, but fails on nixos. any suggestions where i could start looking?
<yawnt> the problem seems to be that after SYN/ACK, i never send back ACK
<yawnt> but if the same table is set to all instead of uidrange
<yawnt> everything works great
<Yaniel> uhh how can I have a + in a string
<Yaniel> namely in defaultFonts
vidbina has quit [Read error: Connection reset by peer]
maddo has quit [Quit: See ya]
<Yaniel> oh, it was a missing " on the previous line
vidbina has joined #nixos
vidbina has quit [Read error: Connection reset by peer]
kleisli has joined #nixos
nerdmaxx has joined #nixos
<nerdmaxx> hi
kiloreux_ has quit [Read error: Connection reset by peer]
<cole-h> Dandellion: `libsqlcipher.so` appears to be found in `sqlcipher`
kiloreux_ has joined #nixos
vidbina has joined #nixos
nerdmaxx has quit [Quit: Leaving]
ambro718 has joined #nixos
<{^_^}> [nixpkgs] @B4dM4n opened pull request #80756 → mariadb-connector-c: add mysqlclient.pc pkgconfig symlink → https://git.io/JvRAs
philr has joined #nixos
yawnt has quit [Quit: leaving]
<MmeQuignon> Hi everyone. I'm trying to configure nginx and acme here. I would like to create one certificate for two domains (example.com and sub.example.com). I create two virtualhosts in nginx with forceSSL and enable ACME set to true, and one entry security.acme.certs."example.com" with extraDomains = {"sub.example.com"=null;};. But at build, nixos complains about duplicate entries in
<MmeQuignon> /etc/tmpfiles.d/nixos.com ([/etc/tmpfiles.d/nixos.conf:7] Duplicate line for path "/var/lib/acme/acme-challenge/.well-known/acme-challenge", ignoring.). It seems there's a conflict, but I can't figure out by myself. What am I doing wrong ? Maybe both nginx and acme are trying to create a webroot for that domain, but I'm not sure of what I should do. Thanks !
<MmeQuignon> (sorry for the noise)
<{^_^}> [nixpkgs] @flokli merged pull request #80540 → python.pkgs.scikits-odes: 2.4.0-9-g93075ae -> 2.6.1 → https://git.io/JvBGs
<{^_^}> [nixpkgs] @flokli pushed 4 commits to master: https://git.io/JvRAu
<{^_^}> [nixpkgs] @r-ryantm opened pull request #80757 → grails: 4.0.1 -> 4.0.2 → https://git.io/JvRAV
nerdmaxx has joined #nixos
<simukis_> I’m trying to narrow down onto a reproducibility problem. Are there any tools in nix that would build derivation multiple times and compare output or something?
<gchristensen> --check
<simukis_> gchristensen: is there a way to `--check` an arbitrarily sized closure?
<simukis_> as in "this and all its dependencies 3 levels deep" or something?
<bhipple> simukis_: the --rebuild N option will rebuild every package N times and works for all builds in a closure -- though if you already have the package, it won't force a rebuild the way --check will
<simukis_> awesome, that sounds super close to what I am looking for. I can get the whole closure invalidated no problem if its just once.
<bhipple> simukis_: err, the option is --repeat N, not --rebuild N
<bhipple> Yeah, you do something like make a change to <low lvl pkg in closure> then do nix-build --option repeat 2 <top pkg in closure> I think
<bhipple> You could also set it in nix.conf if you want it to be the default: https://nixos.org/nix/manual/#idm140737321225424
NoctisLabs has joined #nixos
<{^_^}> [nixpkgs] @ikervagyok opened pull request #80758 → nixos/wireguard: fix wireguard service as well after it got upstreamed → https://git.io/JvRAQ
<simukis_> bhipple: ahead of time, does nix end up installing the output to the store once it goes through all the rounds?
<bhipple> Not sure; I haven't used the --repeat option much. For --check, it will build/install it into /nix/store/...-foo.check, then delete when it's done checking
<nerdmaxx> hi
* simukis_ sets `--repeat 20` for starters
sigmundv has joined #nixos
<{^_^}> [nixpkgs] @Thra11 opened pull request #80759 → Fix R → https://git.io/JvRAx
<simukis_> too bad --repeat does not run builds in parallel :(
<bhipple> There are a couple improvements to Nix itself that could be made here, for sure. Another one is that --check will just error out if the package you're chekcing doesn't already exist
<bhipple> When really you'd want --check on a not-yet-built pkg to first build the pkg, then build it a 2nd time to --check
<bhipple> You should send a PR to nix improving it :)
<simukis_> I will consider it if I end up having to run `--repeat 10000` or something
<{^_^}> [nixpkgs] @bhipple opened pull request #80760 → gifski: 0.9.1 -> 0.10.2 → https://git.io/JvRxk
cole-h has quit [Quit: WeeChat 2.7]