worldofpeace_ changed the topic of #nixos to: NixOS stable: 20.03 ✨ https://discourse.nixos.org/t/nixos-20-03-release/6785 || https://nixos.org || Latest NixOS: https://nixos.org/nixos/download.html || Latest Nix: https://nixos.org/nix/download.html || Logs: https://logs.nix.samueldr.com/nixos/ || use ,channels for a list of Nix* related channels || nixcon videos: https://tinyurl.com/nixcon2019 || Link to the output of nix-info
civodul has quit [Quit: ERC (IRC client for Emacs 26.3)]
Rusty1 has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
johabi has joined #nixos
<installingNIX> I must say I find the installation painfull
<clever> the learning curve is a bit steep
<clever> but most of the problems you appear to have run into, arent related to installing
<clever> they would have happened at nixos-rebuild time, if you tried to do them after installing
rjmill has quit [Ping timeout: 264 seconds]
philr_ has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #93876 → python27Packages.crc32c: 2.0 -> 2.0.1 → https://git.io/JJRla
<zeta_0> clever: ok, so i undid all the changes i made in ghc.nix's default.nix file, bringing it back to it's default state and renamed it to ghc.nix(https://dpaste.org/SDyv), and then i ran `lorri init` and wrote the callPackage function you recommended in lorri's generated shell.nix file(https://dpaste.org/ONCQ)
<zeta_0> clever: does my custom configured ghc.nix setup look correct? there's no nix syntax errors being thrown, so i think that the syntax is correct.
<{^_^}> [nix-mode] @yilinwei opened pull request #103 → Add autoloads for eshell functions → https://git.io/JJR8T
<installingNIX> Well goodbye guys thanks for help especially thanks to clever
installingNIX has quit [Remote host closed the connection]
Rusty1 has joined #nixos
sigmundv_ has joined #nixos
nij has joined #nixos
<nij> Hello.. I'm learning nixOS by following nix pill. I'm stuck at the 10th chapter. I wonder if anyone could help..thank you.
<nij> I'm stuck in the second command: `[nix-shell]$ source builder.sh
orivej has quit [Ping timeout: 264 seconds]
<nij> I have entered nix-shell, and followed the instruction to source my `builder.sh`..
orivej has joined #nixos
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage-packages.nix: automatic Haskell package set update »: https://git.io/JJR8P
<nij> Unfortunately, that's a builder introduced in the earlier chapters
<nij> The error I got from `[nix-shell]$ source builder.sh` is that `./configure: No such file or directory`.
<nij> It seems that my nix-shell does not know what `configure` is.
<zeta_0> in what part of the nixos wiki is the `callPackage` explained? https://nixos.wiki/
<nij> I have included "gnutar gzip gnumake gcc binutils-unwrapped coreutils gawk gnused gnugrep findutils patchelf
<nij> Aren't those not enough for the nix-shell to know `configure`?
<zeta_0> clever: nope, the callPackage function needs to be placed somewhere else: `error: attempt to call something which is not a function but a set, at /home/zeta/ghc/ghc.nix/shell.nix:4:1
<zeta_0> `
<zeta_0> hmm, how strange, there was no syntax errors thrown
orivej has quit [Ping timeout: 264 seconds]
orivej has joined #nixos
<infinisil> nij: What's your current Nix file?
johabi has quit [Quit: Leaving]
<nij> infinisil: thanks for reaching out, it's `hello.nix`, an example given in nixpill as well.
<nij> Lets see if I can fetch its content.. it's in a virtual machine.
<nij> [nix-shell]$ source builder.sh
<nij> Sorry..not relevant
<nij> let pkgs = import <nixpkgs> {}; mkDerivation = import ./autotools.nix pkgs;
<nij> in mkDerivation { name = "hello"; src = ./hello-2.10.tar.gz;
<nij> }
<nij> The format went off..
<Church-> Paste in please. :)
<Church-> Pastebin*
<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.
<{^_^}> [nixpkgs] @r-ryantm opened pull request #93877 → python27Packages.dpkt: 1.9.2 -> 1.9.3 → https://git.io/JJR4U
<nij> infinisil: where "autotools.nix" is given exactly in section 8.3: https://nixos.org/nixos/nix-pills/generic-builders.html
<zeta_0> does the placement of this callPackage function look correct? when i placed it there, emacs stopped throwing syntax errors, and the nix-shell works now
<infinisil> nij: And what about builder.sh?
<nij> lets see..
<infinisil> Nevermind, got it
<nij> Oh..thanks :S
<infinisil> The builder.sh from https://nixos.org/nixos/nix-pills/generic-builders.html#idm140737320263504 but with line 3 changed to `for p in $buildInputs $baseInputs; do` works
<infinisil> (as given as an exercise)
<infinisil> nij: With default.nix as you showed, autotools.nix from that section and builder.sh as above (plus the tarball downloaded), I can successfully do `nix-shell` then `source builder.sh` to build the package
<infinisil> Maybe you didn't download the tarball?
<nij> Hmm.. with nix-build it worked.
<nij> And in chap 10 we started using `nix-shell`. And it didn't work.
<nij> Instead of `for p in $buildInputs $baseInputs`, I wrote two for loops.. I think they are equivalent.
<infinisil> nij: Oh, do you perhaps have another directory in your pwd/
<infinisil> ?
<nij> And.. I do have the tarball
<infinisil> Because the builder.sh enters any directory it can find, this might be the one it just unpacked with the tar command, but it might be another one you have lying around
<infinisil> And if it's another one, it wouldn't be able to find the configure file from the hello source
<nij> lemme see
<nij> I'm in my home dir
<nij> there'are lots of dirs
<infinisil> Yeah then that's it :)
<nij> .cache .. .config ..
<infinisil> I suggest creating a new empty directory for doing this instead then
<nij> thank you :)
<infinisil> Np :)
<infinisil> (note that bash's * doesn't expand to dotfiles by default, so it shouldn't be those dirs)
<nij> infinisil: YAY it worked .. thank you
<infinisil> Awesome
<nij> Yes..I read bash.. I'm overwhelmed by nixos.
<nij> Fun indeed though. Appreciated :)
<tinamus[m]> Hey guys, I just installed nixos and I am trying to setup everything. I use zsh, oh-my-zsh, and powerlevel10k on arch, I don't know how to change the theme of oh-my-zsh to powerlevel10k in nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #93878 → python27Packages.dropbox: 10.2.0 -> 10.3.0 → https://git.io/JJR4i
<nij> tinamus[m]: Me too at a similar stage. I reckon it's very different way. Don't remember how but I'm persuaded to patiently go through nixpill in order to understand.
<nij> I wish there's another tutorial that teaches directly how to setup and compile on our own, and explain why it works.
<infinisil> nij: Tbh, I don't think the pills are very useful in practice
<infinisil> They teach you how Nix works underneath, but help very little in understanding that is the monstrosity called nixpkgs
<{^_^}> [nixpkgs] @r-ryantm opened pull request #93879 → python37Packages.astroquery: 0.4 -> 0.4.1 → https://git.io/JJR4D
noonien has quit [Quit: Connection closed for inactivity]
<nij> infinisil: Would love to hear about other ways! :D
<nij> infinisil: It's also a bit old..
<infinisil> Yeah that too..
delan has joined #nixos
<nij> infinisil: maybe we should dive into doc of nixpkgs?
<infinisil> I wish I could recommend a great longer Nix tutorial, but I don't know of one..
<infinisil> The nixpkgs docs are more of a reference and random bits, can't really be used as a tutorial
<infinisil> I personally at least learned Nix by just doing stuff with it
<nij> infinisil: no worries! I will just go for whatever that might work.
<nij> infinisil: Yeah! I'd like to do that too.
<nij> infinisil: If there would be a tutorial on how to install+configure shell right after installation of nixOS that'd be great.
<nij> I hope one day I can write one..
<nij> I just want my xmonad config to work. And compile my own st :DD
<infinisil> Not a tutorial, but the option listing is pretty good for such things: https://nixos.org/nixos/options.html#
<nij> Oh. You mean we might want to config the configuration.nix right away?
codezero has quit [Ping timeout: 264 seconds]
zeta_0 has quit [Quit: rcirc on GNU Emacs 26.3]
<infinisil> That's how pretty much everything is done on NixOS, so I guess yeah :)
<nij> How about compiling github-hosted codes? Not all things are in the official repo i guess.
<infinisil> Those need to be packaged with Nix then
<evanjs> nij: yeah it's so nice to be able to change my config and let nix do the rest. A decent testing env would be nice, but meh....
<infinisil> But nixpkgs has a *lot* of packages
<tinamus[m]> infinisil: any idea about how to set powerlevel10k as the theme of zsh?
<evanjs> have one hold on
<evanjs> der u go
<evanjs> it's a little weird (pulled mostly from infinisil :P) but some commands are defined in the nix expression and then folded into the haskell file
<tinamus[m]> What a life saver, thank you!
<infinisil> Hehe
nij has quit [Ping timeout: 260 seconds]
joehh1_ has quit [Ping timeout: 264 seconds]
<infinisil> Man, my nixos config is super messy
<infinisil> Maybe I should set a goal of improving it a tiny bit every day
zeta_0 has joined #nixos
<tinamus[m]> <infinisil "Maybe I should set a goal of imp"> always a good goal haha
<zeta_0> i'm able to go into a nix-shell without any errors, but this callPackage function is not working? https://dpaste.org/u3HE
dsiypl4_ has quit [Ping timeout: 256 seconds]
<zeta_0> that's the shell.nix file, here's the ghc.nix file: https://dpaste.org/jCeN
<zeta_0> clever: it looks like your callPackage solution does not work ^
<zeta_0> i'll tinker with it a little more
proofofkeags has joined #nixos
<zeta_0> i enable ghcid and ghcide, but the terminal is returning command not found, how strange
markus1199 has joined #nixos
<zeta_0> i give up, i'll try again some other time, later everyone.
markus1189 has quit [Ping timeout: 244 seconds]
zeta_0 has quit [Quit: rcirc on GNU Emacs 26.3]
h0m1 has quit [Ping timeout: 260 seconds]
orivej has quit [Ping timeout: 246 seconds]
h0m1 has joined #nixos
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/1d859196574 (from 3 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
knerten1 has joined #nixos
knerten2 has quit [Ping timeout: 244 seconds]
<{^_^}> [mobile-nixos] @samueldr opened pull request #189 → Updates for the boot GUI → https://git.io/JJRB7
shibboleth has quit [Remote host closed the connection]
jumper149 has quit [Quit: WeeChat 2.9]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #93880 → python37Packages.bravia-tv: 1.0.5 -> 1.0.6 → https://git.io/JJRRv
cptchaos83 has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
proofofkeags has quit [Remote host closed the connection]
cptchaos83 has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #93881 → python27Packages.azure-mgmt-loganalytics: 0.6.0 -> 0.7.0 → https://git.io/JJRR3
Kk2 has joined #nixos
jmeredith has quit [Quit: Connection closed for inactivity]
jdawg has joined #nixos
MarcWebe1 has joined #nixos
MarcWeber has quit [Ping timeout: 240 seconds]
aw has quit [Quit: Quitting.]
spacefrogg has quit [Quit: Gone.]
aw has joined #nixos
spacefrogg has joined #nixos
<energizer> ssh is rejecting public key that's in /etc/ssh/authorized_keys.d/energizer, generated by users.users.energizer.openssh.authorizedKeys.keys. how to diagnose?
<{^_^}> [nixpkgs] @r-ryantm opened pull request #93882 → python37Packages.asdf: 2.6.0 -> 2.7.0 → https://git.io/JJRRP
umwelto has joined #nixos
<umwelto> hi, kind of lost here looking for a way to enable gadgetfs in nixos
<{^_^}> [nixpkgs] @cfhammill opened pull request #93883 → r-modules: add GitHub only r packages → https://git.io/JJRRH
<{^_^}> [nixpkgs] @veprbl merged pull request #93796 → lhapdf: 6.2.3 -> 6.3.0 → https://git.io/JJ4x1
<{^_^}> [nixpkgs] @veprbl pushed commit from @r-ryantm to master « lhapdf: 6.2.3 -> 6.3.0 (#93796) »: https://git.io/JJRRp
<Kk2> ,channels
<{^_^}> Largest Nix channels: #nixos, #nixos-dev, #nixos-chat, #nixos-aarch64, #nixos-security, #nixcon, #nixos-officehours, #nixops, #haskell.nix, #nix-darwin, #nixos-de, #nixos-emacs, #nixos-on-your-router, #nixos-nur, #nix-lang, #nixos-fr, #nixos-systemd, #nixos-borg, #nixos-wiki
<infinisil> energizer: Maybe check sshd logs
stoile has quit [Ping timeout: 240 seconds]
lambda-11235 has joined #nixos
wnklmnn has quit [Ping timeout: 240 seconds]
jdawg_ has joined #nixos
jdawg has quit [Read error: Connection reset by peer]
<{^_^}> [nixpkgs] @zowoq opened pull request #93884 → gobetween: 0.7.0 -> 0.8.0 → https://git.io/JJR0D
fling has quit [Ping timeout: 258 seconds]
virus_dave has quit [Quit: virus_dave]
Supersonic112 has joined #nixos
Supersonic has quit [Ping timeout: 244 seconds]
Supersonic112 is now known as Supersonic
jdawg_ has quit [Read error: Connection reset by peer]
jdawg has joined #nixos
waleee-cl has quit [Quit: Connection closed for inactivity]
ddellacosta has quit [Ping timeout: 256 seconds]
sigmundv__ has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #93885 → python27Packages.dash-renderer: 1.5.0 -> 1.5.1 → https://git.io/JJREk
sigmundv_ has quit [Ping timeout: 264 seconds]
pjt_014 has joined #nixos
jdawg has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @r-burns opened pull request #93886 → cmake: 3.17.3 -> 3.18.0 → https://git.io/JJRE2
<{^_^}> [nixpkgs] @zowoq merged pull request #91292 → mockgen: init at 1.4.3 → https://git.io/JfAQE
<{^_^}> [nixpkgs] @zowoq pushed 2 commits to master: https://git.io/JJRuE
sigmundv__ has quit [Ping timeout: 240 seconds]
<petersjt014[m]> ,locate git
<{^_^}> Found in packages: git, atom, howl, peru, ruby, salt, grocy, gitlab, heroku, tailor, bundler, cypress, go_1_12, gargoyle, ruby_2_7, spacegun, vscodium, atom-beta, oh-my-zsh, plan9port, qtcreator, gitMinimal, kodestudio, zsh-prezto, couchpotato, factor-lang, gitaly.ruby, rubyMinimal, go_bootstrap, logstash6-oss, logstash7-oss, gambit-unstable, jetbrains.clion, jetbrains.rider, jetbrains.goland, gitAndTools.stgit, gitAndTools.gitSVN, and 17 more
nickeraqua has joined #nixos
<nickeraqua> I'm using CURL_NIX_FLAGS and adding -x to my proxy. But FTP downloads don't work.
domogled has quit [Quit: domogled]
Rusty1 has quit [Quit: WeeChat 2.3]
nij has joined #nixos
tmaekawa has joined #nixos
tmaekawa has quit [Client Quit]
Fare has quit [Ping timeout: 260 seconds]
CMCDragonkai1 has joined #nixos
<ar> my activation problem with the update-groups script from yesterday gets weirder
<ar> it turns out my /var/lib/nixos/uid-map is 2.1GB
kreyren has quit [Remote host closed the connection]
kreyren has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #93887 → python37Packages.ordered-set: 4.0.1 -> 4.0.2 → https://git.io/JJRgZ
<ar> and that file has an entry that's full of "Ã"
<ar> $ sed 's/Ã//g' /var/lib/nixos/uid-map
<ar> sed: regex input buffer length larger than INT_MAX
<ar> that's going to be lovely
growpotkin has quit [Quit: ZNC 1.8.1 - https://znc.in]
<ornxka> how do i turn a file into a string in nix?
<ornxka> ive got a yuge file that would be really annoying to modify in any way and id like it to be a string that i can reference in my configuration.nix
<clever> ornxka: builtins.readFile ./file
<ornxka> ahhh ty
<{^_^}> [nixpkgs] @alyssais opened pull request #93888 → libhugetlbfs: init at 2.22 → https://git.io/JJRgi
<ornxka> is that meaningfully different from lib.strings.fileContents
<ornxka> which i just found out about 10 seconds before you said that
stoile has joined #nixos
<clever> fileContents = file: removeSuffix "\n" (builtins.readFile file);
<clever> ornxka: fileContents just deletes the trailing \n at the end of the string
palo1 has joined #nixos
<ornxka> ahhh
<clever> so if you read a "12\n" into nix, it becomes "12"
<clever> editors and echo tend to add that junk at the end
<ornxka> readFile is what i want then, ty
* ornxka has emacs configured to not put trailing newlines
<clever> and for multi-line files, it matters less
palo has quit [Ping timeout: 246 seconds]
palo1 is now known as palo
drakonis has quit [Quit: WeeChat 2.8]
Fulgen has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @marsam opened pull request #93889 → python38Packages.pandas: fix build on darwin → https://git.io/JJR2f
ardumont has quit [Ping timeout: 272 seconds]
ardumont_ has joined #nixos
inf has quit [Ping timeout: 258 seconds]
<kini> I have a couple of LUKS volumes whose keyfiles are in `/boot`. I'd like them to be decrypted at some point in the boot process, but using `boot.initrd.luks.devices` makes the system try to decrypt the volumes before the `/boot` fs is loaded. Is there some way to get those volumes to be decrypted at a later point?
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/352eeb059d4 (from 2 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
codygman has quit [Ping timeout: 240 seconds]
camsbury has joined #nixos
camsbury has quit [Remote host closed the connection]
camsbury has joined #nixos
<{^_^}> [nixpkgs] @marsam opened pull request #93890 → python: 3.8.3 -> 3.8.5, 3.9.0a4 -> 3.9.0b5 → https://git.io/JJR2H
camsbury- has joined #nixos
camsbury- has quit [Remote host closed the connection]
camsbury has quit [Remote host closed the connection]
camsbury has joined #nixos
camsbury has quit [Remote host closed the connection]
smatting_ has joined #nixos
umwelto has quit [Remote host closed the connection]
smatting_ has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #93891 → python37Packages.h5netcdf: 0.8.0 -> 0.8.1 → https://git.io/JJRaE
<{^_^}> [nixpkgs] @danieldk merged pull request #93357 → exim: add DMARC support → https://git.io/JJZ93
<{^_^}> [nixpkgs] @danieldk pushed 4 commits to master: https://git.io/JJRaz
<{^_^}> [nixpkgs] @danieldk merged pull request #93800 → drawio: 13.4.5 -> 13.5.1 → https://git.io/JJ4jn
<{^_^}> [nixpkgs] @danieldk pushed 3 commits to master: https://git.io/JJRa2
<{^_^}> [nixpkgs] @danieldk merged pull request #92253 → finalfrontier: init at 0.9.3 → https://git.io/JJkBF
<{^_^}> [nixpkgs] @danieldk pushed 2 commits to master: https://git.io/JJRaV
prehonor has joined #nixos
codygman has joined #nixos
work_ has quit [Quit: Connection closed for inactivity]
prehonor has quit [Ping timeout: 245 seconds]
asheshambasta has joined #nixos
<{^_^}> [nixpkgs] @danieldk merged pull request #93852 → newsflash: fix loading external https content → https://git.io/JJRZb
<{^_^}> [nixpkgs] @danieldk pushed 2 commits to master: https://git.io/JJRVv
<energizer> kini: there's a thing called fileSystems.foo.encrypted but idk what it does
prehonor has joined #nixos
<kini> energizer: looking at the implementation in `nixos/modules/tasks/encrypted-devices.nix`, it seems like it just maps those things into `boot.initrd.luks.devices` :(
<kini> oh wait, no -- it excludes the ones that don't have keyfiles, so maybe this will work...
Heirlung has quit [Ping timeout: 264 seconds]
Heirlung- has joined #nixos
<{^_^}> [nixpkgs] @FRidh merged pull request #93891 → python37Packages.h5netcdf: 0.8.0 -> 0.8.1 → https://git.io/JJRaE
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « python37Packages.h5netcdf: 0.8.0 -> 0.8.1 »: https://git.io/JJRV4
<{^_^}> [nixpkgs] @FRidh merged pull request #93887 → python37Packages.ordered-set: 4.0.1 -> 4.0.2 → https://git.io/JJRgZ
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « python37Packages.ordered-set: 4.0.1 -> 4.0.2 »: https://git.io/JJRVR
Heirlung- is now known as Heirlung
<{^_^}> [nixpkgs] @FRidh merged pull request #93880 → python37Packages.bravia-tv: 1.0.5 -> 1.0.6 → https://git.io/JJRRv
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « python37Packages.bravia-tv: 1.0.5 -> 1.0.6 »: https://git.io/JJRV0
<kini> Yup, it sets `boot.initrd.postMountCommands` to add `cryptsetup open` there. Perfect! Not sure how it will then mount the decrypted `/dev/mapper` volume after that, but that's somewhere to start...
<{^_^}> [nixpkgs] @FRidh merged pull request #93877 → python27Packages.dpkt: 1.9.2 -> 1.9.3 → https://git.io/JJR4U
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « python27Packages.dpkt: 1.9.2 -> 1.9.3 »: https://git.io/JJRVE
<{^_^}> [nixpkgs] @FRidh merged pull request #93853 → python37Packages.ase: 3.19.1 -> 3.19.2 → https://git.io/JJRnZ
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « python37Packages.ase: 3.19.1 -> 3.19.2 »: https://git.io/JJRVa
steshaw has joined #nixos
Desetude has joined #nixos
<{^_^}> [nixpkgs] @danieldk merged pull request #93810 → lime: 4.3.1 -> 4.4.0 → https://git.io/JJBkB
<{^_^}> [nixpkgs] @danieldk pushed 2 commits to master: https://git.io/JJRVo
cjpbirkbeck has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @zowoq merged pull request #93636 → miniserve: 0.7.0 -> 0.8.0 → https://git.io/JJleZ
<{^_^}> [nixpkgs] @zowoq pushed to master « miniserve: 0.7.0 -> 0.8.0 »: https://git.io/JJRVX
knupfer has joined #nixos
knupfer has quit [Client Quit]
knupfer has joined #nixos
knupfer has quit [Client Quit]
knupfer has joined #nixos
knupfer has quit [Client Quit]
knupfer has joined #nixos
knupfer has quit [Client Quit]
knupfer has joined #nixos
knupfer has quit [Client Quit]
knupfer has joined #nixos
knupfer has quit [Client Quit]
knupfer has joined #nixos
knupfer has quit [Client Quit]
knupfer has joined #nixos
knupfer has quit [Client Quit]
knupfer has joined #nixos
knupfer has quit [Client Quit]
knupfer has joined #nixos
knupfer has quit [Client Quit]
knupfer1 has joined #nixos
knupfer1 has quit [Client Quit]
knupfer has joined #nixos
knupfer has quit [Client Quit]
knupfer has joined #nixos
knupfer has quit [Client Quit]
knupfer has joined #nixos
knupfer has quit [Client Quit]
knupfer has joined #nixos
knupfer has quit [Client Quit]
knupfer1 has joined #nixos
knupfer1 has quit [Client Quit]
knupfer has joined #nixos
knupfer has quit [Client Quit]
<{^_^}> [nixpkgs] @vcunat pushed to master « pantheon.gala: fix build by using older vala »: https://git.io/JJRVx
knupfer has joined #nixos
knupfer has quit [Client Quit]
knupfer has joined #nixos
knupfer has quit [Read error: Connection reset by peer]
knupfer has joined #nixos
knupfer has quit [Client Quit]
knupfer has joined #nixos
Pwnna has quit [Quit: Bye]
Pwnna has joined #nixos
prehonor has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @vcunat closed pull request #92945 → Bump Roon-Server to latest version and fix bug → https://git.io/JJY6Q
<energizer> what permissions am i supposed to have on /etc/ssh/ ?
<clever> [clever@system76:~]$ ls -ld /etc/ssh
<clever> drwxr-xr-x 3 root root 11 Jul 13 03:27 /etc/ssh
* clever heads to bed
<energizer> ty
dermetfan has joined #nixos
galagora has joined #nixos
<{^_^}> [nixpkgs] @flokli opened pull request #93892 → nixos/yubikey-agent: add missing mkIf → https://git.io/JJRw0
<{^_^}> [nixpkgs] @vcunat pushed 3 commits to staging: https://git.io/JJRwE
<{^_^}> [nixpkgs] @vcunat merged pull request #91975 → Misc static cross fixes → https://git.io/JJUYM
<galagora> testing... (sorry!)
user_0x58 has quit [Ping timeout: 244 seconds]
steshaw has quit [Remote host closed the connection]
<galagora> Hey, how do libraries end up in /run/current-system/sw/lib/ ? Adoptopenjdk11 ends up there while oraclejdk11 (from master) seemingly does not, despite having essentially identical nix expressions
<edef> hrm, that shouldn't really be happening at all
<{^_^}> [nixpkgs] @Ma27 merged pull request #93892 → nixos/yubikey-agent: add missing mkIf → https://git.io/JJRw0
<{^_^}> [nixpkgs] @Ma27 pushed 2 commits to master: https://git.io/JJRwM
<galagora> Is the nix store searched for files with a /lib subdirectory?
<edef> there's an option that controls which subdirs get pulled from environment.systemPackages
knupfer has quit [Ping timeout: 260 seconds]
<edef> environment.pathsToLink — which includes /lib by default
<{^_^}> [nixpkgs] @flokli merged pull request #93850 → yubikey-agent: fix on darwin → https://git.io/JJRZG
<{^_^}> [nixpkgs] @flokli pushed 2 commits to master: https://git.io/JJRw5
afreak has joined #nixos
<galagora> Oh ok, I see. The oraclejdk derivation doesn't put its files (.so and so on) in a subdirectory unlike openjdk
<galagora> So they're strewn all over /run/ ... /lib
<galagora> What does 'sw' mean, btw?
<{^_^}> [nixpkgs] @charvp opened pull request #93893 → nixos/tests/networking: fix macvlan tests → https://git.io/JJRrT
nixbitcoin_ has joined #nixos
nixbitcoin has quit [Ping timeout: 240 seconds]
steshaw has joined #nixos
ManiacOfMadness has quit [Ping timeout: 244 seconds]
<steshaw> Hi, I had a single-user Nix installation on my Mac. I used the installer to install the daemon (multi-user) version.
<steshaw> Looks like I ran into https://github.com/NixOS/nix/issues/2190 as I have my umask set to 077.
<{^_^}> nix#2190 (by rprimus, 2 years ago, closed): [macOS][install] Fails building user-environment.drv
<steshaw> This problem was noted back in 2017 https://github.com/NixOS/nix/issues/1560
<{^_^}> nix#1560 (by dezgeg, 2 years ago, open): Install script should set a desired umask
mallox has joined #nixos
m1cr0man has quit [Ping timeout: 240 seconds]
<steshaw> The umask problem also affects Linux https://github.com/NixOS/nix/issues/2377
<{^_^}> nix#2377 (by Valknjoggr, 1 year ago, open): Installer assumes liberal umask
ManiacOfMadness has joined #nixos
<steshaw> I set the umask back to 022 and re-ran the installer. This required me to delete the old installation and re-run the installer. Folks here probably know the drill.
<steshaw> After 2 install, I got a successful one with "Alright! We're done!"
<steshaw> However, when I open a new shell, nix-shell is not found in my PATH. So the recommended test command fails (nix-shell -p nix-info --run "nix-info -m").
alp_ has joined #nixos
malook has joined #nixos
<steshaw> Anyone run into a similar problem?
philr_ has quit [Ping timeout: 256 seconds]
lambda-11235 has quit [Quit: Bye]
<Reventlov> Hi there. Still trying to get my overlay with django 3 working. The code is at https://github.com/rgrunbla/bonjourbonjour
steshaw has quit [Remote host closed the connection]
<Reventlov> Yet, building my VM (with make build_standalone) it's still using 2.2.14
CMCDragonkai1 has quit [Quit: CMCDragonkai1]
<{^_^}> [nixpkgs] @petabyteboy opened pull request #93894 → nixos/gitlab-runner: add clone-url option → https://git.io/JJRo8
steshaw has joined #nixos
fendor has joined #nixos
steshaw has quit [Remote host closed the connection]
<{^_^}> Channel nixos-20.03 advanced to https://github.com/NixOS/nixpkgs/commit/076c67fdea6 (from 18 hours ago, history: https://channels.nix.gsc.io/nixos-20.03)
<Ke> so what enables stuff outside of producing dead code in /nix/store is just adding some variables that get executed by nixos-rebuild --switch?
<Ke> like system.build.installBootLoader gets executed as a part of some script
roberth has quit [Quit: Idle for 30+ days]
quiet_laika[m] has quit [Quit: Idle for 30+ days]
rellen[m] has left #nixos ["Kicked by @appservice-irc:matrix.org : Idle for 30+ days"]
<Ke> oh dear so many layers
alp_ has quit [Ping timeout: 264 seconds]
<{^_^}> [nixpkgs] @zimbatm merged pull request #93871 → terraform: 0.12.28 -> 0.12.29 → https://git.io/JJRWU
<{^_^}> [nixpkgs] @zimbatm pushed 3 commits to master: https://git.io/JJRKi
drewr has quit [Ping timeout: 244 seconds]
galagora has quit [Remote host closed the connection]
<Ke> system.activationScripts
drewr has joined #nixos
justanotheruser has quit [Ping timeout: 272 seconds]
<nij> evanjs[m]: Thank you! You replied a while ago while I could not access to my laptop.
<{^_^}> [nixpkgs] @yoctocell opened pull request #93895 → lf: 14 -> 15 → https://git.io/JJRKF
<{^_^}> [nixos-homepage] @github-actions[bot] pushed commit from GitHub Actions to master « Update flake.lock and blogs.xml [ci skip] »: https://git.io/JJRKb
<nij> ==============
orivej has joined #nixos
<nij> Could someone help me on configuring xmonad? I have @evanjs's config in my /home/me/xmonad/xmonad.hs
<nij> I have `services.xserver.windowManager.xmonad.enable = true` in `/etc/nixos/configuration.nix`, and
<nij> have 'services.xserver.windowManager.xmonad.config = /home/me/xmonad/xmonad.hs` in `/etc/nixos/configuration.nix` too.
<nij> I've run `nixos-rebuild switch. No errors. However
<TheSirC[m]> Let say that you have a bunch of overlays in the `overlays` directory (sometime in nested folders), how would you import them as overlay without breaking you whole system whit infinite recursion ?
<nij> 1. `nix-env --list-generations` doesn't suggest that I created a new generation.
codezero has joined #nixos
<nij> 2. `Even after reboot, it doesn't seem that my xmonad has changed.
<nij> Maybe I missed some step?
<nij> Btw, I just installed my nixOS, and have almost nothing else configured.
<nij> (So perhaps I need to configure my haskell env?)
<lassulus> nij: these steps should normally be enough, can you try setting some other setting and see if it has any effect?
<nij> lassulus: Thanks for reaching out! What do you mean by switching settings?
nature has joined #nixos
<nij> *other settings
<lassulus> do some other settings inside your configuration.nix take effect? for example if you change your default text edit, or enable another service
<nij> hmm lemme try.
<{^_^}> Channel nixpkgs-unstable advanced to https://github.com/NixOS/nixpkgs/commit/017c7a4940a (from 4 days ago, history: https://channels.nix.gsc.io/nixpkgs-unstable)
<nij> lassulus: I have set xmonad to disable. Ran `nixos-rebuild switch`
<nij> nix-env --list-generations doesn't suggest any new generation is created. However, lemme first reboot and see what happens.
<{^_^}> [nixpkgs] @danieldk opened pull request #93896 → rocm-opencl-runtime: use unaltered stdenv → https://git.io/JJR6u
<nij> Weirdo! It did take away my xmonad. So I'd say the change is set.
<nij> Also, I just noticed that `list-generations` suggests new gens are created in my normal user. I couldn't see any change because I ran it as root. (dunno why such difference)
<lassulus> yeah, there are different generations for root and each user
<{^_^}> [nixpkgs] @danieldk merged pull request #93895 → lf: 14 -> 15 → https://git.io/JJRKF
<{^_^}> [nixpkgs] @danieldk pushed 2 commits to master: https://git.io/JJR61
<{^_^}> [nixpkgs] @Ma27 pushed 3 commits to master: https://git.io/JJR6S
malook has quit [Quit: malook]
<nij> lassulus: hmm.. I didn't know that I was configuring for the normal users.
<lassulus> that seems indeed a bit weird
<nij> oh
<nij> I switched it back, and ran xmonad without startx
<lassulus> ah, what display-manager are you using?
<nij> of course xmonad did not start, but I can now see its error message
asymptotically has joined #nixos
<nij> It's in a virtual machine, and I haven't learned how to copy and paste.. lemme try
nature has quit [Ping timeout: 272 seconds]
<nij> Lemme type it out manually..
nickeraqua has quit [Ping timeout: 245 seconds]
<nij> XMonad is recompiling and replacing itself another XMonad process berrent prcess is called "xmonad" but the compiled config should be called "xmonad-x86_64-linux"
<nij> XMonad will use ghc to recompile, because "/home/me/.xmonad/build" does not exist.
<nij> XMOnad skipping recompile b/c it is not forced (e.g. via --recompile),and neither xmonad.hs nor any *hs *lhs *hsc files in /lib have been changed.
<nij> /home/me/.xmonad/xmonad-x86_64-linux: executeFile:does not exist (No such file or directory)
<nij> (( that's all ))
afreak has quit [Remote host closed the connection]
<lassulus> what command did produce that error?
<nij> xmonad
<nij> `xmonad`
<lassulus> ah, well it doesn't take your configuration into your account, which you have configured with services.xserver.windowManager.xmonad.config
<nij> seems so..
nixbitcoin_ is now known as nixbitcoin
<lassulus> yeah, the default xmonad wrapper tries to run from $HOME/.xmonad/xmonad.hs
<lassulus> but thats not the same xmonad which is running if you configure services.xserver.windowManager.xmonad.config
bukkitgerman8608 has quit [Ping timeout: 256 seconds]
<lassulus> but you could try moving your xmonad-config to the expected location and see what fails?
ngerstle[m] has joined #nixos
<nij> Lemme do that
<nij> I'll do it by backing up the original ~/.xmonad
<nij> and symlink
bukkitgerman8608 has joined #nixos
WilliButz has quit [Quit: bye]
WilliButz has joined #nixos
philr_ has joined #nixos
<nij> OK. Now `xmonad` tries to compile, but gave error:executeFile does not exist.
<nij> Lemme dirty fix it by `nix-env -iA nixos.executeFile`
<nij> Oops.. nixos.executeFile not found
<nij> Err.. due to this page (might be outdated, seems I should include more haskellpackages inside? (http://wiki.haskell.org/Xmonad/Installing_xmonad#NixOS)
<{^_^}> [nixpkgs] @Ma27 pushed to master « epson-escpr2: 1.1.13 -> 1.1.15 »: https://git.io/JJRiE
adyatlov has quit [Remote host closed the connection]
<nij> (Apparently the section was written around 2016)
Philipp[m]3 has joined #nixos
<lassulus> the error is, I think, that the file xmonad is trying to execute does not exist
<lassulus> so there should be something like xmonad-x86_64-linux in your .xmonad folder
<nij> Before symlinking, there was nothing in `~/.xmonad`
<nij> After symlinking, there is also no `xmonad-x86_64-linux`.. it is completely the same as in the repo.
quinn has quit [Quit: ZNC 1.8.1 - https://znc.in]
pjt_014 has quit [Ping timeout: 240 seconds]
<lassulus> what does xmonad --recompile say?
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/93013cd8b36 (from 62 minutes ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
<nij> It gives lots of errors. Mainly about not being able to find haskell modules, eg "XMonad.Action.Search"
<{^_^}> [nixpkgs] @laikq opened pull request #93897 → veusz: init at 3.2.1 → https://git.io/JJRid
<nij> Perhaps I should setup my haskell environment first? As I mentioned above, I haven't configured barely a thing after installing nixos.
malook has joined #nixos
asheshambasta has quit [Ping timeout: 272 seconds]
<lassulus> ah that is in contrib, do you have services.xserver.windowManager.xmonad.enableContribAndExtras = true; ?
<nij> Nope!
<nij> Lemme add!
<nij> Seems we've found the problem. It's compiling.. finger crossed
<nij> Err.. `startx` now breaks. Lemme reboot and try it again.
waleee-cl has joined #nixos
<{^_^}> [nixpkgs] @uvNikita opened pull request #93898 → [20.03] python: aiohue: 1.10.1 -> 2.1.0 → https://git.io/JJRPc
newman has joined #nixos
<nij> Rebooting makes `startx` working again. However, there's still seem to be an undefined stuff in haskell.
<nij> xmonad.hs:325:55: error:
<nij> Not in scope: 'Search.promptSearchBrowser''
<nij> Perhaps you meant one of these:
<nij> 'Search.promptSearchBrowser' (imported from XMonad.Actions.Search),
<nij> ----
<lassulus> can't see the difference?
<lassulus> maybe the extra ' ?
<nij> ... Eww this seems to be that evanjs[m] has redefined Search.promptSearchBrowser'
<nij> yes
<nij> lemme find where that is in the repo
knupfer has joined #nixos
tmaekawa has joined #nixos
newman has quit [Remote host closed the connection]
aflatter[m] has joined #nixos
tmaekawa has quit [Client Quit]
alp_ has joined #nixos
malook has quit [Ping timeout: 256 seconds]
<nij> That's the only instance of `Search.promptSearchBrowser'` in the repo I believe.. I take the `'` manually away, and now it's not complaining about that.
<nij> New complaints are "autorandr: command not found", "@xmobar@": command not found.
<nij> lassulus: But this I should spend some time working through. There has been great process. Thank you so much.
<nij> progress&
<nij> progress*
<lassulus> nij: yw, have fun with NixOS!
<nij> lassulus: Thanks :D
knupfer has quit [Ping timeout: 264 seconds]
alp_ has quit [Ping timeout: 246 seconds]
cap has quit [Ping timeout: 244 seconds]
orivej has quit [Ping timeout: 264 seconds]
orivej has joined #nixos
civodul has joined #nixos
<{^_^}> [nixpkgs] @petabyteboy merged pull request #93854 → tor: build with standard libevent → https://git.io/JJRna
<{^_^}> [nixpkgs] @petabyteboy pushed to master « tor: build with standard libevent (#93854) »: https://git.io/JJRXl
koozz has joined #nixos
<{^_^}> [nixpkgs] @DieGoldeneEnte opened pull request #93900 → [tiledb] disabled (sometimes) failing tests → https://git.io/JJRX0
<Miyu-saki> codygman: Hi, have you gotten around to fixing this? https://github.com/codygman/niv-repro-infinite-recursion
cap has joined #nixos
<{^_^}> [nixpkgs] @oxalica opened pull request #93901 → tdesktop: 2.1.13 -> 2.2.0 → https://git.io/JJRXK
<koozz> hi! I have NixOS running for just one month, but I'm really liking it. They only thing that isn't working on my laptop is the microphone. The whole audio-in is not working (also with headphones that have a mic). Sound is working but 'Audio Volume Settings' state: 'No Input Devices Available'. I thought I might be able to contribute a hardware setup
<koozz> for 'nixos-hardware/hp/elitebook/840-g6' but I don't actually know what soundcard or modprobe to configure. Are there any pointers to what I can try?
<Miyu-saki> koozz: Does it appear on Alsa or nay?
<{^_^}> [nixpkgs] @freezeboy opened pull request #93902 → kwave: init at 20.04.3 → https://git.io/JJRXS
orivej has quit [Quit: No Ping reply in 180 seconds.]
work_ has joined #nixos
orivej has joined #nixos
<koozz> Miyu-saki How do you check? The alsamixer shows a capture volumebar.
inf has joined #nixos
zupo has joined #nixos
installingNIX has joined #nixos
<{^_^}> [nixos-hardware] @afreakk opened pull request #180 → dell/xps/13-9360: conflicting font fix → https://git.io/JJR1T
<installingNIX> Hello
<installingNIX> I am installing nix and happy to chat from my first time booted nixos. it seems I have a problem with my boot configuration
<installingNIX> can I ask you for help?
sangoma has joined #nixos
<{^_^}> [nix] @edolstra merged pull request #3860 → Allow PRECOMPILE_HEADERS in cross-compilation → https://git.io/JJRCo
<{^_^}> [nix] @edolstra pushed 2 commits to master: https://git.io/JJR1q
<koozz> Miyu-saki I'll try some settings, need to reboot
<{^_^}> [nixpkgs] @freezeboy opened pull request #93903 → kfloppy: init at 20.04.3 → https://git.io/JJR1O
<installingNIX> well I noticed that
<installingNIX> boot.plymouth.enable = true; doesn't seems to work for me
<installingNIX> I need to run sudo nixos-rebuild --install-bootloader switch every time I am changing boot option right?
nij has quit [Ping timeout: 240 seconds]
koozz has quit [Ping timeout: 245 seconds]
<installingNIX> boot.loader.grub.useOSProber doesn't work as well
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<{^_^}> [nixpkgs] @mweinelt merged pull request #93893 → nixos/tests/networking: fix macvlan tests → https://git.io/JJRrT
<{^_^}> [nixpkgs] @mweinelt pushed 2 commits to master: https://git.io/JJR18
afreak has joined #nixos
zupo has joined #nixos
jluttine has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @freezeboy opened pull request #93904 → ksquares: init at 20.04.3 → https://git.io/JJR1r
installingNIX has quit [Remote host closed the connection]
installingNIX has joined #nixos
koozz has joined #nixos
<{^_^}> [nixpkgs] @flokli merged pull request #93781 → notmuch: 0.29.3 -> 0.30 → https://git.io/JJ4gO
<{^_^}> [nixpkgs] @flokli pushed 2 commits to master: https://git.io/JJR16
<Miyu-saki> koozz: Hi, sorry, I got distracted. Are you still around?
nij has joined #nixos
__monty__ has joined #nixos
<koozz> Found this guide https://nixos.wiki/wiki/ALSA but I cannot find model options for my card.
<koozz> Yes, I am
<Miyu-saki> koozz: Open `pavucontrol`, and what does `Configuration` say?
<koozz> one sec, I disabled pulseaudio to try all possible modprobes
orivej has quit [Ping timeout: 256 seconds]
orivej has joined #nixos
<{^_^}> Channel nixpkgs-unstable advanced to https://github.com/NixOS/nixpkgs/commit/7d557a5d1b3 (from 3 days ago, history: https://channels.nix.gsc.io/nixpkgs-unstable)
<koozz> Miyu-saki Built-in Audio; Profile: Analog Stereo Output, below that it's all blank
<{^_^}> [nixpkgs] @mweinelt merged pull request #93808 → mopidy-youtube: 3.0 -> 3.1 → https://git.io/JJBTx
<{^_^}> [nixpkgs] @mweinelt pushed 2 commits to master: https://git.io/JJR1d
<koozz> Miyu-saki The dropdown show a lot, but most are unavailable (like Analog Stereo Duplex (unavailable))
<koozz> Miyu-saki I'll try some more modprobes
dsiypl4_ has joined #nixos
orivej has quit [Quit: No Ping reply in 180 seconds.]
orivej has joined #nixos
Desetude has quit [Quit: WeeChat 2.7.1]
Bunogi has quit [Quit: The Lounge - https://thelounge.chat]
Bunogi has joined #nixos
jluttine has joined #nixos
<{^_^}> [nixpkgs] @aaronjanse opened pull request #93905 → pkgs/top-level: add x86_64-redox to release-cross.nix → https://git.io/JJRDZ
<{^_^}> [nixpkgs] @jtojnar merged pull request #93712 → malcontent: 0.7.0 → 0.8.0 → https://git.io/JJ80r
<{^_^}> [nixpkgs] @jtojnar pushed 2 commits to master: https://git.io/JJRDl
<{^_^}> [nixpkgs] @jtojnar merged pull request #85976 → wrapGAppsHook: add basic tests → https://git.io/JfLd8
<{^_^}> [nixpkgs] @jtojnar pushed 4 commits to staging: https://git.io/JJRD8
<{^_^}> [nixpkgs] @jtojnar closed pull request #93771 → flatpak: 1.6.3 → 1.8.1 → https://git.io/JJ4l4
<{^_^}> [nixpkgs] @jtojnar reopened pull request #93771 → flatpak: 1.6.3 → 1.8.1 → https://git.io/JJ4l4
<{^_^}> [nixpkgs] @jtojnar merged pull request #93771 → flatpak: 1.6.3 → 1.8.1 → https://git.io/JJ4l4
<{^_^}> [nixpkgs] @jtojnar pushed 5 commits to master: https://git.io/JJRD4
orivej_ has joined #nixos
user_0x58 has joined #nixos
sevanspowell has quit [Quit: Connection closed for inactivity]
Extends has joined #nixos
orivej has quit [Ping timeout: 256 seconds]
Extends has quit [Client Quit]
<{^_^}> [nixpkgs] @magnetophon opened pull request #93906 → mu: 1.4.10 -> 1.4.12 → https://git.io/JJRD1
<{^_^}> [nixpkgs] @vbgl merged pull request #93612 → ocamlPackages.ocsigen_server: fix build; 2.15.0 → 2.16.0 → https://git.io/JJW2M
<{^_^}> [nixpkgs] @vbgl pushed 2 commits to master: https://git.io/JJRDM
malook has joined #nixos
orivej_ has quit [Ping timeout: 265 seconds]
orivej has joined #nixos
dermetfan has quit [Ping timeout: 260 seconds]
globin has quit [Ping timeout: 244 seconds]
<{^_^}> [nixpkgs] @petabyteboy merged pull request #93901 → tdesktop: 2.1.13 -> 2.2.0 → https://git.io/JJRXK
<{^_^}> [nixpkgs] @petabyteboy pushed commit from @oxalica to master « tdesktop: 2.1.13 -> 2.2.0 (#93901) »: https://git.io/JJRDp
zouz has joined #nixos
<Miyu-saki> koozz: Ah crap, I keep getting distracted, sorry. I like, use IRC once every week nowadays. So
<Miyu-saki> The fact that it says Duplex (unavailable) says a lot methinks?
<Miyu-saki> Duplex means that your device has both input and output.
m1cr0man has joined #nixos
malook has quit [Quit: malook]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #93907 → python37Packages.opt-einsum: 3.2.1 -> 3.3.0 → https://git.io/JJRyY
globin has joined #nixos
fendor_ has joined #nixos
fendor_ has quit [Remote host closed the connection]
fendor_ has joined #nixos
fendor has quit [Ping timeout: 240 seconds]
Fulgen has joined #nixos
<colemickens> does stage-1 -> stage-2 lose a /etc/resolv.conf set in stage-1, by chance?
fendor__ has joined #nixos
nij has quit [Ping timeout: 240 seconds]
fendor_ has quit [Ping timeout: 246 seconds]
fendor has joined #nixos
<{^_^}> [nixpkgs] @vbgl opened pull request #93908 → ocamlPackages.mdx: 1.6.0 → 1.7.0 → https://git.io/JJRyg
fendor__ has quit [Ping timeout: 246 seconds]
installingNIX has quit [Remote host closed the connection]
orivej has quit [Ping timeout: 264 seconds]
orivej_ has joined #nixos
orivej_ has quit [Ping timeout: 240 seconds]
orivej has joined #nixos
shibboleth has joined #nixos
<{^_^}> [nixpkgs] @sternenseemann opened pull request #93909 → ocamlPackages.cohttp{,-lwt,-lwt-unix}: 2.5.1 → 2.5.4 → https://git.io/JJRyM
<{^_^}> [nixpkgs] @ajs124 opened pull request #93910 → nss: 3.54 -> 3.55 → https://git.io/JJRyS
orivej has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @thefloweringash opened pull request #93911 → libuv: disable flaky test "udp_multicast_join" on darwin → https://git.io/JJRyA
<koozz> Miyu-saki sound output is working, mic input is not, even with headphones (not through jack and also not over bluetooth). But I cannot find my codec in https://www.kernel.org/doc/Documentation/sound/hd-audio/models.rst my `https://www.kernel.org/doc/Documentation/sound/hd-audio/models.rst` outputs 2 lines: Realtek ALC215 and Intel Kabylake HDMI
<koozz> Miyu-saki (I meant, my `grep Codec /proc/asound/card0/codec*` outputs 2 models)
jmeredith has joined #nixos
<{^_^}> [nixpkgs] @thefloweringash opened pull request #93912 → stdenv/darwin: enable tapi support in cctools → https://git.io/JJRST
sangoma has quit [Ping timeout: 240 seconds]
Rusty1 has joined #nixos
jumper149 has joined #nixos
<{^_^}> [nixpkgs] @mweinelt merged pull request #93898 → [20.03] python: aiohue: 1.10.1 -> 2.1.0 → https://git.io/JJRPc
<{^_^}> [nixpkgs] @mweinelt pushed 2 commits to release-20.03: https://git.io/JJRSR
<{^_^}> [nixpkgs] @r-ryantm opened pull request #93913 → python37Packages.poetry: 1.0.9 -> 1.0.10 → https://git.io/JJRSa
fling has joined #nixos
<{^_^}> [nixpkgs] @romildo opened pull request #93914 → theme-obsidian2: 2.12 -> 2.13 → https://git.io/JJRSX
<bqv> I'd forgotten about that mastodon PR
<bqv> Gosh, will that ever be done
fling has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @graham33 opened pull request #93915 → python-rtmidi: add alsaLib and libjack2 deps → https://git.io/JJR9e
wnklmnn has joined #nixos
<{^_^}> [nixpkgs] @zimbatm merged pull request #93906 → mu: 1.4.10 -> 1.4.12 → https://git.io/JJRD1
<{^_^}> [nixpkgs] @zimbatm pushed 2 commits to master: https://git.io/JJR9G
<{^_^}> [nixpkgs] @DieGoldeneEnte opened pull request #93916 → pythonPackages.sphinx: added sphinx2 for recommonmark → https://git.io/JJR9c
<{^_^}> [nixpkgs] @zimbatm merged pull request #93884 → gobetween: 0.7.0 -> 0.8.0 → https://git.io/JJR0D
<{^_^}> [nixpkgs] @zimbatm pushed 2 commits to master: https://git.io/JJR9l
nature has joined #nixos
fling has joined #nixos
xkapastel has joined #nixos
arjen-jonathan has joined #nixos
<{^_^}> [nixpkgs] @vcunat pushed to master « pantheon: more build fixes by using older vala »: https://git.io/JJR9a
<immae> I have several packages in system path which adds elements to /run/current-system/sw/share, and vim in particular does not (in spite of the derivation having a /share/vim), what can I do to have vim put it to this place?
sangoma has joined #nixos
Fare has joined #nixos
<infinisil> immae: environment.pathsToLink = [ "/share/vim" ]; :)
<immae> ah!
<immae> Thanks :)
<immae> It work! How does nix decide to put it or not though? I have for instance liquidprompt which has the path automatically even though it doesn’t have this pathsToLink anywhere
<infinisil> > :p nixos.config.environment.pathsToLink
<{^_^}> [ "/etc/dbus-1" "/share/dbus-1" "/share/polkit-1" "/etc/bash_completion.d" "/share/bash-completion" "/share/man" "/share/info" "/share/doc" "/share/terminfo" "/bin" "/etc/xdg" "/etc/gtk-2.0" "/etc/gtk...
<infinisil> There is a default specified
<immae> Ah yes it is in /share/zsh
<immae> Good thanks :)
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
ravndal has joined #nixos
doyougnu has joined #nixos
<{^_^}> [nixpkgs] @zaninime opened pull request #93917 → openzone: init at 1.2.9 → https://git.io/JJRHt
Desetude has joined #nixos
Desetude has quit [Client Quit]
Desetude has joined #nixos
koozz has quit [Remote host closed the connection]
m1cr0man has quit [Quit: G'luck]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #93918 → python27Packages.pymysql: 0.9.3 -> 0.10.0 → https://git.io/JJRH0
dr_hrb has joined #nixos
dr_hrb has quit [Client Quit]
wnklmnn has quit [Ping timeout: 240 seconds]
ravndal has quit [Ping timeout: 264 seconds]
dsiypl4_ has quit [Remote host closed the connection]
dsiypl4_ has joined #nixos
rawr is now known as grumble
ravndal has joined #nixos
zupo has joined #nixos
jb55 has quit [Remote host closed the connection]
jb55 has joined #nixos
ravndal has quit [Client Quit]
ravndal has joined #nixos
xelxebar_ has joined #nixos
xelxebar has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @rnhmjoj merged pull request #91777 → pango: 1.44.7 -> 1.45.3 → https://git.io/JJfqW
<{^_^}> [nixpkgs] @rnhmjoj pushed 2 commits to staging: https://git.io/JJRQf
arjen-jonathan has quit [Ping timeout: 244 seconds]
ixxie has joined #nixos
bkv has joined #nixos
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/2bd78b209d1 (from 2 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
bqv has quit [Ping timeout: 272 seconds]
bkv is now known as bqv
bkv has joined #nixos
Fare has quit [Ping timeout: 244 seconds]
fendor has quit [Read error: Connection reset by peer]
orivej has joined #nixos
mallox has quit [Quit: WeeChat 2.8]
koozz has joined #nixos
bqv has quit [Ping timeout: 260 seconds]
bkv is now known as bqv
fendor has joined #nixos
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
ddellacosta has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #93920 → python37Packages.nest-asyncio: 1.3.3 -> 1.4.0 → https://git.io/JJRQP
ravndal has quit [Quit: WeeChat 2.9]
<{^_^}> [nixpkgs] @Infinisil merged pull request #88793 → nodePackages.redoc-cli: init at 0.9.8 → https://git.io/JfVeS
<{^_^}> [nixpkgs] @Infinisil pushed 2 commits to master: https://git.io/JJRQ1
dsiypl4_ has quit [Read error: Connection reset by peer]
<{^_^}> [nixpkgs] @Infinisil merged pull request #93813 → Ensure wpa_supplicant.conf is written when userControlled and extraConfig are used → https://git.io/JJBqi
<{^_^}> [nixpkgs] @Infinisil pushed 2 commits to master: https://git.io/JJRQp
<{^_^}> [nixpkgs] @wjlroe opened pull request #93921 → hikari: 2.0.4 -> 2.1.0 → https://git.io/JJR7L
wnklmnn has joined #nixos
Fare has joined #nixos
<{^_^}> [nixpkgs] @TethysSvensson opened pull request #93923 → oci-tools: Adds additional arguments and fixes a bug → https://git.io/JJR7r
<{^_^}> Channel nixos-20.03-small advanced to https://github.com/NixOS/nixpkgs/commit/735df1a6419 (from 2 hours ago, history: https://channels.nix.gsc.io/nixos-20.03-small)
orivej has quit [Quit: No Ping reply in 180 seconds.]
afreak_ has joined #nixos
orivej has joined #nixos
cosimone has joined #nixos
ManiacOfMadness` has joined #nixos
ManiacOfMadness has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #93924 → hy: 0.18.0 -> 0.19.0 → https://git.io/JJR52
orivej has quit [Ping timeout: 246 seconds]
simukis_ has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
orivej has joined #nixos
e has quit [Quit: edk]
simukis_ has joined #nixos
koozz has quit [Ping timeout: 245 seconds]
wolfshappen has quit [Ping timeout: 272 seconds]
pjan has joined #nixos
codygman has quit [Read error: Connection reset by peer]
shapr has joined #nixos
codygman has joined #nixos
codygman has quit [Read error: Connection reset by peer]
codygman has joined #nixos
work_ has quit [Quit: Connection closed for inactivity]
benschza has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
benschza has joined #nixos
orivej has quit [Ping timeout: 265 seconds]
orivej has joined #nixos
radvendii has quit [Quit: ZNC 1.7.5 - https://znc.in]
radvendii has joined #nixos
<{^_^}> [nixpkgs] @rnhmjoj merged pull request #93336 → qutebrowser: re-add option to control the browser backend → https://git.io/JJZBz
<{^_^}> [nixpkgs] @rnhmjoj pushed 2 commits to master: https://git.io/JJRFo
wolfshappen has joined #nixos
<{^_^}> [nixpkgs] @rnhmjoj merged pull request #91288 → Remove old zeromq 3.x packages → https://git.io/JfAM5
<{^_^}> [nixpkgs] @rnhmjoj pushed 6 commits to master: https://git.io/JJRF1
proofofkeags has joined #nixos
kir0ul33 has joined #nixos
cosimone has quit [Remote host closed the connection]
proofofkeags has quit [Remote host closed the connection]
cosimone has joined #nixos
asheshambasta has joined #nixos
<shapr> What are the currently recommended nixos tutorials?
<shapr> I have a 19.09 system I haven't touched in months
waleee-cl has quit [Quit: Connection closed for inactivity]
orivej has quit [Ping timeout: 260 seconds]
orivej_ has joined #nixos
<shapr> If I've installed a package with nix-env -iA, how do I remove that package? nix-env -q shows the package, even after nix-env -e
englishm has quit [Excess Flood]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #93926 → python37Packages.starlette: 0.13.4 -> 0.13.6 → https://git.io/JJRbX
englishm has joined #nixos
afreak_ has quit [Quit: leaving]
kreyren has quit [Remote host closed the connection]
<infinisil> ,fancy-uninstall shapr
<{^_^}> shapr: Fancy way to uninstall packages, needs fzf installed: nix-env -q | fzf | xargs -I{} nix-env -e {}
<shapr> infinisil: thanks!
user_0x58 has quit [Remote host closed the connection]
arjen-jonathan has joined #nixos
<shapr> Ah, I see! "nix-env -iA nixos.traceroute" installed "traceroute-2.1.0" so I can't do "nix-env -e nixos.traceroute"
<shapr> that helped!
kreyren has joined #nixos
user_0x58 has joined #nixos
wolfshappen has quit [Quit: bye]
turlando has quit [Ping timeout: 256 seconds]
<infinisil> :)
nikita` has joined #nixos
<{^_^}> [nixpkgs] @kristoff3r opened pull request #93927 → Pwntools + unicorn update → https://git.io/JJRNC
knupfer has joined #nixos
<omasanori[m]> Hello! I was very impressd by Nix's concepts. so I began to check web sites and repos.
<omasanori[m]> Is it a lack of human resources, limitation of current CI capacity, or else? Is there something a newcomer like me can help with?
<omasanori[m]> What I made anxious a little is, nixpkg's constant > 2k PRs, even though contributors merge dozens of PRs day by day.
o1lo01ol1o has joined #nixos
<simpson> omasanori[m]: I have a graph that I like to use to contextualize this: https://repology.org/graph/map_repo_size_fresh.svg
orivej_ has quit [Ping timeout: 240 seconds]
orivej has joined #nixos
<simpson> nixpkgs has thousands more fresh packages than any other distro, and the next-closest distro is the stable snapshot of nixpkgs. Those thousands of open PRs are *extra* freshness, on top of our already-excellent fresh package count.
ravndal has joined #nixos
<simpson> That said, the main things that could be done are already underway. For example, maintainers could use more powerful tools to test and accept more PRs. CI could lead to merge-on-green for some selected packages. And unused or defunct packages can be removed.
<simpson> If you see a PR that interests you, but it's stale and nothing's happened for a while, test it out and add a comment saying how your test went. End-user feedback is *very* important for knowing whether a PR is good to merge.
<omasanori[m]> OK, now I understand. Thank you for your explanation and letting me know repology.org. I guess it should be useful to determine some aspects of distros' health.
igghibu has joined #nixos
wolfshappen has joined #nixos
sangoma has quit [Ping timeout: 240 seconds]
zupo has joined #nixos
igghibu has quit [Client Quit]
xeijin has joined #nixos
<xeijin> hello - having some trouble mounting disks on startup
<xeijin> it appears the UUIDs for each disk in `hardware-configuration.nix`, generated in the installer using `nixos-install` are not the same as the ones the disks are actually identified by on first boot?
<xeijin> can anyone tell me why this would be?
<srhb> xeijin: Are you sure it's by-uuid paths in hardware-configuration?
wolfshappen has quit [Quit: bye]
orivej has quit [Ping timeout: 240 seconds]
wolfshappen has joined #nixos
<{^_^}> [nixpkgs] @FRidh merged pull request #93890 → python: 3.8.3 -> 3.8.5, 3.9.0a4 -> 3.9.0b5 → https://git.io/JJR2H
<{^_^}> [nixpkgs] @FRidh pushed 3 commits to staging: https://git.io/JJRAS
<xeijin> @srhb yes, but the UUIDs in `/etc/nixos/hardware-configuration.nix` are different to the ones that were generated in `/mnt/etc/nixos/hardware-configuration.nix` when I ran `nixos-install`
<xeijin> If it makes any difference, my root and home partitions are both zfs stores
wolfshappen has quit [Ping timeout: 240 seconds]
<xeijin> though I had no trouble decrypting them
<srhb> xeijin: I'm confused. There should only be one relevant hardware-configuration.nix for your new system, and that's the one in /mnt/etc/nixos
<srhb> xeijin: Which _becomes_ your final /etc/nixos/hardware-configuration.nix file in the booted system
<srhb> xeijin: If those differ, it means you accidentally overwrote one or didn't generate it in the place you thought you did.
<{^_^}> [nixpkgs] @FRidh merged pull request #93876 → python27Packages.crc32c: 2.0 -> 2.0.1 → https://git.io/JJRla
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « python27Packages.crc32c: 2.0 -> 2.0.1 »: https://git.io/JJRxt
<srhb> xeijin: (There's no other nixos component that _writes_ to that file, only nixos-generate-config)
<{^_^}> [nixpkgs] @FRidh merged pull request #92437 → python3Packages.daphne: 2.3.0 -> 2.5.0 → https://git.io/JJIp7
<{^_^}> [nixpkgs] @FRidh pushed commit from @lsix to master « python3Packages.daphne: 2.3.0 -> 2.5.0 »: https://git.io/JJRxY
<{^_^}> [nixpkgs] @markus1189 opened pull request #93928 → ddgr: 1.8.1 -> 1.9 → https://git.io/JJRxs
<{^_^}> [nixpkgs] @FRidh merged pull request #91707 → python-jsonrpc-server: remove ujson version contraint → https://git.io/JJvUI
<{^_^}> [nixpkgs] @FRidh pushed commit from @DavHau to master « remove ujson version contraint from python-jsonrpc-server »: https://git.io/JJRxZ
<{^_^}> [nixpkgs] @FRidh merged pull request #91446 → use latest protobuf (3.12), remove overrides where possible → https://git.io/JfhZW
<{^_^}> [nixpkgs] @FRidh pushed 6 commits to staging: https://git.io/JJRxl
wolfshappen has joined #nixos
<{^_^}> [nixpkgs] @FRidh merged pull request #93916 → pythonPackages.recommonmark: mark broken → https://git.io/JJR9c
<{^_^}> [nixpkgs] @FRidh pushed commit from @DieGoldeneEnte to master « recommonmark: marked broken »: https://git.io/JJRxB
gerschtli has quit [Quit: WeeChat 2.7.1]
<{^_^}> [nixpkgs] @FRidh merged pull request #93886 → cmake: 3.17.3 -> 3.18.0 → https://git.io/JJRE2
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-burns to staging « cmake: 3.17.3 -> 3.18.0 »: https://git.io/JJRx0
asheshambasta has quit [Ping timeout: 272 seconds]
gerschtli has joined #nixos
<xeijin> srhb yeah that's what I dont understand, I used `nixos-generate-config --root /mnt`
<xeijin> `/etc/fstab` also has the correct (i.e. from installer) IDs
<srhb> xeijin: I can't guess what happened, unless /mnt/etc was a different mount or something
<srhb> xeijin: Either way, you can regenerate it.
<{^_^}> [nixpkgs] @FRidh merged pull request #92608 → python3Packages.pybind11: 2.4.3 -> 2.5.0 → https://git.io/JJtrJ
<{^_^}> [nixpkgs] @FRidh pushed commit from @jonringer to staging « python3Packages.pybind11: 2.4.3 -> 2.5.0 »: https://git.io/JJRxa
<{^_^}> [nixpkgs] @FRidh merged pull request #93911 → libuv: disable flaky test "udp_multicast_join" on darwin → https://git.io/JJRyA
<{^_^}> [nixpkgs] @FRidh pushed commit from @thefloweringash to staging « libuv: disable flaky test "udp_multicast_join" on darwin »: https://git.io/JJRx6
<xeijin> srhb without re-installing? How do I do that?
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<xeijin> `nixos-generate-config --root /etc/nixos`?
<{^_^}> [nixpkgs] @FRidh merged pull request #93900 → tiledb: disabled (sometimes) failing tests → https://git.io/JJRX0
<{^_^}> [nixpkgs] @FRidh pushed commit from @DieGoldeneEnte to master « tiledb: disabled (sometimes) failing tests »: https://git.io/JJRxX
growpotkin has joined #nixos
<srhb> xeijin: Set up the mounts by hand as you want them, run nixos-generate-config (without --root, which implies --root /)
<xeijin> ah ok
<xeijin> great, thank you
<srhb> iirc it will overwrite hardware-config but not touch an existing configuration.nix by default
<srhb> Which is as you want.
bkv has joined #nixos
bqv has quit [Ping timeout: 272 seconds]
bkv is now known as bqv
cole-h has joined #nixos
<{^_^}> [nixpkgs] @lourkeur opened pull request #93929 → minecraft: 2.1.15852 -> 2.1.16102 → https://git.io/JJRpL
Mateon2 has joined #nixos
Mateon1 has quit [Ping timeout: 240 seconds]
Mateon2 is now known as Mateon1
asymptotically has quit [Remote host closed the connection]
asymptotically has joined #nixos
noudle has joined #nixos
arjen-jonathan has quit [Ping timeout: 244 seconds]
proofofkeags has joined #nixos
justanotheruser has joined #nixos
noudle has quit []
proofofkeags has quit [Ping timeout: 260 seconds]
drakonis has joined #nixos
Fare has quit [Ping timeout: 260 seconds]
malook has joined #nixos
<{^_^}> [nixpkgs] @zaninime opened pull request #93930 → obsidian: 0.7.3 -> 0.8.0 → https://git.io/JJRhm
proofofkeags has joined #nixos
<shapr> How do I discover the new name of i18n.consoleFont ? It was i18n.consoleFont in nixOS 19, but what it is now in nixOS 20?
zupo has joined #nixos
<shapr> Is there a tree of attributes I can explore?
<infinisil> > nixos.config.i18n.consoleFont
<{^_^}> "Lat2-Terminus16"
<infinisil> Oh it doesn't show warnings here
<infinisil> But it would be "trace: Obsolete option `i18n.consoleFont' is used. It was renamed to `console.font'."
proofofkeags has quit [Ping timeout: 246 seconds]
<{^_^}> [nixpkgs] @danieldk merged pull request #93896 → rocm-opencl-runtime: use unaltered stdenv → https://git.io/JJR6u
<{^_^}> [nixpkgs] @danieldk pushed 2 commits to master: https://git.io/JJRjI
<{^_^}> [nixpkgs] @buffet opened pull request #93931 → kak-prelude: init at 2020-03-15 → https://git.io/JJRjB
<{^_^}> [nixpkgs] @r-ryantm opened pull request #93932 → qmmp: 1.4.0 -> 1.4.1 → https://git.io/JJRj0
D_ has quit [Ping timeout: 244 seconds]
Fare has joined #nixos
<{^_^}> [nixpkgs] @buffet opened pull request #93933 → Kak auto pairs update → https://git.io/JJRjV
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/e79b1e6a9a2 (from 69 minutes ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
D_ has joined #nixos
quinn has joined #nixos
Desetude has quit [Quit: WeeChat 2.7.1]
philr_ has quit [Ping timeout: 260 seconds]
Fare has quit [Ping timeout: 260 seconds]
knerten has joined #nixos
<numkem> does anyone uses nixos-unstable-small channel for something other than a server?
<{^_^}> [nixpkgs] @wamserma closed pull request #88174 → rpiboot-unstable: 2018-03-27 -> 2020-02-17 → https://git.io/JfzUV
<superbaloo> numkem: what's -small exactly?
<MichaelRaskin> A channel which moves forward with less conditions on succesful builds
<numkem> superbaloo: my understanding is there is less binary packages in it
knerten1 has quit [Ping timeout: 256 seconds]
<numkem> MichaelRaskin: does it have the same amount of binary packages?
<MichaelRaskin> Eventually yes, I think
<MichaelRaskin> Unless something is broken!
<numkem> MichaelRaskin: do you use it?
<MichaelRaskin> I update from master
<numkem> MichaelRaskin: not from a channel then
<MichaelRaskin> No channel
waleee-cl has joined #nixos
orivej has joined #nixos
alp_ has joined #nixos
cosimone has quit [Quit: Quit.]
<{^_^}> Channel nixpkgs-20.03-darwin advanced to https://github.com/NixOS/nixpkgs/commit/735df1a6419 (from 6 hours ago, history: https://channels.nix.gsc.io/nixpkgs-20.03-darwin)
zangi has joined #nixos
arjen-jonathan has joined #nixos
<{^_^}> [nixpkgs] @danieldk merged pull request #92832 → cm-rgb: init at 0.3.4 → https://git.io/JJmyZ
<{^_^}> [nixpkgs] @danieldk pushed 2 commits to master: https://git.io/JJ0e2
abathur has quit [Ping timeout: 265 seconds]
abathur has joined #nixos
<ornxka> dear #nixos this is your daily reminder to clean out your /nix/var/nix/gcroots/auto folder, it is probably full of junk preventing gigabytes of store paths from being properly garbage collected
<hexa-> awesome, I can save 96K
<ornxka> thirty years ago you would be thrilled to have saved that much space!
<hexa-> indeed
<zangi> why does nixos use `users` with gid `100` instead of `1000`?
<ornxka> arent we all daemons in a sense
shibboleth has quit [Quit: shibboleth]
reanimus has joined #nixos
doyougnu has quit [Quit: ERC (IRC client for Emacs 26.3)]
<shapr> ornxka: how do I clean my gcroots?
<hexa-> zangi: so does debian
<hexa-> I don't have any other machines I can quickly check, but feels standard
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
orivej has quit [Ping timeout: 260 seconds]
orivej has joined #nixos
<zangi> no, debian and other major distros use alice:1000 for first user, bob:1001 for second user, john:1002 for the third user
reanimus has quit [Quit: Logging off...]
<zangi> on nixos though, it's alice:100, 100 is `users`
<zangi> so normally, it's 1000:1000, 1001:1001, 1002:1002, 1003:1003, while nixos: 1000:100, 1001:100, 1002:100
andreas303 has quit [Ping timeout: 240 seconds]
sangoma has joined #nixos
<zangi> I've noticed that crux distro uses this as well (100?:100)
knupfer has quit [Ping timeout: 246 seconds]
<hexa-> zangi: there are those distros that put all users in the same group and those that create per user groups
<hexa-> neither is uncommon
<zangi> oh okay, didn't know about that
<zangi> is there a documentation about this?
<hexa-> not sure
<hexa-> but remember that groups are about sharing permissions
reanimus has joined #nixos
<hexa-> so the users group is a sensible thing in that people can share files in a group by assigning group permission
andreas303 has joined #nixos
noudle has joined #nixos
orivej_ has joined #nixos
<shapr> After upgrading to nixOS 20 from nixOS 19, I now have two sound cards, and the default is my nvidia HDMI port. Is there a way I can set the other sound card to be default?
orivej has quit [Ping timeout: 246 seconds]
zupo has joined #nixos
Fare has joined #nixos
<buffet> does nix-shell use <nixpkgs>?
<buffet> sure seems like it, interesting
wnklmnn has quit [Ping timeout: 256 seconds]
noudle has quit []
<DigitalKiwi> you can use -I to change it
Fare has quit [Ping timeout: 246 seconds]
knupfer has joined #nixos
malook has quit [Ping timeout: 240 seconds]
<M0-[m]> is there any way to replace a single member of a list with nix? I'm trying to override a package attr but the attr is a list that includes the package which I want to replace
orivej_ has quit [Quit: No Ping reply in 180 seconds.]
orivej has joined #nixos
<ornxka> shapr: you just look in /nix/var/nix/gcroots/auto and it will have a bunch of symlinks to stuff in your filesystem (typically a bunch of symlinks called "result" that point to store paths, which are the result of running nix-build), you see which ones you want to keep and then you simply delete the ones you dont
<{^_^}> [nixpkgs] @worldofpeace pushed 4 commits to master: https://git.io/JJ0Je
<ornxka> then you do a garbage collect and the nix store paths those symlinks you deleted pointed to will be garbage collected
<pinkieval> ornxka: you can use builtins.filter
<pinkieval> sorry, I mean M0-[m]
alp_ has quit [Ping timeout: 260 seconds]
justan0theruser has joined #nixos
<{^_^}> [nixpkgs] @symphorien opened pull request #93935 → ihatemoney: fix CVE-2020-15120 → https://git.io/JJ0JU
wnklmnn has joined #nixos
justanotheruser has quit [Ping timeout: 246 seconds]
orivej has quit [Quit: No Ping reply in 180 seconds.]
orivej has joined #nixos
magthe has joined #nixos
<shapr> Any advice on changing the mouse cursor size? I have a 4k 15.5" screen and it's difficult to find the mouse in many cases.
<{^_^}> [nixpkgs] @r-ryantm opened pull request #93936 → python27Packages.yamllint: 1.23.0 -> 1.24.2 → https://git.io/JJ0Jn
codygman has quit [Read error: Connection reset by peer]
codygman has joined #nixos
<energizer> shapr: if you find the answer i'm interested
LouisDK has joined #nixos
cjpbirkbeck has joined #nixos
<shapr> energizer: I'm gonna give it a 50% chance I can figure it out, only that high because I've been configuring X11 since 1999
<energizer> nice
<DigitalKiwi> kde has settings for these things
<shapr> Anyone know how to tell mpd to use a particular audio device? Right now I can play notification sounds from pavucontrol, but mpd won't talk to my sound device.
<{^_^}> [nixpkgs] @dywedir merged pull request #90424 → drat-trim: 2017-08-31 -> 2020-06-05 → https://git.io/Jf7tl
<{^_^}> [nixpkgs] @dywedir pushed 2 commits to master: https://git.io/JJ0JX
<DigitalKiwi> which might not actually mention cursors heh
fendor has quit [Remote host closed the connection]
<MichaelRaskin> shapr: maybe try to look up xsetroot docs
<shapr> good idea
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<DigitalKiwi> shapr: audio_output { device "hw:2,0" }
zupo has joined #nixos
<DigitalKiwi> you might want mixer_type "software" in there
<DigitalKiwi> and hw:2,0 could be 0,0 for all i know ;p
<shapr> DigitalKiwi: put that into extraConfig for mpd?
<DigitalKiwi> that might be right yeah
* DigitalKiwi doesn't configure mpd with nix
<DigitalKiwi> am bad kiwi :(
<eyJhb> Trying to rebuild on a RPi, but for some reason it uses `tmpfs 91M 12K 91M 1% /run/user/0` for building, whereas I would like it to use /tmp.
<eyJhb> How can this be done?
orivej has quit [Quit: No Ping reply in 180 seconds.]
Izorkin has quit [Quit: ZNC 1.8.1 - https://znc.in]
<demize> DigitalKiwi: *gasp*!
Izorkin has joined #nixos
Izorkin has quit [Remote host closed the connection]
orivej has joined #nixos
<MichaelRaskin> eyJhb: is $TMP or $TMPDIR set for nix-daemon, I wonder
Izorkin has joined #nixos
cole-h has quit [Quit: Goodbye]
<eyJhb> MichaelRaskin: Clean install, so it should be default everything
zebrag has quit [Read error: Connection reset by peer]
<eyJhb> Good place to set it?
<MichaelRaskin> I would expect that unset goes to /tmp!
zebrag has joined #nixos
<MichaelRaskin> Maybe you used an RPi profile that overrides
<eyJhb> Using no profiles, only a default config
<eyJhb> Also, I think the same goes for a normal NixOS system, that it will use /run/user
<MichaelRaskin> How long I have not used NixOS!
<eyJhb> :D
<eyJhb> I can't find anything in the dock
<eyJhb> doc**
<eyJhb> I think it is basically this `boot.runSize` and then it uses the run dir
<LouisDK> I'm about to make a new package for NixOS, however the make-command and I want to enter the proper /nix/store-location to view the build-files - however the build directory are removed after build fails. Can I preserve it in some way?
noudle has joined #nixos
malook has joined #nixos
fendor has joined #nixos
dongcarl has joined #nixos
<eyJhb> MichaelRaskin: nix-shell -p xxx sets TMPDIR to /run/user/x...
zangi has quit [Ping timeout: 246 seconds]
<pie_> ,locate gdk_pixbuf-2.0.so
<{^_^}> Couldn't find in any packages
orivej has quit [Quit: No Ping reply in 180 seconds.]
davidv7 has quit [Ping timeout: 264 seconds]
orivej has joined #nixos
<Ke> protip, use btrfs for /nix and reinstall on every release and never collect cruft
<hexa-> btrfs for /nix with zstd compression <3
<Ke> since reinstall is basically free anyway, there is no real effort there
<hexa-> there is some state you really want to keep
tst60 has joined #nixos
<Ke> I did this even on debian, where reinstall has slight cost
o1lo01ol1o has quit [Remote host closed the connection]
magthe has quit [Quit: WeeChat 2.9]
<energizer> Ke: isn't `nix-collect-garbage -d` sufficient to avoid collecting cruft in /nix?
orivej has quit [Quit: No Ping reply in 180 seconds.]
<LouisDK> I'm building a new package for nix, but the build fails and the /nix/store/..pkg.. is not preserved afterwards sp I can expect the builddir and debug. Any better way of debug than putting things like ls etc. inside default.nix to debug?
tst60 has left #nixos [#nixos]
orivej has joined #nixos
ninjin has quit [Remote host closed the connection]
archH has joined #nixos
ninjin has joined #nixos
<archH> Hi, I got terrible performance in the first game I installed: https://www.protondb.com/app/367500
<{^_^}> [nixpkgs] @prusnak opened pull request #93937 → gnupg22: fix reproducibility issue by applying a debian patch → https://git.io/JJ0TG
<archH> As a fix I tried to specify display driver, but now steam wont work videoDrivers = [ "modesetting" "nvidia" ]; https://pastebin.com/AbQyjWR7
<MichaelRaskin> LouisDK: -K
<archH> Anyone that has experience with getting good game performance in nixos with nvidia?
lourkeur has joined #nixos
<{^_^}> [nixpkgs] @FRidh pushed to master « python.pkgs.recommonmark: fix eval »: https://git.io/JJ0TB
<ivan> archh: you definitely don't want modesetting on recent nvidia
maier has joined #nixos
karetsu has joined #nixos
rjmill has joined #nixos
<archH> ivan: Thanks il try without
lourkeur has quit [Client Quit]
<ivan> if you really want to play windows games while using nixos as your host operating system, vfio is a way
<LouisDK> @MichaelRaskin What cmd should I pass "-K" unto?
AndroUser2 has joined #nixos
<ivan> but still a major headache compared to a windows computer
<karetsu> how long does it take for github nixpkgs to become the unstable pkg list typically?
<xacktm> ivan: the nvidia 450 has issues with modesetting?
<xacktm> I've used modesetting forever, thought that was recommended
<MichaelRaskin> LouisDK: to nix-build, I guess
<ivan> xacktm: does webgl and stuff work with modesetting?
<shapr> How do I get the current contents of mpd.conf ?
<MichaelRaskin> xacktm: the «good game performance» context is special
<xacktm> ivan: not sure about webgl
<MichaelRaskin> nouveau/modesetting is good for everything but top performance
dermetfan has joined #nixos
<MichaelRaskin> Well, and CUDA
<hexa-> karetsu: https://status.nixos.org/
<hexa-> karetsu: the general answer is: it depends.
<hexa-> generally on a set of tests succeeding
<karetsu> s
<karetsu> sorry, ty*
<xacktm> MichaelRaskin: fair enough
<archH> Doubt removing modesetting will fix my issue though. When I don't specify nvidia as video driver I get 11 fps in a game where I would get 150 fps on windows and that is probably capped. But with it I get Assertion Failed: Fatal Error: OpenGL GLX extension not supported by display
<rjmill> does "nix repl" heed any user config files? I tried inputrc and editrc, and neither seemed to work. (specifically looking for vi keybindings in the repl. If I can get that, I'm happy)
<karetsu> I'm getting a 'discord-haskell-1.6.0 in /nix/store/.../hackage-packages.nix' is marked broken, but on github the file says 1.6.1 and I have no 1.6.0 marked *anywhere* - can't seem to get it to update
<ivan> rjmill: rlwrap nix repl?
knupfer has quit [Ping timeout: 244 seconds]
arjen-jonathan has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #93938 → python27Packages.stripe: 2.48.0 -> 2.49.0 → https://git.io/JJ0T1
<{^_^}> [nixpkgs] @symphorien opened pull request #93939 → python3Packages.ihatemoney: fix CVE-2020-15120 → https://git.io/JJ0TM
LouisDK has quit [Remote host closed the connection]
<rjmill> ivan: That doesn't seem to work. I tried `nix-shell -p rlwrap` and then `rlwrap nix repl`, and nothing changed.
karetsu has quit [Ping timeout: 246 seconds]
pbb has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
karetsu has joined #nixos
nature has quit [Ping timeout: 244 seconds]
pbb has joined #nixos
<{^_^}> [nixpkgs] @FRidh merged pull request #93795 → kapacitor: 1.5.5 -> 1.5.6 → https://git.io/JJ45g
<{^_^}> [nixpkgs] @FRidh pushed commit from @r-ryantm to master « kapacitor: 1.5.5 -> 1.5.6 »: https://git.io/JJ0Tp
malook has quit [Quit: malook]
<shapr> Does the order of my config matter? I have mpd starting before jack, and mpd refuses to start.
<rjmill> The source code for "nix repl" has an "#ifdef READLINE" block, so I'm guessing it's possible to build it with readline instead of editline? https://git.io/JJ0ke
<rjmill> I'm not sure how I'd go about accomplishing that though.
<karetsu> hexa-: so why would my nix store be using a version of a file in /nix/store/*nixos-20.09pre*/nixos/pkgs/development/haskell-modules/hackage-packages which is older than the one on github when I have not long run (20 minutes ago) a `nixos-rebuild switch --upgrade`?
<shapr> Is there some way to see the logs from mpd when it fails to start? I don't see anything useful from "journalctl -xe"
<DigitalKiwi> shapr: maybe; systemctl status mpd
<DigitalKiwi> it should at least give you a line you can run manually
<hexa-> karetsu: on github is a vage statement
<hexa-> if you mean nixos/nixpkgs master, that is because you're probably living on a channel
<karetsu> I'm living on nixos-unstable
<hexa-> a channel only gets published when a certain set of packages build and their tests succeeed
<hexa-> that is a channel
maier has quit [Ping timeout: 265 seconds]
<karetsu> which that link you gave said was published 4 hours ago>?
<hexa-> 10 hours ago
Nerdmaxx has joined #nixos
bpye has joined #nixos
<karetsu> sorry yes, that's still 9 hours before my upgrade and I still have the the file which doesn't match the one on github
<karetsu> i.e. older
<srhb> karetsu: nixos-unstable has not updated in more than five days.
<DigitalKiwi> if you really want you can use nixos-rebuild <whatever> -I nixpkgs=https://github.org/NixOS/nixpkgs/archive/master.tar.gz
<bpye> Hey, I’m trying to setup cups for network printing however nixos seems to be making this hard
<hexa-> oh, so status.nixos.org is being silly again :<
<karetsu> srhb: https://status.nixos.org/ am I reading this wrong?
<srhb> karetsu: You may be looking at nixpkgs-unstable
<srhb> karetsu: Not nixos-unstable.
<bpye> I want to override extraConf because the default is restricting access, do I need to override the default value?
<hexa-> oh, misread as well
<karetsu> ah yes, I am
<karetsu> lol
<karetsu> my b
<srhb> karetsu: It'll updated once the remaining blockers pass testing, as hexa explained. :)
<DigitalKiwi> to answer your earlier question: sometimes a few days sometimes a week or more
archH has quit [Ping timeout: 265 seconds]
<hexa-> oh, that was that macvlan thingy
<srhb> Yes, but that's been fixed.
<karetsu> ty, just it seems it broke my nix-shelling and I really don't want to go throwing allowBrokens around
cosimone has joined #nixos
<srhb> Now there's a new blocker.
<hexa-> yup, I merged that
orivej has quit [Ping timeout: 256 seconds]
<hexa-> ah lovely
<srhb> Ah, good :)
orivej has joined #nixos
<srhb> karetsu: Usually things are indeed marked broken for a reason and just unmaking them will not improve the situation anyway.
<srhb> karetsu: Especially haskell packages are usually marked broken because their builds fail automatic testing, so all you'll get is a still-broken build, but you'll spend more time getting there. :)
<karetsu> yeah, I just seem to have fallen into a middle ground with nixpkgs-unstable vs nixos-unstable and made a mess somewhere
<eyJhb> Ohh srhb , you came as called! - Does MOPRH support deploying from a x64 host to aarch64 ?
<hexa-> eyJhb: it does
<srhb> eyJhb: morph doesn't care about those details much. :)
<eyJhb> hexa-: anything I need to know ?
<srhb> Anymoo, off to bed. o/
<hexa-> \o
<eyJhb> Does it build locally or on the target?
<eyJhb> Night srhb :)
<hexa-> locally or remote-builder
<hexa-> the target only gets the results
<rjmill> ivan: `rlwrap -a nix repl` does the trick though. Thanks a bunch for the suggestion!!
<eyJhb> What do I need to setup, for this to work?
<eyJhb> Building on my machine, and then pushing to the target?
<ivan> rjmill: cool
<hexa-> eyJhb: basically you have to inherit the correct system for your packages
<hexa-> eyJhb: yup
<hexa-> just have ssh working
<eyJhb> inherit the correct system for your packages?
nikita` has quit [Quit: leaving]
<hexa-> yeah, like import packages with system set to aarch64-linux
<eyJhb> So, if I just set morph up, then it should build on my own machine and push the result to the RPi?
<hexa-> hm, I don't think I have cross compilation working with morph
<eyJhb> Any public config?
<hexa-> I did build in qemu for a while, now on an rpi4
<eyJhb> Because it sounds like I need to change something here - https://github.com/DBCDK/morph/blob/master/examples/simple.nix#L14 to be like, pkgs.currentSystem, something to aarch64
<Ke> energizer: in the past we have seen pretty mangled sqlite databases, in general I like to be sure
<Ke> I plan to also roll out the tmpfs rootfs solution to only have well documented persistent state
<energizer> is there a way to rebuild the database directly from the store?
<eyJhb> hexa-: lets see, I have never used anything like MORPH before, but want to use it where I can
<eyJhb> Wonder if I can use it to build my local machine as well :p
<Ke> unlike the tutorial, also put the persistent state in a separate volume so you really can reinstall that nixos on the side and just reboot to a new system like nothing changed
<eyJhb> Ke: I would suggest gchristensen version, with rollback of ZFS. tmpfs can really take some memory if some program writes to a place you did not intend
<Ke> shapr: I normally follow systemctl show mpd.service | grep Exec to find the configs
<Ke> or something similar
<shapr> I found the configs, but I still can't get mpd to talk to pulse or also, not sure why.
o1lo01ol1o has joined #nixos
alp_ has joined #nixos
orivej has quit [Ping timeout: 264 seconds]
orivej_ has joined #nixos
smatting_ has joined #nixos
<Ke> shapr: journalctl -u mpd.service
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<eyJhb> lovesegfault: ping, are there some files missing from your nix-config?
<Ke> and then scroll to end or similar
meh` has joined #nixos
<Ke> maybe option like -b
<Ke> shapr: if you think nixos dependency ordering is wrong, you can try that by creating a systemd service that goes after jack and before mpd
<Ke> this allows you to not fix nixos and solve the issue for yourself once and for all, maybe make a pull request, if you are not lazy
<shapr> oh, -u helps
<Ke> https://nixos.org/nixos/options.html#systemd.services has direct options for before and after
cosimone has quit [Quit: Quit.]
cosimone has joined #nixos
codygman has quit [Read error: Connection reset by peer]
codygman has joined #nixos
leira has joined #nixos
<leira> Trying to define a systemd user service for [neuron](https://neuron.zettel.page/). Normally, in ExecStart, we refer to a command using `${pkgs.openssh}/bin/ssh-agent`, But in this case, neuron is a custom package I defined in `packages` field. How do I refer to it?
<leira> I tried ${pkgs.neuron}, but it refers to a different neuron package
<lovesegfault> eyJhb: Hi
<lovesegfault> No, nothing missing
<lovesegfault> Why?
asymptotically has quit [Quit: Leaving]
<leira> I defined neuron in systemPackages:
<leira> ```
<leira> ``` (let neuronRev = "0.6.0.0"; neuronSrc = builtins.fetchTarball "https://github.com/srid/neuron/archive/${neuronRev}.tar.gz"; in import neuronSrc {}) ```
<leira> Hi srid, you are here!
<lassulus> Leira: you can either define the packge in an overlay/packageOverride or reference the file with /run/current-system/sw/bin/neuron in ExecStart
<srid> Basically you pass that custom package directly.
<leira> srid, I used that and it worked
codygman has quit [Ping timeout: 240 seconds]
<srid> Yea I get notified when somebody writes `srid`
<leira> But I did defined it in home.packages too.
<{^_^}> [nixpkgs] @ggreif opened pull request #93940 → [20.03] ghc: add new version 8.8.4 → https://git.io/JJ0IB
codygman has joined #nixos
<leira> So I have this neuronSrc section defined twice in both home.packages and user service sections.
<{^_^}> [nixpkgs] @marsam merged pull request #93889 → python38Packages.pandas: fix build on darwin → https://git.io/JJR2f
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JJ0IR
<leira> I wonder, if there is any way to eliminate the duplications~
<eyJhb> lovesegfault: https://github.com/lovesegfault/nix-config/tree/master/nix just feels like there are a lot of references to nix/nixos.nix and nix/nixpkgs.nix
<eyJhb> And I can't find that
<srid> Pass it as variable.
<leira> srid, so I wonder if I can defined in home.packages once, and refer it in some way in systemd service
<srid> Leira: show us your nix config
<eyJhb> But that might be old. Also, no aarch64 devices anymore?
<lovesegfault> eyJhb: I still have aarch64 devices
<lovesegfault> plenty of them
<lovesegfault> also, where are the references to nix/nixpkgs.nix?
<{^_^}> [nixpkgs] @marsam merged pull request #92691 → kustomize: 3.3.1 -> 3.8.0 → https://git.io/JJq3k
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JJ0I2
<eyJhb> Was in a older tree I see. Trying to use MORPH to deploy to my RPi, which should be somewhat similar to the deploy tool you use
<{^_^}> [nixpkgs] @marsam merged pull request #93938 → python27Packages.stripe: 2.48.0 -> 2.49.0 → https://git.io/JJ0T1
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/JJ0Iw
<slabity> Anyone else having issues with Steam running into SSL errors when trying to connect to anything?
<leira> srid, I pasted the relavent part here https://pastebin.com/mKzsHDR8
<lovesegfault> eyJhb: Yeah, I used to use morph
<eyJhb> My the switch to nixus?
<srid> Leira: put `import neuronSrc {}` in a let binding and reference it in the two places ... see https://nixos.wiki/wiki/Nix_Expression_Language#let_..._in_statement
<eyJhb> Why the **
<eyJhb> I should go to bed
ixxie has quit [Ping timeout: 265 seconds]
<leira> Are you suggeting something like this? https://pastebin.com/7pBC0B9A
codygman has quit [Read error: Connection reset by peer]
<srid> Leira: basically move the `let` binding to global scope
codygman has joined #nixos
<leira> srid: Are you suggeting something like this? https://pastebin.com/7pBC0B9A
<srid> yup
karetsu has quit [Ping timeout: 256 seconds]
<leira> Thanks! And BTW, I enjoyed neuron a lot!
<srid> great 🙂 spread the word!
<lovesegfault> eyJhb: I liked it's way of doing deployments better
<lovesegfault> no cli tool, just nix-build
<leira> 👍
c0c0 has joined #nixos
karetsu has joined #nixos
<c0c0> i'm trying to install nixos with UEFI boot. when i try "sudo nixos-install", it says: "You must set the option 'boot.loader.grub.devices' or 'boot.loader.grub.mirroredBoots' to make the system bootable." It looks like it assumes I want to boot in BIOS mode. How can I fix this?
<colemickens> c0c0: do you have a uefi bootloader enabled?
Leira[m] has joined #nixos
<colemickens> does it stop complaining if you enable systemd-boot?
<c0c0> I've set 'boot.loader.systemd-boot.enable = true;'
orivej_ has quit [Quit: No Ping reply in 180 seconds.]
codygman has quit [Read error: Connection reset by peer]
<c0c0> How do I enable a UEFI bootloader?
codygman has joined #nixos
pjt_014 has joined #nixos
<c0c0> Should I set 'boot.loader.grub.device = nodev;'?
<c0c0> That makes it stop complaining...
orivej has joined #nixos
<colemickens> sounds like you're not actually booted in efi mode potentially
fendor has quit [Read error: Connection reset by peer]
<c0c0> Yeah. How's that, how can I make it boot in UEFI mode?
<c0c0> efi mode
<c0c0> Or rather: How can I verify what mode it boots in? I'm not familiar with BIOS vs EFI and have no preference if either is possible
sangoma has quit [Quit: WeeChat 2.9]
<colemickens> that thread contains that info
<c0c0> I see, thanks!
<shapr> does byobu work for anyone in nixos?
<colemickens> tl;dr check if /sys/firmware/efi exists :)
<colemickens> c0c0: ^
<c0c0> I see; it doesn't
<c0c0> Looks like I should follow the installation guide for BIOS booting
<c0c0> Or read the thread :-)
<colemickens> idk, people dislike efi but I have preferred building out new systems with gpt+efi+esp for many years. I don't miss grub+bios boot much.
leira has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @Ma27 merged pull request #93737 → i3lock-color: 2.12.c.4 -> 2.12.c.5 → https://git.io/JJ8S1
<{^_^}> [nixpkgs] @Ma27 pushed 2 commits to master: https://git.io/JJ0Lm
orivej has quit [Ping timeout: 256 seconds]
orivej has joined #nixos
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/ba163623ec4 (from 76 minutes ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
Nerdmaxx has quit [Quit: Leaving]
cyraxjoe has quit [Quit: I'm out!]
<lovesegfault> Alright, multi-monitor crew, is there any way to get early-boot stuff (like unlocking ZFS) to show on all my monitors?
c0c0 has quit [Quit: WeeChat 2.7]
<lovesegfault> The systemd-boot menu shows up on all of them, but then when I get to stage-1 only my laptop's monitor is active
<{^_^}> [nixpkgs] @mweinelt merged pull request #93939 → python3Packages.ihatemoney: fix CVE-2020-15120 → https://git.io/JJ0TM
<{^_^}> [nixpkgs] @mweinelt pushed 2 commits to master: https://git.io/JJ0Lo
cyraxjoe has joined #nixos
Kritnich has quit [Quit: Bye bye.]
Kritnich has joined #nixos
<eyJhb> lovesegfault: want to know the same actually
<colemickens> weird, mine just does
<colemickens> it takes a second or two
<eyJhb> colemickens: what do you use to connect it?
<eyJhb> Normally VGA will do that
AstroBadger_ is now known as AstroBadger
<lovesegfault> I'm using DP
<colemickens> xps 13 9370 -> cheapo usbc->4k-dp-> ultrawide
<lovesegfault> I suspect I might have to tell fbcon to prefer amdgpu over i915 but I'm not sure what the dealio is
<colemickens> I have i915 is my initd.availableKernelModules...
<eyJhb> Damn
<colemickens> idk if that helps ^
<lovesegfault> Right, I have both i915 and amdgpu
<colemickens> And I have ... "i915.modeset=1" in kernelParams?
<lovesegfault> I think it works for you, colemickens, b/c you have it all on one gpu
<colemickens> here, I'll just link you my config, you can guess as well as I can :P
<colemickens> oh yeah, that makes sense
<colemickens> I'm scared to own a multigpu machine.
<lovesegfault> My laptop's screen and my monitors are on separate GPUs
<eyJhb> lovesegfault: I only have my intel HD Graphics?
<colemickens> lovesegfault: RIP.
<lovesegfault> colemickens: I got a Razer Core X and put an AMD card in it :D
<eyJhb> And that is still only internal
<eyJhb> However, I have not added i915
<colemickens> lovesegfault: oh dang, I'd love to hear what you think of that after some time
<{^_^}> [nixpkgs] @mweinelt merged pull request #93935 → [20.03] ihatemoney: fix CVE-2020-15120 → https://git.io/JJ0JU
<colemickens> especially if you're still rocking sway daily
<{^_^}> [nixpkgs] @mweinelt pushed 3 commits to release-20.03: https://git.io/JJ0LD
<lovesegfault> colemickens: I am
<lovesegfault> I just set it up today and it was... totally painless?
<lovesegfault> I had to use kernel 5.7, but once I did it just worked
<lovesegfault> really no issues at all
<eyJhb> What will you use it for?
<lovesegfault> To run my monitors
<lovesegfault> my laptop (company provided) has it's outputs wired to a novidio gpu
<lovesegfault> so if I wanted to use that it means I need to go back to X11
<lovesegfault> I refuse to go back in time, so I set up the AMD card instead
* colemickens reminds self that this basically means intel cpu for now though
siel has quit [Ping timeout: 240 seconds]
<lovesegfault> boot.kernelParams = [ "fbcon=map:1" ];
xkapastel has quit [Quit: Connection closed for inactivity]
<lovesegfault> I think this is what I need
* lovesegfault tries
<lovesegfault> brb
<lovesegfault> It works!!
<lovesegfault> You can find the correct mapping number with cat /proc/fb
<eyJhb> I however have this problem with xrandr, where I need to run this command `xrandr --output LVDS1 --rotation normal --reflection normal` (the reflection part), before I can run any other command with xrandr. And if my laptop is closed, it will simply not work, and force me to run it in my DP2 display...
<eyJhb> Any ideas?
<lovesegfault> move to wayland :P
<eyJhb> But you see
<eyJhb> DisplayLink
<eyJhb> :P
<lovesegfault> Yuck
<colemickens> ?
<{^_^}> swaywm/wlroots#1823 (by Algram, 45 weeks ago, open): Displaylink support
<lovesegfault> IME sway does not work with displaylink
<eyJhb> Last time I tried, it did not work at least
<lovesegfault> but, to be fair, displaylink is cancer so it's not a surprise
moet has joined #nixos
<eyJhb> Also, 50/50 when I boot my PC picom will fail as well
<colemickens> yeah, looks like I jumped the gun. That stinks
<eyJhb> lovesegfault: cancer is mild.
<eyJhb> It is worse
<{^_^}> [nixpkgs] @leenaars opened pull request #93941 → datefudge: 1.23 -> 1.24 → https://git.io/JJ0LA
<eyJhb> Trying to import the x230 profile from hardware-config
<{^_^}> [nixpkgs] @mweinelt merged pull request #93915 → python-rtmidi: add alsaLib and libjack2 deps → https://git.io/JJR9e
<{^_^}> [nixpkgs] @mweinelt pushed 2 commits to master: https://git.io/JJ0Lx
rjmill has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @mmahut merged pull request #93807 → metabase: 0.35.4 -> 0.36.0 → https://git.io/JJBTA
<{^_^}> [nixpkgs] @mmahut pushed 2 commits to master: https://git.io/JJ0tT
<eyJhb> Lets see after that profile, if everything no longer works
Kritnich has quit [Quit: Bye bye.]
Kritnich has joined #nixos
kir0ul33 has quit [Ping timeout: 260 seconds]
__monty__ has quit [Quit: leaving]
<{^_^}> [nixpkgs] @Ma27 merged pull request #93761 → audacity: 2.4.1 -> 2.4.2 → https://git.io/JJ4L4
<{^_^}> [nixpkgs] @Ma27 pushed 2 commits to master: https://git.io/JJ0tR
nij has joined #nixos
<eyJhb> Soo, noting really works now
<eyJhb> What the hell does that profile do?
<eyJhb> It freezes while loading the driver colemickens
<eyJhb> i915
<colemickens> :( weird
* colemickens can't wait to have an amd cpu/apu
<eyJhb> Litterally get "loading module i915..." and then stuck until I take my laptop out of the dock, and insert it again
kir0ul26 has joined #nixos
<lovesegfault> colemickens: Oh, speaking of, that fanless PC turned out great
<lovesegfault> the 3700X slaps
meh` has quit [Ping timeout: 240 seconds]
orivej has quit [Ping timeout: 240 seconds]
orivej has joined #nixos
<lovesegfault> adisbladis: this reminds me, the Raals have broken in and are, hands down, the best thing I've ever heard in my life
rjmill has joined #nixos
<eyJhb> Logs from boot, if anyone might know something - https://termbin.com/w2xvv
Fare has joined #nixos
karetsu has quit [Quit: WeeChat 2.9]
o1lo01ol1o has quit [Remote host closed the connection]
orivej has quit [Ping timeout: 256 seconds]
orivej has joined #nixos
john1 has joined #nixos
<worldofpeace> powerful lizer 🦎
<john1> hi all
<worldofpeace> hey
<john1> is this the place to ask for help regarding nixos?
<{^_^}> [nixpkgs] @aanderse merged pull request #93599 → perlPackages.CryptOpenPGP: init at 1.12 → https://git.io/JJWWi
<{^_^}> [nixpkgs] @aanderse pushed 2 commits to master: https://git.io/JJ0tQ
<infinisil> john1: Sure is!
<john1> awesome...ive been having some trouble with networkmanager
<john1> ill connect to wifi just fine, but occasionally i have some routing problems
<john1> ping 8.8.8.8 returns network unreachable
<john1> turning it off and on always fixes it, and itll work for a while after that
<john1> but before too long i'll get the network unreachable error again
<john1> should I paste my configuration.nix?
<infinisil> That doesn't look like something that's caused by anything NixOS specific tbh
orivej has quit [Quit: No Ping reply in 180 seconds.]
<infinisil> john1: Maybe check `ip route` when it's unreachable to see if the routes are still set up. Pinging the router could be checked next
<john1> Yeah its clearly a networking problem, I was just wondering if that was some kind of known bug in nix
<john1> nmcli says its connected to the network properly
<infinisil> Not that I know of, but it wouldn't hurt to search the issue tracker
orivej has joined #nixos
slack1256 has joined #nixos
philr_ has joined #nixos
<worldofpeace> or networkmanager's tracker
civodul has quit [Quit: ERC (IRC client for Emacs 26.3)]
<john1> whats the tracker?
<john1> ah oh yeah
<john1> issue tracker
nij has quit [Ping timeout: 240 seconds]
smatting_ has quit [Ping timeout: 256 seconds]
<grfn> this may be a bit of a hand grenade but... is it possible to run a docker container as part of the builder for a nix derivation?
<grfn> I am strongly suspecting the answer is "not without disabling sandboxing rather forcefully"
dermetfan has quit [Ping timeout: 272 seconds]
Rusty1 has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
<colemickens> grfn: whatcha trying to do? maybe there's another way to slice that bread?
<grfn> colemickens: connect to a postgres database as part of a test suite
noudle has quit []
<grfn> nixos tests are currently my best option but that's so slow
<grfn> this is cursed but I wonder if it's possible to run postgres in a sandbox
<grfn> like
<grfn> data dir in a sandbox, listening on a unix socket also in the sandbox
zbozbo[m] has joined #nixos
tilcreator has quit [Ping timeout: 260 seconds]
<samueldr> I believe it should be possible
<samueldr> grfn: this is running postgresql as not-a-system-daemon, locally, in a way similar to what you want, but not in a nix build https://github.com/NixOS/hydra/pull/759/files
<samueldr> I guess the same approach to starting hydra yourself in the sandbox could work
<grfn> samueldr: oh interesting!
<grfn> this looks like it might work
orivej has quit [Ping timeout: 260 seconds]
john1 has quit [Ping timeout: 240 seconds]
orivej has joined #nixos
tilcreator has joined #nixos
MichaelRaskin has quit [Quit: MichaelRaskin]
afreak has quit [Ping timeout: 265 seconds]
cosimone_ has joined #nixos
john1 has joined #nixos
cosimone has quit [Ping timeout: 260 seconds]
cosimone_ is now known as cosimone
mbrgm_ has joined #nixos
kir0ul26 has quit [Ping timeout: 260 seconds]
mbrgm has quit [Ping timeout: 272 seconds]
mbrgm_ is now known as mbrgm
alp_ has quit [Ping timeout: 256 seconds]
zbozbo[m] has left #nixos ["User left"]
orivej has quit [Quit: No Ping reply in 180 seconds.]
orivej has joined #nixos
orivej has quit [Ping timeout: 246 seconds]
Rusty1 has joined #nixos
orivej has joined #nixos
knerten has quit [Quit: knerten]
bukkitgerman8608 has quit [Ping timeout: 256 seconds]