worldofpeace changed the topic of #nixos to: NixOS 20.09 Nightingale ✨ https://discourse.nixos.org/t/nixos-20-09-release/9668 || https://nixos.org || Latest NixOS: https://nixos.org/nixos/download.html || Latest Nix: https://nixos.org/nix/download.html || Logs: https://logs.nix.samueldr.com/nixos/ || use ,channels for a list of Nix* related channels || nixcon videos: https://tinyurl.com/nixcon2019 || Link to the output of nix-inf
BaughnLogBot has joined #nixos
BaughnLogBot has quit [Client Quit]
BaughnLogBot has joined #nixos
meh` has quit [Ping timeout: 264 seconds]
moet has joined #nixos
<moet> how do i install a specific version of a package? .. in general, is the answer "go read the nix file for the package"?
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #113291 → dlx: fix cross-compilation → https://github.com/NixOS/nixpkgs/pull/113291
Acou_Bass has quit [Ping timeout: 240 seconds]
<simpson> The general answer is to try overriding `version`, I think. Reading the Nix file is required when the override doesn't work~
plumm has quit [Quit: My Mac Pro has gone to sleep. ZZZzzz…]
<{^_^}> [nixpkgs] @roberth merged pull request #113282 → qtwebengine: Increase build timeout to 24h → https://github.com/NixOS/nixpkgs/pull/113282
<sterni> overriding the version rarely ever works and is generally not best practice, but some packages have that
<sterni> moet: Some packages have alternative versions they are usually named <package-name>_1_3 or <package-name>-1-3
<sterni> moet: should be discoverable via the package search
<sterni> moet: otherwise have a look at the nix expression, if it works for past versions you can use overrideAttrs to supply an old source
ece34 has joined #nixos
<moet> sterni: ok! that's what i'll do.. thank you
<lordcirth> When I create a container with "nixos-container create --flake ." I cannot destroy it; it says it's declarative. Is this a known bug?
<{^_^}> [nixpkgs] @roberth pushed to staging-20.09 « qtwebengine: Increase build timeout to 24h »: https://git.io/Jt1Am
<sterni> moet: like this: my-pkg.overrideAttrs (oldAttrs: { version = "…"; src = fetchurl { … }; })
ece3 has quit [Read error: Connection reset by peer]
ece34 is now known as ece3
BaughnLogBot has quit [Quit: ZNC 1.6.2+deb1 - http://znc.in]
<sterni> moet: note that changing version via overrideAttrs only changes the name of the package, not its actual version
<sterni> (overrides are a bit of a confusing topic actually
BaughnLogBot has joined #nixos
BaughnLogBot has quit [Client Quit]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #113348 → ibus-engines.table: 1.12.3 -> 1.12.4 → https://github.com/NixOS/nixpkgs/pull/113348
<{^_^}> [nixpkgs] @astro opened pull request #113349 → hdfview: 2.14 -> 3.1.2 → https://github.com/NixOS/nixpkgs/pull/113349
Dotz0cat has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #113297 → sbcl: deduplicate nix expression for all versions → https://github.com/NixOS/nixpkgs/pull/113297
Dotz0cat_ has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #113302 → crow-translate: 2.6.2 → 2.7.1 → https://github.com/NixOS/nixpkgs/pull/113302
<zn85> Hi, I'm attempting to install nixos (for the first time) as the only os on a system. When I get to the "reboot" step in the manual, booting fails saying "a bootable device has not been detected".
<zn85> I followed the steps in https://nixos.org/manual/nixos/stable/index.html#sec-installation-partitioning-UEFI (except I did not create a swap partition). Did I fail to take some step to enable booting via uefi? (I've never installed linux w/ UEFI boot before.)
<zn85> What should `parted print` look like after completing that section?
<zn85> -or am I missing some bios setting?
ahmed_elgabri has quit [Ping timeout: 246 seconds]
tomberek has joined #nixos
* zn85 looks to see if he can see what grub configuration nixos-install created…
<moet> zn85: Are you doing anything with luks?
<zn85> Yes.
<zn85> I attempted to follow https://nixos.wiki/wiki/Full_Disk_Encryption#Option_3:_Full_disk_encryption_.28encrypted_.2Fboot.29_with_password
<zn85> -including the modifications to `configuration.nix` and including the correct UUID in the correct spot.
<moet> ok, that's what I was going to suggest. maybe that's not the issue then
<zn85> Also, the `hardware-configuration.nix` seemed to have the right info.
<zn85> Is the error message I see a grub message or a bios message?
<zn85> -or something later in the boot process?
<moet> If you hit grub you'll get a menu from which you can select a nixos version
<moet> If you never see such a menu, my guess is that you're seeing a bios message
<zn85> Oh, I noticed a discrepancy between the wiki page for luks and the nixos manual: the wiki said to mount the efi partition as `/boot/efi` but the manual says to mount to `/mnt/boot`. I followed the manual.
astronavt has left #nixos [#nixos]
Rusty1 has left #nixos ["WeeChat 2.9"]
<zn85> hrm, glancing at `grub.cfg` I can't tell if there's any misconfiguration.
<zn85> Current suspect from the wiki page which says to add this option in `configuration.nix`: `boot.loader.efi.efiSysMountPoint = "/boot/efi";`
mkaito has quit [Quit: WeeChat 3.0]
<zn85> -aha, that was it!
<moet> Weird! I don't have that in my configuration and i'm efy booted into luk on lvm
<zn85> When I mounted the efi partition to `/mnt/boot/efi` rather than `/mnt/boot` as it suggests in the manual here https://nixos.org/manual/nixos/stable/index.html#sec-installation-installing , then it works.
<zn85> So is the manual incorrect for uefi? Or is it only inconsistent with the disk encryption wiki page (which is a bit messy and confusing, tbh)?
proofofkeags has quit [Ping timeout: 264 seconds]
<moet> zn85: I'm not sure; you mount boot / efi in different places .. that part of the manual is definitely confusing and I feel like I do it differently every time i set up a new system
<moet> ** you can mount boot or efi in different places
<zn85> Awesome! It boots. For some reason both grub and a later stage ask for the disk password.
<moet> yes, that's normal.. you have to do some work to only get a single password prompt..
fuzzypixelz has quit [Quit: Connection closed]
astronavt has joined #nixos
<moet> i think that's because your boot partition is encrypted?
<zn85> Ah… huh... yeah, maybe I have `/boot` inside the encrypted lvm partition, then `/boot/efi` on a normal disk partition…doh.
gustavderdrache has joined #nixos
<moet> yeah, i can't remember the details.. i set up my systems without an encrypted boot partition and i mount at /boot not at /boot/efi .. i get only one password prompt, but my kernel is sitting out there on unecrypted fat32
zebrag has quit [Quit: Konversation terminated!]
zebrag has joined #nixos
m0rphism1 has quit [Ping timeout: 240 seconds]
quinn has quit [Quit: ZNC 1.8.1 - https://znc.in]
supersandro20005 has joined #nixos
Gohla has quit [Quit: Bye.]
andoriyu has quit [Quit: ZNC - https://znc.in]
Gohla has joined #nixos
<{^_^}> [nixpkgs] @kalbasit merged pull request #113325 → terragrunt: 0.28.4 -> 0.28.5 → https://github.com/NixOS/nixpkgs/pull/113325
andoriyu has joined #nixos
supersandro2000 has quit [Ping timeout: 265 seconds]
supersandro20005 is now known as supersandro2000
tmpo9845 has joined #nixos
quinn has joined #nixos
<tmpo9845> Hi, could I PM an admin/maintainer about something?
<{^_^}> [nixpkgs] @ajs124 opened pull request #113350 → nginxMainline: 1.19.6 -> 1.19.7 → https://github.com/NixOS/nixpkgs/pull/113350
moet has quit [Quit: leaving]
<supersandro2000> tmpo9845: About what topic? Maybe someone else can help you, too.
<{^_^}> [nixpkgs] @cdepillabout merged pull request #113318 → haskellPackages.xml-extractors: broken -> unbroken → https://github.com/NixOS/nixpkgs/pull/113318
<tmpo9845> Question about a merged PR that had some personal info in it
mbrgm_ has joined #nixos
<{^_^}> [nixpkgs] @cdepillabout merged pull request #113320 → haskellPackages: Add myself (turion) to maintainer list → https://github.com/NixOS/nixpkgs/pull/113320
mbrgm has quit [Ping timeout: 256 seconds]
mbrgm_ is now known as mbrgm
ky0ko has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #113316 → j: fix build → https://github.com/NixOS/nixpkgs/pull/113316
<{^_^}> [nixpkgs] @figsoda opened pull request #113352 → xtrt: init at 61884fb → https://github.com/NixOS/nixpkgs/pull/113352
<lovesegfault> What do I do if I have a drv that isn't reproducible and I'm trying to understand why
<lovesegfault> I have two builds with differing hashes already
<lovesegfault> but I'm not sure how to inspect them to figure out what is different
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/e7b055d5ba2 (from 4 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
<qyliss> lovesegfault: use diffoscope, remember to set it to exclude directory metadata or it'll take forever
<lovesegfault> qyliss: on it
mrSpec has quit [Quit: ZNC - http://znc.in]
<{^_^}> [nixpkgs] @peterhoeg closed pull request #107781 → kinfocenter: create symlink manually → https://github.com/NixOS/nixpkgs/pull/107781
<{^_^}> [nixpkgs] @peterhoeg merged pull request #108356 → kinfocenter: fix symlink to systemsettings5 → https://github.com/NixOS/nixpkgs/pull/108356
cseder has joined #nixos
nhs has quit [Ping timeout: 272 seconds]
sss2 has joined #nixos
zjuyk has joined #nixos
aliuser has joined #nixos
<aliuser> Don't miss Energy Lab!
<aliuser> Play to get items for only US $0.01!
aliuser has quit [K-Lined]
rb2k has quit [Ping timeout: 265 seconds]
Acou_Bass has joined #nixos
rb2k has joined #nixos
nhs has joined #nixos
<supersandro2000> tmpo9845: it is probably what it is now because even if the branch was force pushed
<supersandro2000> if it was recently the PR is probably on web.archive.org already, too
<supersandro2000> also github saves the force push history and if I know the commit hash I can still get the info
<supersandro2000> the merged PR has also the sha1 with which it landed in master
wnklmnn has quit [Quit: Leaving]
sigmundv has quit [Ping timeout: 240 seconds]
plumm has joined #nixos
<tmpo9845> supersandro2000: Yeah that's alright, and it's not terribly private, but at least getting it off would have it be unsearchable from github
nhs has quit [Ping timeout: 264 seconds]
<tmpo9845> Is it alright to just make another PR to remove it as its sole purpose?
<qyliss> I think it would have to be something exceptionally private for anything to be done about it
<qyliss> oh, but if you're just talking about adding a new commit to remove it that's fine
<qyliss> tmpo9845: go ahead
<supersandro2000> if you want to remove a comment or something just open a PR and I'll merge it
<supersandro2000> but keep in mind that then it is in the history forever
<{^_^}> [nixpkgs] @r-ryantm opened pull request #113353 → gtk-doc: 1.33.1 -> 1.33.2 → https://github.com/NixOS/nixpkgs/pull/113353
<tmpo9845> Exactly.  Yeah it's just my name & email which I prefer not be searchable on github at least. Thanks will do.
<supersandro2000> github search is so terrible it will probably on find it if I type in the exact match
<supersandro2000> and even then it maybe won#t find it
<tpw_rules> i don't think github search works on the nixpkgs repo anymore
<tpw_rules> i haven't got a single result from it in weeks
<ivan> code search or issues?
<supersandro2000> it only shows the "top results"
<tpw_rules> code search
<supersandro2000> but we have hound
<tpw_rules> issues and commits still work
<supersandro2000> https://search.nix.gsc.io/
<supersandro2000> tpw_rules: sometimes
<supersandro2000> searching closed issues sometimes gives you unicorns
<tpw_rules> yeah but code worked a while ago
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #113289 → muso: init at 2.0.0 → https://github.com/NixOS/nixpkgs/pull/113289
marcusr has quit [Read error: Connection reset by peer]
marcusr has joined #nixos
marcusr has quit [Remote host closed the connection]
apache8080 has joined #nixos
marcusr has joined #nixos
<{^_^}> [nixpkgs] @erictapen opened pull request #113355 → nixos/mastodon: fix group membership for nginx → https://github.com/NixOS/nixpkgs/pull/113355
rb2k has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
rb2k has joined #nixos
<apache8080> I am booting nixos on ARM with fips enabled and I get into a situation where the kernel will hang forever after outputting `random: crng init done`. It seems like raspberry pi's have had similar issues but I can't seem to find an actual solution for this. By throwing prints in the kernel the function that it seems to keep on getting called is
<apache8080> add_interrupt_randomness. Has anyone seen this before?
rajivr has joined #nixos
zjuyk has left #nixos ["WeeChat 3.0"]
cole-h has quit [Ping timeout: 260 seconds]
<simpson> Well, at risk of making both of us look a bit silly, do you have a peripheral attached? Like, a mouse that you could shake a bit?
<simpson> I don't know how your particular board is configured to get entropy.
<apache8080> unfortunately no
<apache8080> where in the actual kernel does entropy get configured?
nhs has joined #nixos
plumm has quit [Quit: My Mac Pro has gone to sleep. ZZZzzz…]
<rmcgibbo[m]> If I have a particular package that contains 1 binary, can anyone point me to an example configuration of the NixOS `sudo` module that would allow that binary to run as root w/o requiring a password?
nhs has quit [Ping timeout: 240 seconds]
marcusr has quit [Remote host closed the connection]
plumm has joined #nixos
fuzzypixelz has joined #nixos
orivej has quit [Ping timeout: 272 seconds]
marcusr has joined #nixos
mizu_no_oto has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #113151 → pciutils: use database from hwinfo which is easier to update → https://github.com/NixOS/nixpkgs/pull/113151
<{^_^}> [nixpkgs] @mbaeten opened pull request #113356 → pragha: init at 1.3.4 → https://github.com/NixOS/nixpkgs/pull/113356
meh` has joined #nixos
kum0 has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #110654 → [staging] perl532: 5.32.0 -> 5.32.1, perl-cross: 4c55233 -> 1.3.5 → https://github.com/NixOS/nixpkgs/pull/110654
<{^_^}> [nixpkgs] @cdepillabout pushed 2 commits to haskell-updates: https://git.io/JtMea
<{^_^}> [nixpkgs] @cdepillabout closed pull request #113322 → haskellPackages: add myself as maintainer for a few pkgs → https://github.com/NixOS/nixpkgs/pull/113322
red[evilred] has quit [Quit: Idle timeout reached: 10800s]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #113357 → keycloak: 12.0.2 -> 12.0.3 → https://github.com/NixOS/nixpkgs/pull/113357
johnnyfive has quit [Quit: I quit now.]
Jackneill has quit [Ping timeout: 256 seconds]
johnnyfive has joined #nixos
thc202 has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #113265 → remove many unused input, add many pythonImportsCheck, others cleanups → https://github.com/NixOS/nixpkgs/pull/113265
<V> rmcgibbo[m]: do you want the binary itself to run as root, when run by any user, or to allow a specific to run `sudo binary` without providing a password?
<rmcgibbo[m]> Either way is fine
<V> rmcgibbo[m]: add it to security.wrappers, then
<V> please ensure you're doing this while understanding the implications, however
nhs has joined #nixos
<V> and that the binary in question is minimal and secure, and written with being setuid root in mind
<rmcgibbo[m]> Thanks, I'll look that up.
<rmcgibbo[m]> Yeah -- it's my little BPF program :)
<V> if you don't know how to judge whether the answer to these questions is "yes", I would choose to whitelist specifically the users that need it in sudo
<V> which you can find out how in sudoers(5) IIRC
Jackneill has joined #nixos
<V> + set via security.sudo.*
<rmcgibbo[m]> The other way I suppose is to run it as a systemd service, since I know how to do those.
<V> that's probably a much better idea, assuming it's long-running
<V> suid binaries are a massive footgun
<hexa-> rmcgibbo[m]: CAP_BPF?
<hexa-> since 5.8
<V> oh, yeah
<V> if it's just a specific capability you need then that is also an option
slack1256 has joined #nixos
<hexa-> the least invasive one :)
<rmcgibbo[m]> okay, well i need to learn what that is now
<V> I was even thinking of capabilities while writing that! Just not the kind that Linux has
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #112767 → gkrellm: add desktop file, maintainer; other fixups → https://github.com/NixOS/nixpkgs/pull/112767
<rmcgibbo[m]> I can give a non-root user CAP_PERFMON and then they could run this binary w/o being root?
<hexa-> rmcgibbo[m]: if your program is running in a systemd unit set AmbientCapabilities = [ "CAP_BPF" ]; and just run your BPF programs
<hexa-> you can, yes
<zn85> On my attempt to install nixos w/ disk encryption, I get past grub and I get a prompt for the passphrase and it mentions the correct `/dev/disk/by-uuid/…` path. But when I type there is no feedback at all. When I hit enter, no change. I waited a long time and there's no update. Could it be that `nixos stage 1` doesn't listen to a USB keyboard?
<zn85> What else would prevent keyboard input or any kind of feedback? I guess it could be locked up, also, somehow.
<zn85> Oh, I could hunt down a ps2 keyboard and see if that works…
<hexa-> zn85: yeah, sounds like you are missing a kmod
<{^_^}> [nixpkgs] @tomberek opened pull request #113358 → docs: clarify staging → https://github.com/NixOS/nixpkgs/pull/113358
<hexa-> is it a cherry keyboard by chance?
<zn85> Ah, is that something specified in `hardware-configuration.nix`?
<zn85> No, it's a microsoft something something, pretty old ergonomic wireless keyboard with a usb dongle.
<hexa-> ok
<zn85> The thing is the keyboard works with the bios and the nixos installer, so shouldn't `nixos-generate-config` see any module that was necessary?
<hexa-> there is hid_microsoft
gustavderdrache has quit [Quit: Leaving.]
<rmcgibbo[m]> Are the capabilities inherited -- like if I have my main program run from systemd as a non-root user with AmbientCapability = CAP_PERFMON, and then it execs some other program which subpocesses some other program -- that capability would be inherited, right?
<hexa-> yeah, thats the plan, we're lacking an implementation
<hexa-> set boot.initrd.kernelModules = [ "hid_microsoft" ];
<hexa-> rmcgibbo[m]: ambient provides them capabilityboundingset allows your program to request them
<hexa-> I believe so
<hexa-> zn85: fwiw: the module has been added into the default kernel on master: https://github.com/NixOS/nixpkgs/commit/bcc93f02d20cf0885bbcc69984b0319b50ab2c02
<{^_^}> [nixpkgs] @jonringer merged pull request #112319 → nbxplorer: 2.1.46 -> 2.1.49 & btcpayserver: 1.0.5.9 -> 1.0.6.8 → https://github.com/NixOS/nixpkgs/pull/112319
<hexa-> there is an open issue about hid_cherry and that ended in a point being made about nixos-generate-config handling that https://github.com/NixOS/nixpkgs/pull/111595
<{^_^}> #111595 (by Luflosi, 2 weeks ago, open): nixos/availableKernelModules: add cherry hid
Lord_of_Life_ has joined #nixos
nhs has quit [Ping timeout: 256 seconds]
blueberrypie has quit [Quit: leaving]
<zn85> hexa- Thanks! I just tried a wired usb keyboard and that worked. After booting, the wireless keyboard works, so the only time it doesn't work is during the luks pw prompt. I'll follow up on that issue.
Lord_of_Life has quit [Ping timeout: 256 seconds]
Lord_of_Life_ is now known as Lord_of_Life
blueberrypie has joined #nixos
zn85 has quit [Quit: Connection closed]
zebrag has quit [Quit: Konversation terminated!]
zebrag has joined #nixos
<{^_^}> [nixpkgs] @jonringer merged pull request #111800 → [20.09] libqb: 0.17.2 -> 2.0.2 → https://github.com/NixOS/nixpkgs/pull/111800
<{^_^}> [nixpkgs] @peterhoeg merged pull request #112493 → nixos/bluetooth: add support for disabling plugins → https://github.com/NixOS/nixpkgs/pull/112493
nhs has joined #nixos
svrana has joined #nixos
meh` has quit [Ping timeout: 265 seconds]
plumm has quit [Quit: My Mac Pro has gone to sleep. ZZZzzz…]
h0m1 has quit [Ping timeout: 260 seconds]
h0m1 has joined #nixos
gustavderdrache has joined #nixos
nhs has quit [Ping timeout: 240 seconds]
apache8080 has quit [Ping timeout: 240 seconds]
fuzzypixelz has quit [Ping timeout: 240 seconds]
mizu_no_oto has quit [Quit: Computer has gone to sleep.]
<{^_^}> [nixpkgs] @mweinelt merged pull request #113050 → python3Packages.libnacl: 1.7.1 -> 1.7.2 → https://github.com/NixOS/nixpkgs/pull/113050
plumm has joined #nixos
<hexa-> use linuxPackages_latest
<hexa-> you don't need 5.8 specifically, and that kernel is EOL either way
<rmcgibbo[m]> Latest seemed to have some other problem on amazon... let me try again (and post that one if i hit it)
<fiveseven[m]> 5.9 breaks the console on nvidia
<fiveseven[m]> and 5.10 and up aren't supported at all by the stable driver
nhs has joined #nixos
<hexa-> nvidia *shrug*
<hexa-> I mean no disrespect
<fiveseven[m]> here we go
<hexa-> but the nvidia situation is as it is :)
<rmcgibbo[m]> ...maybe this should be backported to 20.09? https://github.com/NixOS/nixpkgs/commit/85298db412bc3f768d0eba099f69a8014525c5dc
<fiveseven[m]> nouveau acts even worse if you wanna go that route
<hexa-> that is also nvidias fault :)
<samueldr> there's not much NixOS can do here, the kernel is EOL, it is removed
<fiveseven[m]> and I've had major issues with all major GPU vendors, doesn't really matter who you wanna bash
<samueldr> but what a user can do is use one of the different methods of picking back up that kernel
mjsir911 has quit [Ping timeout: 256 seconds]
mjsir911 has joined #nixos
<rmcgibbo[m]> Yeah -- I'm not trying to use anything EOL, just trying to start from 20.09 and build a machine image for amazon with a 5.8-or-later kernel.
<samueldr> (yeah, that was generally said)
<samueldr> rmcgibbo[m]: can you try building with that on top of 20.09 and open a backport PR if it works?
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #112625 → python3Packages.pyfakefs: 4.3.2 -> 4.3.3 → https://github.com/NixOS/nixpkgs/pull/112625
philr has quit [Ping timeout: 260 seconds]
nhs has quit [Ping timeout: 264 seconds]
<rmcgibbo[m]> ;) can you help me figure out the incantation to set `boot.kernelPackages = pkgs.linuxPackages_latest` but then specifically override `ena`? should i do `boot.kernelPackages.ena = (import from unstable...)`?
<samueldr> rmcgibbo[m]: the easiest route here would be cloning nixpkgs, checking out nixos-20.09 (assuming you're building against the tip) and apply the changes to the checkout
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #108835 → yabridge,yabridgectl: init at 3.0.0 → https://github.com/NixOS/nixpkgs/pull/108835
<samueldr> uh, not tip outright, but most recent channel update*
<samueldr> overlaying is always a bit more involved, especially since here it's a package set
<rmcgibbo[m]> right, okay. so like `git clone && git cherry-pick && NIX_PATH=nixpkgs=/path/to/clone nixos-rebuild --switch`?
nhs has joined #nixos
<rmcgibbo[m]> sorry for being a newb here -- i usually stay in home-manager and nix run
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #113284 → shhgit: init at 0.4-7e55062 → https://github.com/NixOS/nixpkgs/pull/113284
<samueldr> oh, it's an already running system on amazon?
vdemeester has quit [Ping timeout: 260 seconds]
<samueldr> I thought you were building an image
<samueldr> nixos-rebuild build # at first
<samueldr> as that won't require sudo
<samueldr> sudo as configured with NixOS (iirc) won't transmit the environment variables
vdemeester has joined #nixos
<rmcgibbo[m]> i'm starting from the pre-built images that ya'll have made for 20.09 and then customizing it a `packer` cvx.
<rmcgibbo[m]> cvx-> cfg* typo
<samueldr> so you might prefer using -I nixpkgs=/path/to/checkout
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #112237 → pythonPackages.transmission-rpc: 0.11 -> 3.2.2 → https://github.com/NixOS/nixpkgs/pull/112237
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #113328 → refind: 0.12.0 -> 0.13.0 → https://github.com/NixOS/nixpkgs/pull/113328
nhs has quit [Ping timeout: 246 seconds]
nhs has joined #nixos
<{^_^}> [nixpkgs] @disposable8347 opened pull request #113359 → mcrypt: remove unwanted info from patch → https://github.com/NixOS/nixpkgs/pull/113359
<hexa-> ,locate eix
<{^_^}> Found in packages: fish, salt
nhs has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #113360 → inform6: 6.34-6.12.2 -> 6.34-6.12.4-1 → https://github.com/NixOS/nixpkgs/pull/113360
zebrag has quit [Quit: Konversation terminated!]
zebrag has joined #nixos
nhs has joined #nixos
Jd007 has quit [Quit: Jd007]
spacefrogg has quit [Quit: Gone.]
aw has quit [Quit: Quitting.]
nhs has quit [Ping timeout: 265 seconds]
<rmcgibbo[m]> looks like i might need to pull in an even newer set of amazon drivers given these release notes: https://github.com/amzn/amzn-drivers/commit/5124e585604582861b6311d19b3f83d3602c560c
aw has joined #nixos
spacefrogg has joined #nixos
chisui has quit [Ping timeout: 240 seconds]
nhs has joined #nixos
delan has quit [Quit: ZNC - http://znc.in]
delan has joined #nixos
tomberek has quit [Quit: Connection closed]
<{^_^}> [nixpkgs] @baloo opened pull request #113361 → libtpms: init at 0.7.4 → https://github.com/NixOS/nixpkgs/pull/113361
nhs has quit [Ping timeout: 246 seconds]
nhs has joined #nixos
EMayej has joined #nixos
<{^_^}> [nixpkgs] @baloo opened pull request #113362 → swtpm: init at 0.5.2 → https://github.com/NixOS/nixpkgs/pull/113362
<{^_^}> [nixpkgs] @mweinelt opened pull request #113363 → raspberrypi: update kernel, firmware, eeprom and userland tools → https://github.com/NixOS/nixpkgs/pull/113363
nhs has quit [Ping timeout: 260 seconds]
riksteri has joined #nixos
jonringer has quit [Remote host closed the connection]
nicoo has quit [Ping timeout: 268 seconds]
<samueldr> rmcgibbo[m]: just so you know, long (multline) messages from matrix may reduce your chances at being read on the IRC side of things https://logs.nix.samueldr.com/nixos/2021-02-17#4636094;
<rmcgibbo[m]> thanks, sorry.
<samueldr> rmcgibbo[m]: on 20.09, unless you picked the file from unstable directly, it's forced as broken this way: https://github.com/NixOS/nixpkgs/blob/08327493801e12217891826604c2812e7f48eb28/pkgs/os-specific/linux/ena/default.nix#L40
<rmcgibbo[m]> ohhh, got it.
<rmcgibbo[m]> okay, that's simpler than i was expecting, i'm just confused about all of my git merging.
<samueldr> n/p
<rmcgibbo[m]> samueldr++
<{^_^}> samueldr's karma got increased to 320
<{^_^}> [nixpkgs] @mweinelt opened pull request #113364 → microcodeIntel: 20201118 -> 20210216 → https://github.com/NixOS/nixpkgs/pull/113364
MrCoffee has quit [Quit: Lost terminal]
davidv7 has quit [Read error: Connection reset by peer]
tmpo9845 has quit [Quit: Connection closed]
nhs has joined #nixos
tomberek has joined #nixos
freerabix2 has quit [Quit: Connection closed]
nicoo has joined #nixos
monotux has quit [Remote host closed the connection]
monotux has joined #nixos
MarkRBM_ has quit [Quit: Connection closed for inactivity]
<{^_^}> [nixpkgs] @rmcgibbo opened pull request #113365 → kernelPackages.ena: 2.3.0 -> 2.4.1 → https://github.com/NixOS/nixpkgs/pull/113365
zebrag has quit [Quit: Konversation terminated!]
zebrag has joined #nixos
<{^_^}> [nixpkgs] @bhipple opened pull request #113366 → ledger: build python bindings with python3 → https://github.com/NixOS/nixpkgs/pull/113366
rb2k has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
nhs has quit [Ping timeout: 265 seconds]
<{^_^}> [nixpkgs] @bhipple merged pull request #113359 → mcrypt: remove unwanted info from patch → https://github.com/NixOS/nixpkgs/pull/113359
domogled has joined #nixos
tomberek has quit [Quit: Ping timeout (120 seconds)]
<{^_^}> [nixpkgs] @bhipple merged pull request #113309 → matrix-synapse: 1.26.0 -> 1.27.0 → https://github.com/NixOS/nixpkgs/pull/113309
endformationage has quit [Quit: WeeChat 2.9]
nhs has joined #nixos
captn3m0 has quit [Ping timeout: 256 seconds]
nhs has quit [Ping timeout: 272 seconds]
Supersonic112 has joined #nixos
slack1256 has quit [Ping timeout: 240 seconds]
Supersonic has quit [Ping timeout: 264 seconds]
Supersonic112 is now known as Supersonic
pushqrdx has quit [Read error: Connection reset by peer]
nhs has joined #nixos
rajivr has quit [Quit: Connection closed for inactivity]
plumm has quit [Quit: My Mac Pro has gone to sleep. ZZZzzz…]
nhs has quit [Ping timeout: 260 seconds]
philr has joined #nixos
tomberek has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #112042 → graalvm-ce: 20.3.0 -> 21.0.0 → https://github.com/NixOS/nixpkgs/pull/112042
domogled has quit [Ping timeout: 265 seconds]
nek0 has quit [Remote host closed the connection]
nhs has joined #nixos
zebrag has quit [Quit: Konversation terminated!]
nek0 has joined #nixos
nhs has quit [Ping timeout: 264 seconds]
nhs has joined #nixos
Orbstheorem has quit [Ping timeout: 272 seconds]
waleee-cl has quit [Quit: Connection closed for inactivity]
cseder has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
nhs has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @peterhoeg opened pull request #113367 → nixos/bluetooth: hotfix for stupidity → https://github.com/NixOS/nixpkgs/pull/113367
rajivr has joined #nixos
Orbstheorem has joined #nixos
supersandro2000 has quit [Quit: Ping timeout (120 seconds)]
supersandro2000 has joined #nixos
nhs has joined #nixos
<{^_^}> [nixpkgs] @TredwellGit opened pull request #113368 → chromium: 88.0.4324.150 -> 88.0.4324.182 → https://github.com/NixOS/nixpkgs/pull/113368
srk has quit [Remote host closed the connection]
gustavderdrache has quit [Quit: Leaving.]
srk has joined #nixos
nhs has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @peterhoeg merged pull request #113367 → nixos/bluetooth: hotfix for stupidity → https://github.com/NixOS/nixpkgs/pull/113367
nhs has joined #nixos
reptarmigan has joined #nixos
yjftsjthsd has quit [Read error: Connection reset by peer]
<reptarmigan> Hello, I have a question about nix I can't seem to find an example for.
<lovesegfault> reptarmigan: ask away :)
yjftsjthsd has joined #nixos
nhs has quit [Ping timeout: 272 seconds]
<reptarmigan> I want to luks encrypt a zfs raidz2 array (so luks->zfs-raidz2, rather then zfs native)
<reptarmigan> but I can't quite figure out how that should look in my configuration.nix
<reptarmigan> since each element of the raidz needs to have its own luks setup
<{^_^}> [nixpkgs] @siraben opened pull request #113369 → microscheme: refactor, fix build on darwin and cross-compilation → https://github.com/NixOS/nixpkgs/pull/113369
nhs has joined #nixos
<lovesegfault> Oh, uhhh
<lovesegfault> one thing that comes to mind is boot.initrd.luks.reusePassword
<lovesegfault> *reusePassphrases
<lovesegfault> so if you create all the luks vols with the same pw you will only need to type it once
<reptarmigan> I wonder if I can throw a list at blkDev
<lovesegfault> if you're using zfs you won't use that fileSystems clause
<reptarmigan> Oh Yeah, I'm already there :D
<reptarmigan> I'm booting to encrypted zfs with luks under
<lovesegfault> The question that comes to mind is why?
<lovesegfault> why not just use zfs encryption
<reptarmigan> It looks like performance of luks under zfs is better then native zfs encryption
<lovesegfault> luks under zfs or zfs under luks?
nhs has quit [Ping timeout: 256 seconds]
<reptarmigan> haha, maybe that's not the clearest way to describe that :D luks on the block device, zfs on the luks mapped device
<lovesegfault> I see, zfs under luks
<lovesegfault> interesting
<reptarmigan> well as the wiki describes
<reptarmigan> the stumper for me is how to describe the luks setup for sda..sdg which then I assume the zfs import picks up.
<lovesegfault> boot.initrd.luks.devices
<lovesegfault> and then in `fileSystems` you use the zfs mode
<reptarmigan> Ahh, so I enumerate the lot of them in the initrd.
<lovesegfault> ye
<reptarmigan> I guess they all get nicknames
Dotz0cat_ has joined #nixos
Dotz0cat has quit [Ping timeout: 272 seconds]
sangoma has joined #nixos
cseder has joined #nixos
nhs has joined #nixos
isHavvy has joined #nixos
nhs has quit [Ping timeout: 265 seconds]
brettgilio_ has joined #nixos
bougyman has quit [Ping timeout: 258 seconds]
brettgilio has quit [Ping timeout: 240 seconds]
isHavvyGhosting has quit [Ping timeout: 240 seconds]
bougyman has joined #nixos
rj has quit [Remote host closed the connection]
rj has joined #nixos
nhs has joined #nixos
bougyman has quit [Ping timeout: 240 seconds]
cz3 has quit [Ping timeout: 240 seconds]
cz3 has joined #nixos
nhs has quit [Ping timeout: 260 seconds]
bougyman has joined #nixos
palo1 has joined #nixos
sangoma has quit [Ping timeout: 264 seconds]
palo has quit [Ping timeout: 264 seconds]
palo1 is now known as palo
aleph- has quit [Ping timeout: 265 seconds]
cole-h has joined #nixos
mallox has joined #nixos
<{^_^}> Channel nixos-20.09 advanced to https://github.com/NixOS/nixpkgs/commit/95ce0f52ec1 (from 19 hours ago, history: https://channels.nix.gsc.io/nixos-20.09)
nhs has joined #nixos
sangoma has joined #nixos
nhs has quit [Ping timeout: 260 seconds]
bitmapper has quit [Quit: Connection closed for inactivity]
benschza_ has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
fabian_a has joined #nixos
aleph- has joined #nixos
nhs has joined #nixos
rauno has joined #nixos
saschagrunert has joined #nixos
nhs has quit [Ping timeout: 265 seconds]
nhs has joined #nixos
<{^_^}> [nixpkgs] @doronbehar merged pull request #113277 → mailnag: 2.1.0 -> 2.2.0 → https://github.com/NixOS/nixpkgs/pull/113277
<rauno> Hum, when enabling networking.firewall my docker services break when they use exposed ports to communicate? Is this expected ? Saw few open/closed issues to similar issue also..but nothing quite right
<{^_^}> [nixpkgs] @chkno opened pull request #113370 → prometheus-systemd-exporter: Init at 0.4.0 → https://github.com/NixOS/nixpkgs/pull/113370
nhs has quit [Ping timeout: 265 seconds]
<dminuoso> rauno: Honestly, I'd expect this.
<dminuoso> docker-compose relies very heavily on making large manipulations to iptables
<rauno> these ports are exposed on internal interface which is in firewall "trustedInterfaces" list
<rauno> Okay, so docker-compose needs to be applied again?
<dminuoso> Most likely, yes.
<dminuoso> Ideally, stop the entire docker daemon
<dminuoso> (Or rather, restart it)
<dminuoso> See if that helps
<dminuoso> Guess there you have it.
<dminuoso> This flushes all old firewall rules
<dminuoso> Or.. Im not sure what docker installs them to.
<rauno> hum
<rauno> didnt really help
<{^_^}> [nixpkgs] @Mic92 merged pull request #110615 → pipewire: 0.3.18 -> 0.3.21 → https://github.com/NixOS/nixpkgs/pull/110615
nhs has joined #nixos
<{^_^}> [nixpkgs] @danieldk merged pull request #113364 → microcodeIntel: 20201118 -> 20210216 → https://github.com/NixOS/nixpkgs/pull/113364
poscat has quit [Ping timeout: 264 seconds]
<{^_^}> [nixpkgs] @06kellyjac opened pull request #113371 → boundary: 0.1.6 -> 0.1.7 → https://github.com/NixOS/nixpkgs/pull/113371
nhs has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @fabaff opened pull request #113372 → python3Packages.pylint: 2.6.0 -> 2.6.2 → https://github.com/NixOS/nixpkgs/pull/113372
<{^_^}> [nixpkgs] @danieldk merged pull request #113292 → pam_gnupg: 0.2 -> 0.3 → https://github.com/NixOS/nixpkgs/pull/113292
<Rovanion> I'm getting "install-info: Cannot allocate memory for gzip -d
<Rovanion> " when I try to run `nix-build nixos/tests/prometheus-exporters.nix -A smokeping`.
<{^_^}> [nixpkgs] @siraben opened pull request #113373 → neofetch: fix cross-compilation → https://github.com/NixOS/nixpkgs/pull/113373
<{^_^}> [nixpkgs] @danieldk merged pull request #113254 → bmap-tools: 3.4 -> 3.6 → https://github.com/NixOS/nixpkgs/pull/113254
<Rovanion> Does anyone recognise this error. I've not found one cause yet online, most of it seems te be from bugs in nix source. But on my machine it also happens when I run with `-A slurm`, a test I'm currently writing.
<{^_^}> [nixpkgs] @adisbladis merged pull request #113332 → libthai: Fix cross & make multi output → https://github.com/NixOS/nixpkgs/pull/113332
respawn_ has joined #nixos
ManiacOfMadness` has joined #nixos
<{^_^}> [nixpkgs] @LeSuisse opened pull request #113375 → [20.09] gnome3.gnome-autoar: 0.2.4 -> 0.3.0 → https://github.com/NixOS/nixpkgs/pull/113375
<rauno> Rovanion, you're out of memory :)
<rauno> what "free -m" says?
<Rovanion> 12893 available, rauno
<{^_^}> [nixpkgs] @rnhmjoj merged pull request #113342 → btfs: 2.23 -> 2.24 → https://github.com/NixOS/nixpkgs/pull/113342
<Rovanion> This issue could be with my installation. Running `nix-build nixos/tests/slurm.nix` has the same result. This is on a Guix System with Nix installed through Guix (functional package managers all the way down).
mels has joined #nixos
nhs has joined #nixos
<{^_^}> [nixpkgs] @peterhoeg merged pull request #112390 → nixos/hypervGuest: add Microsoft Synthetic Keyboard driver → https://github.com/NixOS/nixpkgs/pull/112390
<{^_^}> [nixpkgs] @danieldk merged pull request #113234 → ponyc: 0.38.1 -> 0.38.3 → https://github.com/NixOS/nixpkgs/pull/113234
dingenskirchen has quit [Quit: ZNC 1.8.1 - https://znc.in]
nhs has quit [Ping timeout: 256 seconds]
penguwin has quit [Quit: Ping timeout (120 seconds)]
dingenskirchen has joined #nixos
pingiun has quit [Quit: Bye!]
penguwin has joined #nixos
<{^_^}> [nixpkgs] @danieldk merged pull request #113223 → python3Packages.pytorch-bin: do not depend on nvidia_x11 → https://github.com/NixOS/nixpkgs/pull/113223
trulsa has quit [Quit: ZNC - http://znc.in]
trulsa has joined #nixos
pingiun has joined #nixos
<{^_^}> [nixpkgs] @danieldk merged pull request #113210 → libtorch-bin: remove dependency on nvidia_x11, fix passthru test → https://github.com/NixOS/nixpkgs/pull/113210
cYmen_ has quit [Remote host closed the connection]
wolfshappen has quit [Remote host closed the connection]
palo1 has joined #nixos
skrzyp has quit [Ping timeout: 272 seconds]
cYmen_ has joined #nixos
palo has quit [Ping timeout: 260 seconds]
palo1 is now known as palo
skrzyp has joined #nixos
lsix has joined #nixos
<{^_^}> [nixpkgs] @superwhiskers opened pull request #113376 → carp: 0.3.0 -> 0.5.0 → https://github.com/NixOS/nixpkgs/pull/113376
cfricke has joined #nixos
mrSpec has joined #nixos
wolfshappen has joined #nixos
mrSpec has quit [Changing host]
mrSpec has joined #nixos
<{^_^}> [nixpkgs] @danieldk merged pull request #113371 → boundary: 0.1.6 -> 0.1.7 → https://github.com/NixOS/nixpkgs/pull/113371
<{^_^}> [nixpkgs] @bobrik opened pull request #113377 → boringssl: fix aarch64-linux build → https://github.com/NixOS/nixpkgs/pull/113377
<{^_^}> [nixpkgs] @danieldk merged pull request #113290 → openfpgaloader: 0.2.1 -> 0.2.5 → https://github.com/NixOS/nixpkgs/pull/113290
mananamenos has joined #nixos
<{^_^}> [nixpkgs] @danieldk merged pull request #113159 → kibi: 0.2.1 -> 0.2.2 → https://github.com/NixOS/nixpkgs/pull/113159
nhs has joined #nixos
vidbina_ has joined #nixos
<{^_^}> Channel nixos-unstable advanced to https://github.com/NixOS/nixpkgs/commit/64b46178838 (from 15 hours ago, history: https://channels.nix.gsc.io/nixos-unstable)
<{^_^}> [nixpkgs] @Mic92 merged pull request #112989 → erlang: allow openssl override → https://github.com/NixOS/nixpkgs/pull/112989
davidv7 has joined #nixos
whald has joined #nixos
<{^_^}> [nixpkgs] @danieldk merged pull request #113097 → tilt: 0.18.8 -> 0.18.9 → https://github.com/NixOS/nixpkgs/pull/113097
teej has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @danieldk merged pull request #113096 → tickrs: 0.10.2 -> 0.11.0 → https://github.com/NixOS/nixpkgs/pull/113096
<whald> any chance to get this: https://github.com/NixOS/nixpkgs/pull/111011 merged?
<{^_^}> #111011 (by waldheinz, 2 weeks ago, open): nixos/nginx: fix MemoryDenyWriteExecute not being disabled when needed
nhs has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @danieldk merged pull request #113094 → tendermint: 0.34.3 -> 0.34.4 → https://github.com/NixOS/nixpkgs/pull/113094
<{^_^}> [nixpkgs] @siraben opened pull request #113378 → development/tools/knightos: reduce build time dependency graph → https://github.com/NixOS/nixpkgs/pull/113378
teej has joined #nixos
mtjmullen has quit [Ping timeout: 272 seconds]
mtjmullen has joined #nixos
<{^_^}> [nixpkgs] @06kellyjac opened pull request #113379 → octant: 0.16.0 -> 0.17.0 → https://github.com/NixOS/nixpkgs/pull/113379
<{^_^}> [nixpkgs] @danieldk merged pull request #113080 → nuraft: 1.1.2 -> 1.2.0 → https://github.com/NixOS/nixpkgs/pull/113080
davidv7 has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #113380 → libqmi: 1.26.8 -> 1.26.10 → https://github.com/NixOS/nixpkgs/pull/113380
kenran has joined #nixos
davidv7 has joined #nixos
m0rphism1 has joined #nixos
nhs has joined #nixos
sangoma has quit [Quit: WeeChat 3.0]
nhs has quit [Ping timeout: 240 seconds]
sangoma has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 closed pull request #113361 → libtpms: init at 0.7.4 → https://github.com/NixOS/nixpkgs/pull/113361
respawn_ has quit [Quit: Leaving]
Darkmatter66 has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #113366 → ledger: build python bindings with python3 → https://github.com/NixOS/nixpkgs/pull/113366
<{^_^}> [nixpkgs] @fabaff opened pull request #113381 → nmap-unfree: init at 7.91 → https://github.com/NixOS/nixpkgs/pull/113381
nhs has joined #nixos
<{^_^}> [nixpkgs] @worldofpeace merged pull request #113375 → [20.09] gnome3.gnome-autoar: 0.2.4 -> 0.3.0 → https://github.com/NixOS/nixpkgs/pull/113375
EMayej has quit [Quit: Connection closed]
jimmiehansson has joined #nixos
sigmundv has joined #nixos
rj has quit [Remote host closed the connection]
rj has joined #nixos
<{^_^}> [nixpkgs] @fabaff opened pull request #113382 → python3Packages.pytest: 6.1.2 -> 6.2.2 → https://github.com/NixOS/nixpkgs/pull/113382
nhs has quit [Ping timeout: 260 seconds]
ckauhaus has joined #nixos
graf_blutwurst has joined #nixos
kenran has quit [Read error: Connection reset by peer]
lsix has quit [Ping timeout: 272 seconds]
lsix has joined #nixos
astrofog has joined #nixos
kenran has joined #nixos
nhs has joined #nixos
whald has quit [Remote host closed the connection]
Darkmatter66 has quit [Read error: Connection reset by peer]
Boomerang has joined #nixos
<hyper_ch> in a self written .nix file, how can I tell it to use an older c compiler?
cole-h has quit [Ping timeout: 260 seconds]
<{^_^}> [nix] @edolstra merged pull request #4553 → Fix Haskell example → https://github.com/NixOS/nix/pull/4553
zupo has joined #nixos
cfricke has quit [Quit: WeeChat 3.0.1]
cfricke has joined #nixos
astrofog has quit [Quit: Quite]
<{^_^}> [nixpkgs] @fabaff opened pull request #113383 → python3Packages.pytest-xdist: 2.1.0 -> 2.2.1 → https://github.com/NixOS/nixpkgs/pull/113383
xelxebar has quit [Ping timeout: 268 seconds]
xelxebar_ has joined #nixos
<makefu> hyper_ch: by using a different stdenv i think (haven't tried though): https://nixos.wiki/wiki/Using_Clang_instead_of_GCC
nhs has quit [Ping timeout: 260 seconds]
<hyper_ch> makefu: thanks, I'll check
whald has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #113385 → mpd: 0.22.4 -> 0.22.5 → https://github.com/NixOS/nixpkgs/pull/113385
<{^_^}> [nixpkgs] @blitz opened pull request #113386 → [20.09] gitlab: 13.6.1 -> 13.6.7 → https://github.com/NixOS/nixpkgs/pull/113386
nhs has joined #nixos
<hyper_ch> makefu: https://paste.simplylinux.ch/view/raw/84a76b7d --> it complains about pkgs on the 3rd last line
<makefu> add pkgs to the top line maybe?
__monty__ has joined #nixos
<hyper_ch> actually, addnig the line into packageOverrides { stdenv = pkgs.gcc8.stdenv ....} works..... well, not sure if gcc8 is being used right now, but it does not complain right now
nhs has quit [Ping timeout: 265 seconds]
<{^_^}> [nixpkgs] @fabaff opened pull request #113387 → python3Packages.adafruit-platformdetect: 3.1.0 -> 3.1.1 → https://github.com/NixOS/nixpkgs/pull/113387
attila_lendvai has joined #nixos
<hyper_ch> I can't get it to compile anymore... I thought it's because of newer gcc but still... not sure
<makefu> hyper_ch: you can add a preBuild Phase and run gcc --version or something similar
<hyper_ch> makefu: I get this now: /build/rtorrent-0.9.6/src/display/window_file_list.cc:72: undefined reference to `bool std::isprint<char>(char, std::locale const&)' --> I thought it was because of some change in gcc......
<{^_^}> [nixpkgs] @Emantor opened pull request #113388 → python3Packages.pyserial: patches for RFC2217 → https://github.com/NixOS/nixpkgs/pull/113388
oxalica has quit [Ping timeout: 240 seconds]
Kenguru has joined #nixos
Kenguru has quit [Quit: Leaving]
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
fabian_a has quit [Quit: Leaving]
faffolter has joined #nixos
nhs has joined #nixos
nhs has quit [Ping timeout: 240 seconds]
ManiacOfMadness` has quit [Ping timeout: 240 seconds]
dominikh has quit [Quit: WeeChat 2.9]
vrinek has joined #nixos
dominikh has joined #nixos
dominikh is now known as Guest49066
Guest49066 has quit [Client Quit]
dominikh1 has joined #nixos
fendor has joined #nixos
kenran has quit [Quit: leaving]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #108884 → blobwars: init at 2.00 → https://github.com/NixOS/nixpkgs/pull/108884
nhs has joined #nixos
thc202 has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #112941 → ruby: add option to enable jemalloc → https://github.com/NixOS/nixpkgs/pull/112941
<{^_^}> [nixpkgs] @r-ryantm opened pull request #113389 → mkgmap: 4600 -> 4601 → https://github.com/NixOS/nixpkgs/pull/113389
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #112828 → rlwrap: 0.43 -> 0.45 → https://github.com/NixOS/nixpkgs/pull/112828
nhs has quit [Ping timeout: 246 seconds]
dominikh1 has quit [Quit: WeeChat 3.0]
dominikh1 has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #112414 → hal-hardware-analyzer: 3.1.9 -> 3.2.5 → https://github.com/NixOS/nixpkgs/pull/112414
nhs has joined #nixos
n-osborne has joined #nixos
n-osborne has quit [Remote host closed the connection]
domogled has joined #nixos
<{^_^}> [nixpkgs] @equill opened pull request #113390 → sbcl: Small fixes around the phase definitions → https://github.com/NixOS/nixpkgs/pull/113390
<{^_^}> [nixpkgs] @equill closed pull request #113132 → sbcl 2.1.1: Remove debug output → https://github.com/NixOS/nixpkgs/pull/113132
nhs has quit [Ping timeout: 256 seconds]
ManiacOfMadness` has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #113112 → pritunl-ssh: init at 1.0.1674.4 → https://github.com/NixOS/nixpkgs/pull/113112
<{^_^}> [nixpkgs] @sternenseemann opened pull request #113391 → haskellPackages.yarn-lock: fix build by jailbreaking → https://github.com/NixOS/nixpkgs/pull/113391
<dupon1> Is there a channel to discuss about Simple NixOS Mailserver (and have some help)?
alexherbo2 has joined #nixos
<b42> dupon1: what's the problem?
nhs has joined #nixos
<{^_^}> [nixpkgs] @kidd closed pull request #109952 → metabase: 0.37.5 -> 0.37.7 → https://github.com/NixOS/nixpkgs/pull/109952
<{^_^}> [cabal2nix] @stevana opened pull request #482 → Remove unused code → https://github.com/NixOS/cabal2nix/pull/482
nhs has quit [Ping timeout: 240 seconds]
ManiacOfMadness` has quit [Ping timeout: 272 seconds]
ManiacOfMadness` has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #113175 → fop: 2.1 -> 2.6 → https://github.com/NixOS/nixpkgs/pull/113175
hiro98 has joined #nixos
xelxebar_ has quit [Remote host closed the connection]
xelxebar has joined #nixos
dev_mohe has joined #nixos
dev_mohe has quit [Client Quit]
neiluj has joined #nixos
neiluj has quit [Changing host]
neiluj has joined #nixos
ManiacOfMadness` has quit [Ping timeout: 272 seconds]
n-osborne has joined #nixos
nhs has joined #nixos
ManiacOfMadness` has joined #nixos
chiefgoat has joined #nixos
oxalica has joined #nixos
<{^_^}> [rfc39-record] @grahamc pushed commit from rfc39 to main « Automated team sync results. »: https://git.io/JtM48
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #113387 → python3Packages.adafruit-platformdetect: 3.1.0 -> 3.1.1 → https://github.com/NixOS/nixpkgs/pull/113387
nhs has quit [Ping timeout: 260 seconds]
thomas_adam has left #nixos ["WeeChat 2.9"]
orivej has joined #nixos
mananamenos has quit [Ping timeout: 246 seconds]
<{^_^}> [nixpkgs] @fabaff opened pull request #113393 → python3Packages.adb-shell: 0.3.0 -> 0.3.1 → https://github.com/NixOS/nixpkgs/pull/113393
Qwerky has joined #nixos
<{^_^}> [nixpkgs] @github-actions[bot] closed pull request #113383 → python3Packages.pytest-xdist: 2.1.0 -> 2.2.1 → https://github.com/NixOS/nixpkgs/pull/113383
<{^_^}> [nixpkgs] @github-actions[bot] closed pull request #113382 → python3Packages.pytest: 6.1.2 -> 6.2.2 → https://github.com/NixOS/nixpkgs/pull/113382
fuiltilt has quit [Quit: WeeChat 2.9]
Qwerky has quit [Remote host closed the connection]
nhs has joined #nixos
Boomerang has quit [Ping timeout: 265 seconds]
nhs has quit [Ping timeout: 240 seconds]
oxalica1 has joined #nixos
n-osborne has quit [Remote host closed the connection]
n-osborne has joined #nixos
cfricke has quit [Quit: WeeChat 3.0.1]
cfricke has joined #nixos
dominikh1 has quit [Quit: WeeChat 3.0]
dominikh has joined #nixos
ris has quit [Ping timeout: 264 seconds]
<{^_^}> [nixpkgs] @SuperSandro2000 reopened pull request #113382 → python3Packages.pytest: 6.1.2 -> 6.2.2 → https://github.com/NixOS/nixpkgs/pull/113382
<{^_^}> [nixpkgs] @SuperSandro2000 reopened pull request #113383 → python3Packages.pytest-xdist: 2.1.0 -> 2.2.1 → https://github.com/NixOS/nixpkgs/pull/113383
nhs has joined #nixos
dominikh[m] has joined #nixos
hiro98 has quit [Ping timeout: 246 seconds]
<{^_^}> [nixpkgs] @SuperSandro2000 opened pull request #113394 → liblinear: fix cross compile → https://github.com/NixOS/nixpkgs/pull/113394
<{^_^}> [nixpkgs] @r-ryantm opened pull request #113395 → ocamlPackages.qtest: 2.11.1 -> 2.11.2 → https://github.com/NixOS/nixpkgs/pull/113395
nhs has quit [Ping timeout: 265 seconds]
hc_ is now known as hc
alexherbo2 has quit [Quit: The Lounge - https://thelounge.chat]
Qwerky has joined #nixos
mananamenos has joined #nixos
vrinek has quit [Ping timeout: 272 seconds]
<attila_lendvai> i'm having great trouble compiling with clang using -m32 on a 64bit host. i'm using multiStdenv.mkDerivation, but the linker complains that "cannot find libgcc_s.so.1", and i cannot come up with a shell.nix to resolve that. any hints/pointers?
ris has joined #nixos
n-osborne has quit [Remote host closed the connection]
* attila_lendvai has found clangMultiStdenv and clang_multi, but it only has shifted the error to "crtbegin.o' is incompatible with i386 output"
nhs has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #113373 → neofetch: fix cross-compilation → https://github.com/NixOS/nixpkgs/pull/113373
nhs has quit [Ping timeout: 240 seconds]
lsix has quit [Ping timeout: 265 seconds]
<{^_^}> [nixpkgs] @cdepillabout merged pull request #113391 → haskellPackages.yarn-lock: fix build by jailbreaking → https://github.com/NixOS/nixpkgs/pull/113391
nhs has joined #nixos
nhs has quit [Remote host closed the connection]
tdeo has quit [Ping timeout: 260 seconds]
diamondburned has quit [Ping timeout: 260 seconds]
diamondburned has joined #nixos
tdeo has joined #nixos
graf_blutwurst has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @iblech opened pull request #113396 → haskellPackages.Agda: unbreak the build by dropping a (by now) unnecessary patch → https://github.com/NixOS/nixpkgs/pull/113396
Qwerky has quit [Remote host closed the connection]
graf_blutwurst has joined #nixos
nly has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #113397 → openfortivpn: 1.15.0 -> 1.16.0 → https://github.com/NixOS/nixpkgs/pull/113397
<{^_^}> [nixpkgs] @worldofpeace merged pull request #113388 → python3Packages.pyserial: patches for RFC2217 → https://github.com/NixOS/nixpkgs/pull/113388
<{^_^}> [nixpkgs] @adisbladis merged pull request #113377 → boringssl: fix aarch64-linux build → https://github.com/NixOS/nixpkgs/pull/113377
<nly> nix-shell -p haskellPackages.ghcWithPackages[ pkg1 pkg2 etc... ]
<nly> is there similar for lua?
berberman_ has joined #nixos
berberman has quit [Ping timeout: 260 seconds]
<adisbladis> nly: lua.withPackages(lpkgs: []) seems to be a thing
nhs has joined #nixos
<nly> thanks
<nly> how did you find that?
berberman_ has quit [Max SendQ exceeded]
<adisbladis> Just intuition
<adisbladis> I assumed it had some kind of withPackages functionality
<adisbladis> Then there is one of 2 options: Either withPackages is tacked on to the interpreter, or the package set
berberman has joined #nixos
Qwerky has joined #nixos
nhs has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @danieldk merged pull request #113394 → liblinear: fix cross compile → https://github.com/NixOS/nixpkgs/pull/113394
<{^_^}> [nixpkgs] @iblech closed pull request #113396 → haskellPackages.Agda: unbreak the build by dropping a (by now) unnecessary patch → https://github.com/NixOS/nixpkgs/pull/113396
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #113098 → various cleanups, pythonPackages.uproot3: 3.14.2 -> 3.14.4, pythonPackages.hstspreload: 2020.12.22 -> 2021.2.1, python39… → https://github.com/NixOS/nixpkgs/pull/113098
Qwerky has quit [Ping timeout: 256 seconds]
<nly> no field package.preload['matrix']
<nly> no file '/nix/store/9p4rdb3rs2j5mympsqpfcrkri2md42cn-lua-5.2.4-env/share/lua/5.2/matrix.lua'
<nly>
<nly> ah crap
<{^_^}> [nixpkgs] @flokli merged pull request #113386 → [20.09] gitlab: 13.6.1 -> 13.6.7 → https://github.com/NixOS/nixpkgs/pull/113386
<nly> i wanna add ./foo to lua module path
<nly> wrong channel
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #113369 → microscheme: refactor, fix build on darwin and cross-compilation → https://github.com/NixOS/nixpkgs/pull/113369
<nly> thanks
nly has left #nixos ["ERC (IRC client for Emacs 27.1)"]
ppom[m] has joined #nixos
hiro98 has joined #nixos
nhs has joined #nixos
cfricke has quit [Ping timeout: 264 seconds]
<{^_^}> [nixpkgs] @flokli opened pull request #113398 → casync: 2-219-ga8f6c84 -> 2-219-ga8f6c84 → https://github.com/NixOS/nixpkgs/pull/113398
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #113372 → python3Packages.pylint: 2.6.0 -> 2.6.2 → https://github.com/NixOS/nixpkgs/pull/113372
alexherbo2 has joined #nixos
<aranea> I know how nixos merges sets that are defined by multiple modules. But how can I make a module *remove* a key from a set that has been defined by a different module?
<{^_^}> [nixpkgs] @danieldk opened pull request #113399 → maturin: 0.9.1 -> 0.9.3 → https://github.com/NixOS/nixpkgs/pull/113399
<V> aranea: mkForce?
nhs has quit [Ping timeout: 256 seconds]
<aranea> V: I'd like to remove the key entirely, not just override its value.
<V> hmm, unsure. I've had to deal with this in at least one place (shell aliases) and ended up just removing it from my copy of nixpkgs
<aranea> yeah, I don't have to patch my nixpkgs repo so far, so I'm trying to avoid that
n-osborne has joined #nixos
jjakob has quit [Quit: Either I'm rebooting or Quassel died again.]
<adisbladis> One possible solution is to mkForce the key one level up
<adisbladis> But it's not generally applicable
<aranea> yeah, there are a bunch of other keys in there that I don't want to touch
Boomerang has joined #nixos
<aranea> if I could somehow access the old value of the entire set, that'd work
<aranea> then I'd do a set difference
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #113379 → octant: 0.16.0 -> 0.17.0 → https://github.com/NixOS/nixpkgs/pull/113379
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #111654 → octant: refactor → https://github.com/NixOS/nixpkgs/pull/111654
lsix has joined #nixos
jjakob has joined #nixos
n-osborne has quit [Remote host closed the connection]
nhs has joined #nixos
Qwerky has joined #nixos
n-osborne has joined #nixos
hiro98 has quit [Quit: hiro98]
hiro99 has joined #nixos
n-osborne has quit [Remote host closed the connection]
<bqv> aranea: I hate that problem. The module system's great until that happens
n-osborne has joined #nixos
hiro99 is now known as hiro98
<aranea> the set which I'm trying to override here is security.wrappers; I guess I could try to get a patch upstreamed that adds an 'enable' key to wrapper definitions.
meh` has joined #nixos
<aranea> I could also just set permissions to a bogus value to make it create useless wrappers, but meh.
nhs has quit [Ping timeout: 246 seconds]
sangoma has quit [Quit: WeeChat 3.0]
<bqv> Yeah, I think id do that in the mean
DevilFather[m] has joined #nixos
Qwerky has quit [Ping timeout: 240 seconds]
nly has joined #nixos
<infinisil> aranea: Not possible at the moment
<infinisil> If I had more time I'd look into this a bit closer, I think something like https://github.com/NixOS/nixpkgs/pull/63553 might be needed
<{^_^}> #63553 (by rhendric, 1 year ago, open): lib/modules: add mkUnset, mkOverrideUnset
<aranea> *nod*, thanks for the confirmation
<infinisil> Currently the way to get around this is on the module definition itself, where one could introduce a special value like `null` which has the same meaning as there being no key at all
<infinisil> (problematic when `null` already has a meaning though, e.g. for config files formats that support null)
<aranea> right, or an enable key
domogled1 has joined #nixos
nhs has joined #nixos
domogled has quit [Ping timeout: 272 seconds]
domogled1 is now known as domogled
thc202 has quit [Ping timeout: 240 seconds]
<aranea> hrm, I'm confused
<aranea> there are multiple other places in my config file where I'm overriding values with lib.mkOverride and it works perfectly fine
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #113126 → vimPlugins: Ignore empty commits in update.py → https://github.com/NixOS/nixpkgs/pull/113126
<aranea> But trying to override security.wrappers.programName.permissions just doesn't work
<aranea> whether I try it with lib.mkOverride or without
domogled has quit [Ping timeout: 265 seconds]
<aranea> the change doesn't show up in the nixos-option output, and it doesn't take effect either
fuzzypixelz has joined #nixos
cornfeedhobo has quit [Ping timeout: 260 seconds]
nhs has quit [Ping timeout: 272 seconds]
lsix has quit [Remote host closed the connection]
zebrag has joined #nixos
lsix has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #109842 → fwanalyzer: init at 1.4.3 → https://github.com/NixOS/nixpkgs/pull/109842
jrm has joined #nixos
civodul has joined #nixos
<infinisil> aranea: Oh yeah iirc that option doesn't have a type defined, which messes up all kind sof things
<infinisil> Oh yeah it uses lib.types.attrs, which should be deprecated and removed
<aranea> ohhh, that makes sense
<aranea> so there's no descent into the sets below it
<infinisil> aranea: The type should be changed to a proper submodule here: https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/security/wrappers/default.nix#L98
thc202 has joined #nixos
<infinisil> Yeah, types.attrs is a stupid `//` merge
<{^_^}> [nixpkgs] @aanderse opened pull request #113400 → logrotate: minor cleanup → https://github.com/NixOS/nixpkgs/pull/113400
<aranea> right, I'll write a pr for that later today, then
<aranea> thanks :)
<infinisil> Awesome :D
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #112068 → qt3: remove → https://github.com/NixOS/nixpkgs/pull/112068
<dupon1> b42: I have an error with OpenDKIM but it tells me nothing (with journalctl)
n-osborne has quit [Remote host closed the connection]
n-osborne has joined #nixos
<bqv> supersandro2000: #100078
<{^_^}> https://github.com/NixOS/nixpkgs/pull/100078 (by mdevlamynck, 18 weeks ago, open): grub2: fix grub-kbdcomp
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #112901 → clpm: 0.3.5 -> 0.3.6 → https://github.com/NixOS/nixpkgs/pull/112901
nhs has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #112895 → lice: 0.4 -> 0.6 → https://github.com/NixOS/nixpkgs/pull/112895
Qwerky has joined #nixos
nhs has quit [Ping timeout: 240 seconds]
Qwerky has quit [Ping timeout: 246 seconds]
alexherbo2 has quit [Ping timeout: 265 seconds]
zebrag has quit [Quit: Konversation terminated!]
zebrag has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #113345 → cleanups, various add import check, remove unused input → https://github.com/NixOS/nixpkgs/pull/113345
tsrt^ has joined #nixos
nschoe has joined #nixos
nhs has joined #nixos
bitmapper has joined #nixos
waleee-cl has joined #nixos
nhs has quit [Ping timeout: 260 seconds]
nhs has joined #nixos
ris has quit [Ping timeout: 260 seconds]
zupo has joined #nixos
ris has joined #nixos
rb2k has joined #nixos
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<{^_^}> [nixpkgs] @NeQuissimus merged pull request #113194 → linux_5_10: 5.10.15 -> 5.10.16, linux_5_11: init at 5.11 → https://github.com/NixOS/nixpkgs/pull/113194
fuzzypixelz14 has joined #nixos
fuzzypixelz has quit [Ping timeout: 240 seconds]
<{^_^}> [nixpkgs] @hrdinka merged pull request #112523 → osm-gps-map: 1.1.0 -> 1.2.0 → https://github.com/NixOS/nixpkgs/pull/112523
<{^_^}> [nixpkgs] @erictapen merged pull request #113355 → nixos/mastodon: fix group membership for nginx → https://github.com/NixOS/nixpkgs/pull/113355
<ronthecookie> i'm trying to get meshroom running (python27 app, from source) and it is complaining it cant find enum even when i add enum to my shell.nix: https://termbin.com/r8rk
fuzzypixelz14 has quit [Quit: Connection closed]
sigmundv has quit [Read error: Connection reset by peer]
marcusr has quit [Remote host closed the connection]
sigmundv has joined #nixos
marcusr has joined #nixos
<attila_lendvai> how can i reference the final directory of my package in a postInstall script? i assume susbstituteAll and @out@ won't work, because $out is a temp directory?
rb2k has quit [Ping timeout: 265 seconds]
<ronthecookie> hell yeah i don't have to suffer! there's a docker image!
n-osborne has quit [Remote host closed the connection]
rb2k has joined #nixos
<supersandro2000> bqv: taking a look at that later
poscat has joined #nixos
<supersandro2000> ronthecookie: I don't think you created the python environment the right way
<ronthecookie> how so?
<supersandro2000> attila_lendvai: ${placeholder "out"}
<supersandro2000> ronthecookie: https://nixos.wiki/wiki/Python
<ronthecookie> supersandro2000: i know, that's where i got the base of that from
n-osborne has joined #nixos
<supersandro2000> maybe I didn't look right
<attila_lendvai> supersandro2000, thanks! and is there a version of this that i can put into the file that will be substituteAll'ed?
Qwerky has joined #nixos
<{^_^}> [nix] @edolstra pushed to master « Restore warning about 'nix' being experimental »: https://git.io/JtMwh
n-osborne has quit [Remote host closed the connection]
n-osborne has joined #nixos
n-osborne has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @siraben opened pull request #113402 → zasm: 4.2.6 -> 4.4.7, fix darwin build and cross-compilation → https://github.com/NixOS/nixpkgs/pull/113402
mkaito has joined #nixos
mkaito has quit [Changing host]
mkaito has joined #nixos
zebrag has quit [Quit: Konversation terminated!]
zebrag has joined #nixos
<{^_^}> [nixpkgs] @primeos merged pull request #113368 → chromium: 88.0.4324.150 -> 88.0.4324.182 → https://github.com/NixOS/nixpkgs/pull/113368
<{^_^}> [nixpkgs] @NeQuissimus pushed 7 commits to master: https://git.io/JtMry
<veleiro> if i have a postgres module enabled, when I enable another module that also says "service.postgres.enable = true;" and maybe more postgres settings, are they merged or is one ignored?
<{^_^}> [nixpkgs] @NeQuissimus pushed 7 commits to release-20.09: https://git.io/JtMov
xelxebar has quit [Remote host closed the connection]
xelxebar has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #100472 → terminator: 1.92 -> 2.1.0 → https://github.com/NixOS/nixpkgs/pull/100472
pie_ has joined #nixos
vancz_ has joined #nixos
<{^_^}> [nixpkgs] @ajs124 merged pull request #113350 → nginxMainline: 1.19.6 -> 1.19.7 → https://github.com/NixOS/nixpkgs/pull/113350
thc202 has quit [Ping timeout: 240 seconds]
mananamenos has quit [Read error: Connection reset by peer]
thc202 has joined #nixos
Morfio has joined #nixos
<{^_^}> [nixpkgs] @primeos opened pull request #113404 → [20.09] chromium: 88.0.4324.150 -> 88.0.4324.182 → https://github.com/NixOS/nixpkgs/pull/113404
rb2k_ has joined #nixos
astronavt has quit [Quit: ...]
rb2k has quit [Ping timeout: 260 seconds]
jonringer has joined #nixos
<{^_^}> [nixpkgs] @siraben opened pull request #113405 → gambit: refactor → https://github.com/NixOS/nixpkgs/pull/113405
<{^_^}> [nixpkgs] @fabaff opened pull request #113406 → python3Package.mocket: 3.9.39 -> 3.9.40 → https://github.com/NixOS/nixpkgs/pull/113406
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #113079 → wget2: init at 1.99.2 → https://github.com/NixOS/nixpkgs/pull/113079
<{^_^}> [nixpkgs] @NeQuissimus pushed 2 commits to master: https://git.io/JtMK8
<{^_^}> [nixpkgs] @NeQuissimus pushed to release-20.09 « linux: Disable BFQ scheduler »: https://git.io/JtMKB
<{^_^}> [nix] @edolstra pushed to boost-regex « Use Boost's regex implementation instead of libstdc++'s »: https://git.io/JtMK6
<{^_^}> [nixpkgs] @NeQuissimus pushed to master « Revert "Revert "linux: 5.10.16 -> 5.10.17"" »: https://git.io/JtMKS
<{^_^}> [nixpkgs] @figsoda opened pull request #113407 → luaformatter: init at 1.3.4 → https://github.com/NixOS/nixpkgs/pull/113407
<{^_^}> [nix] @edolstra pushed to boost-regex « Use Boost's regex implementation instead of libstdc++'s »: https://git.io/JtMKH
sangoma has joined #nixos
rb2k_ has quit [Ping timeout: 240 seconds]
lsix has quit [Ping timeout: 240 seconds]
davidv7 has quit [Remote host closed the connection]
lsix has joined #nixos
rb2k has joined #nixos
andreas303 has quit [Remote host closed the connection]
davidv7 has joined #nixos
andreas303 has joined #nixos
mizu_no_oto has joined #nixos
<{^_^}> [nixpkgs] @adisbladis merged pull request #113398 → casync: 2-219-ga8f6c84 -> 2-219-ga8f6c84 → https://github.com/NixOS/nixpkgs/pull/113398
Qwerky_ has joined #nixos
<{^_^}> [nixpkgs] @edwtjo merged pull request #113268 → i2pd: 2.35.0 -> 2.36.0 → https://github.com/NixOS/nixpkgs/pull/113268
<{^_^}> [nixpkgs] @jonringer merged pull request #107344 → jetbrains: replace overrideDerivation with overrideAttr → https://github.com/NixOS/nixpkgs/pull/107344
<adisbladis> veleiro: They are merged
rb2k has quit [Ping timeout: 264 seconds]
Qwerky has quit [Ping timeout: 240 seconds]
<ronthecookie> i'm trying to use steam-run to run this binary but it complains about a missing gssapi lib, how would i go about adding that?
<{^_^}> [nixpkgs] @edwtjo merged pull request #112268 → Add 'extraLdPath' option to JetBrains products & Fix JDK download fea… → https://github.com/NixOS/nixpkgs/pull/112268
Jd007 has joined #nixos
cirno-1000 has joined #nixos
rb2k has joined #nixos
gustavderdrache has joined #nixos
mizu_no_oto has quit [Quit: Computer has gone to sleep.]
zebrag has quit [Quit: Konversation terminated!]
zebrag has joined #nixos
<{^_^}> [nixpkgs] @github-actions[bot] closed pull request #113349 → hdfview: 2.14 -> 3.1.2 → https://github.com/NixOS/nixpkgs/pull/113349
<{^_^}> [nixpkgs] @edwtjo merged pull request #112788 → ezquake: 3.2.2 -> 3.2.3 → https://github.com/NixOS/nixpkgs/pull/112788
<{^_^}> [nixpkgs] @rhoriguchi opened pull request #113409 → vscode-extensions.hashicorp.terraform: Init at 2.6.0 → https://github.com/NixOS/nixpkgs/pull/113409
n-osborne has joined #nixos
n-osborne has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @jerith666 opened pull request #113410 → eclipses.plugins.freemarker: init at 1.5.305 → https://github.com/NixOS/nixpkgs/pull/113410
proofofkeags has joined #nixos
<{^_^}> [nix] @edolstra pushed to master « nix develop: Fix quoted string handling »: https://git.io/JtMiz
philr has quit [Ping timeout: 265 seconds]
<{^_^}> [nixpkgs] @danieldk merged pull request #113378 → knightos: reduce build time dependency graph → https://github.com/NixOS/nixpkgs/pull/113378
<{^_^}> [nixpkgs] @mbarak closed pull request #83779 → Package ruby-debug-ide → https://github.com/NixOS/nixpkgs/pull/83779
<{^_^}> [nixpkgs] @jonringer merged pull request #109946 → [20.09] cawbird: 1.2.1 -> 1.3.2 → https://github.com/NixOS/nixpkgs/pull/109946
<{^_^}> [nix] @edolstra pushed to master « nix flake show: Handle 'overlays' output »: https://git.io/JtMPz
<lordcirth> nixos-build-vms fails with "value is a string while a set was expected" in modules.nix. What's wrong with my syntax? https://github.com/lordcirth/ipfs-cluster-test/blob/master/vms.nix
Qwerky has joined #nixos
<ambroisie> Hey people, I'm trying to set up Wireguard as a VPN provider on my server
Qwerky_ has quit [Ping timeout: 240 seconds]
mizu_no_oto has joined #nixos
mizu_no_oto has quit [Remote host closed the connection]
<ambroisie> I am managing to create a tunnel from my phone to the server, but it seems like any communication with the internet at large is dropped
<ambroisie> I tried to follow the wiki using both the `wireguard.interfaces` and `wg-quick` paired with `dnsmasq` method
<ambroisie> Neither seems to be working
<lordcirth> ambroisie, you might need a firewall exception to forward traffic?
<ambroisie> lordcirth: I am already opening the UDP port in the firewall
<lordcirth> ambroisie, not the VPN connection, I mean for the traffic it forwards to the internet
<ambroisie> lordcirth: how so ?
<{^_^}> [nixpkgs] @kidd opened pull request #113411 → metabase: 0.37.8 -> 0.38.0 → https://github.com/NixOS/nixpkgs/pull/113411
<{^_^}> [nixpkgs] @edwtjo merged pull request #62160 → nixos/mlmmj: add more list headers → https://github.com/NixOS/nixpkgs/pull/62160
iv_nn[m] has quit [Quit: Idle for 30+ days]
<lordcirth> ambroisie, you followed this? https://nixos.wiki/wiki/Wireguard Did you leave the IPs the same?
<{^_^}> [nixpkgs] @edwtjo merged pull request #62159 → nixos/mlmmj: use appropriate postfix options → https://github.com/NixOS/nixpkgs/pull/62159
<ambroisie> lordcirth: not quite, I'm using `10.0.0.0/24` subnet
<{^_^}> [nixpkgs] @ajs124 pushed to master « projectm: remove myself as maintainer »: https://git.io/JtMPA
mallox has quit [Quit: WeeChat 3.0.1]
<lordcirth> ambroisie, and the clients get an address correctly? Their route gets set? They can ping the VPN's internal IP, but not the internet?
<ambroisie> Yeah I can ping the server's internal IP, I also checked with the netcat command from the Arch Wiki so I am sure the tunnel is working correctly
<ambroisie> Similarly the server can ping the phone's internal IP
zupo has joined #nixos
<{^_^}> [nixpkgs] @flokli pushed to master « casync: update license from lgpl21 to lgpl21Plus »: https://git.io/JtMXJ
<ambroisie> But I cannot do `ping 8.8.8.8` from the phone
mallox has joined #nixos
<ambroisie> How can I check if the routes get set properly ?
<lordcirth> ambroisie, on a Linux client, "ip route" or "route".
<{^_^}> [rfc39-record] @grahamc pushed commit from rfc39 to main « Automated team sync results. »: https://git.io/JtMXO
<lordcirth> an android terminal would probably work if you can plug in a full keyboard
<ambroisie> https://pastebin.com/EqPPnawm on the server
<ambroisie> https://pastebin.com/Afmp0v7g on the phone
<lordcirth> So no, there's no route for wireguard
zupo has quit [Client Quit]
<ambroisie> lordcirth: but when I am using wireguard on another server (which *does* allow me to connect to the internet) I do not see any difference on the phone
lord| has quit [Ping timeout: 272 seconds]
nly has left #nixos ["ERC (IRC client for Emacs 27.1)"]
<lordcirth> ambroisie, well, perhaps there is android weirdness going on
<ambroisie> Mmmmh...
<ambroisie> I'll try with the laptop real quick, see if anything changes
lord| has joined #nixos
plumm has joined #nixos
<{^_^}> [nix] @edolstra pushed to master « Make 'nix --version -vv' work »: https://git.io/JtMXV
<ambroisie> https://pastebin.com/GxeNuFPj laptop routes
tarruda2 has quit [Ping timeout: 240 seconds]
<lordcirth> ambroisie, what about with the working server?
<ambroisie> And the routes are once again the exact same wheteher I am using the NixOS server or the previous server
ManiacOfMadness` has quit [Ping timeout: 272 seconds]
<sterni> veleiro: module configurations get merged usually
o1lo01ol1o has joined #nixos
<lordcirth> ambroisie, weird. I'm not familiar with wireguard specifically, but normally a VPN needs to replace the default route to send traffic down the tunnel.
<lordcirth> Must be some shenanigans happening inside the kernel.
<ambroisie> Probably... I'll go see if the #wireguard people can help
<ambroisie> Thanks for your time lordcirth
<dutchie> with wireguard, the AllowedIPs for a remote host are punned to be the routes used for outgoing traffic
<dutchie> so you should set that to 0.0.0.0/0 and ::/0 if you want all traffic to go down the tunnel
zn81 has joined #nixos
<zn81> Why does the nixos install manual say that the first step on the initial post-install reboot is to run `passwd` as root? I'm confused because `nixos-install` prompted for a root password as the final step.
tarruda2 has joined #nixos
<{^_^}> [nixpkgs] @Ma27 merged pull request #113323 → nixos/nextcloud: DAV .well-known redirect fix → https://github.com/NixOS/nixpkgs/pull/113323
Compilador has joined #nixos
Compilador has quit [Client Quit]
<ambroisie> dutchie: I set them up according to what's written in the wiki if that's what you mean
erasmas has joined #nixos
Qwerky has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @danieldk opened pull request #113412 → python3Packages.cvxpy: 1.1.8 -> 1.1.10 → https://github.com/NixOS/nixpkgs/pull/113412
respawn_ has joined #nixos
<{^_^}> [nixpkgs] @tcbravo opened pull request #113413 → ashuffle: 3.4.0 -> 3.10.1 → https://github.com/NixOS/nixpkgs/pull/113413
<lordcirth> zn81, there are alternate methods, like the --no-root-passwd mentioned above, that wouldn't set a password. But it should be clarified
sangoma has quit [Ping timeout: 256 seconds]
<{^_^}> [nix] @edolstra pushed to master « Throw an error if --arg / --argstr is used with a flake »: https://git.io/JtM11
<dutchie> ambroisie: yeah, i missed that the client setups had zeroed them... i'm confused if that isn't working then
<{^_^}> [nixpkgs] @Ma27 pushed commit from @witchof0x20 to release-20.09 « nixos/nextcloud: DAV .well-known redirect fix »: https://git.io/JtM1H
graf_blutwurst has quit [Quit: WeeChat 3.0]
n-osborne has joined #nixos
<{^_^}> [nixpkgs] @r-ryantm opened pull request #113414 → php73Packages.phpstan: 0.12.74 -> 0.12.76 → https://github.com/NixOS/nixpkgs/pull/113414
zebrag has quit [Quit: Konversation terminated!]
<{^_^}> [nixpkgs] @mweinelt merged pull request #110717 → python3Packages.labgrid: init at 0.3.1 → https://github.com/NixOS/nixpkgs/pull/110717
zebrag has joined #nixos
zupo has joined #nixos
<veleiro> thanks adisbladis !
whald has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @vbgl merged pull request #113221 → ocaml-sha: init at 1.13 → https://github.com/NixOS/nixpkgs/pull/113221
ahmedelgabri has joined #nixos
nomeata has joined #nixos
fendor has quit [Remote host closed the connection]
mallox has quit [Quit: WeeChat 3.0.1]
g-w1 has joined #nixos
<g-w1> are there some hacks to get AppImages to work on nixos? I get no file or directory which I assumed was a dynamic linking error but ldd says its statically linked?
greety has joined #nixos
jimmiehansson has quit [Remote host closed the connection]
ahmedelgabri has quit [Ping timeout: 265 seconds]
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<sterni> g-w1: there is appImageTools in nixpkgs, to wrap AppImages in order to make them work
nomeata has quit [Quit: Client exiting]
<g-w1> ah thx
<g-w1> what is it called? nix search doesn't yeild it
<g-w1> awesome!
<sterni> I think you can't really work around making a nix expression for the given appImage
<g-w1> i just wanted to run one so this works
<{^_^}> [nix] @edolstra pushed to master « nix run: Allow program name to be set in meta.mainProgram »: https://git.io/JtMMN
<{^_^}> [nixpkgs] @edolstra pushed 2 commits to master: https://git.io/JtMMp
<sterni> but the simple variant described in the manual is enough mostly unless you want to have working .desktop entries etc. when installed
<{^_^}> [nix] @edolstra pushed to master « Document meta.mainProgram »: https://git.io/JtMDY
srk has quit [Remote host closed the connection]
srk has joined #nixos
g-w1 has left #nixos ["WeeChat 2.7.1"]
nhs has quit [Ping timeout: 256 seconds]
<{^_^}> [nixpkgs] @OPNA2608 opened pull request #113415 → [20.09] bambootracker: 0.4.5 -> 0.4.6 → https://github.com/NixOS/nixpkgs/pull/113415
alexherbo2 has joined #nixos
greety has left #nixos [#nixos]
lsix has quit [Ping timeout: 264 seconds]
<{^_^}> [nixpkgs] @sternenseemann opened pull request #113416 → ocamlPackages.uucp: use throw instead of lib.assertMsg → https://github.com/NixOS/nixpkgs/pull/113416
<{^_^}> [rfc39-record] @grahamc pushed commit from rfc39 to main « Automated team sync results. »: https://git.io/JtMD6
<Cadey> can i use the nixos firewall to block all outgoing UDP connections except for DNS?
<{^_^}> [nixpkgs] @vbgl opened pull request #113417 → ocamlPackages.psmt2-frontend: 0.2 → 0.3.1 → https://github.com/NixOS/nixpkgs/pull/113417
<qyliss> Cadey: yes -- does it not do that by default?
<qyliss> you (or NixOS modules) have to put UDP and TCP ports in an allowlist for them to be let through the firewall
<Cadey> _outgoing_ not _incoming_
<qyliss> oh sorry
<qyliss> in that case I'm not sure
nhs has joined #nixos
slack1256 has joined #nixos
<{^_^}> [nixpkgs] @astro reopened pull request #113349 → hdfview: 2.14 -> 3.1.2 → https://github.com/NixOS/nixpkgs/pull/113349
lsix has joined #nixos
<ToxicFrog> You can insert arbitrary iptables commands into the nixos firewall configuration, so if you know iptables you can presumably do it that way
<mcint> I'm building a nixos container, and having issues booting it. "kernel does not support pidfs" and "__safe_mount_beneath_at - function not implemented" for the basic devices (null, tty, console, ...)
<mcint> the raw.lxc api has changed a bit, but it seems like this is indicative of something missing/misconfigured in the root image I built with nix
nhs has quit [Ping timeout: 256 seconds]
nhs has joined #nixos
Mrmaxmeier has quit [Remote host closed the connection]
<{^_^}> [cabal2nix] @peti merged pull request #482 → Remove unused code → https://github.com/NixOS/cabal2nix/pull/482
<simpson> mcint: Keep in mind that we don't actually support those techniques, so you're somewhat on your own. Do you *really* need NixOS inside the container, or is it enough to have anything from nixpkgs?
ahmedelgabri has joined #nixos
slack1256 has quit [Ping timeout: 265 seconds]
n-osborne has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @vbgl merged pull request #113416 → ocamlPackages.uucp: use throw instead of lib.assertMsg → https://github.com/NixOS/nixpkgs/pull/113416
<zn81> Can I configure the nixos boot sequence so that it does _not_ block on DHCP while still continuing to establish an IP address asynchronously?
shibboleth has joined #nixos
nhs has quit [Ping timeout: 260 seconds]
malook has joined #nixos
malook has quit [Quit: malook]
<hyper_ch> zn81: what are you trying to achieve?
<mcint> simpson: thanks, i get that. I use nixpkgs directly on my own machines, and I'm so happy with it, that I want to package things myself to install them on darwin. but in this case, yes, for a shared machine, and showing off the ease of use...once i have it working
Qwerky has joined #nixos
<simpson> mcint: Good luck.
ahmedelgabri has quit [Ping timeout: 268 seconds]
nhs has joined #nixos
Morfio has quit [Quit: Leaving]
meh` has quit [Ping timeout: 240 seconds]
lord| has quit [Quit: https://i.imgur.com/xacQ09F.mp4]
zebrag has quit [Quit: Konversation terminated!]
zebrag has joined #nixos
n-osborne has joined #nixos
nhs has quit [Ping timeout: 246 seconds]
<bqv> Ericson2314: hello, any news on nix-ipfs? you said to ping (again) :)
nhs has joined #nixos
<bqv> oh look, even the NHS uses nixos
<tpw_rules> so i can override an input to a flake that's an input to my flake with .follows. but how can i set my flake to use that other flake's input?
<zn81> On `nixos-rebuild build` I get a `trace` warning that the password hash of a user may be invalid. I cannot log in as that user. I generated the password with `mkpasswd -m sha512crypt -R <big number> > /path/to/password/file`, then in `configuration.nix` in that user entry I have `hashedPassword = builtins.readFile /path/to/password/file`.
ahmedelgabri has joined #nixos
<zn81> Do I need to select different options for `mkpasswd` or can I somehow enable support for sha512 passwords with big round counts?
<zn81> I get the same error if I do not use any special args for `mkpasswd`.
<zn81> -oh, I should look up `hashedPassword`. I just assumed it'd be a string that was the output of `mkpasswd` based on the nixos install manual…
<zn81> Oh, looks like I must use exactly `-m sha-512` with no `-R` as the arguments. Might be nice to inline an example in the manual's user config section. Where is the source to the nixos manual?
nhs has quit [Ping timeout: 246 seconds]
<zn81> Hm, this time there was no warning message but I still can't log in…
ahmedelgabri has quit [Ping timeout: 265 seconds]
Darkmatter66 has joined #nixos
zupo has joined #nixos
iqubic` has joined #nixos
IRCsum has quit [Remote host closed the connection]
rajivr has quit [Quit: Connection closed for inactivity]
iqubic has quit [Ping timeout: 264 seconds]
IRCsum has joined #nixos
<lordcirth> nixos-build-vms fails with "value is a string while a set was expected" in modules.nix. What's wrong with my syntax? https://github.com/lordcirth/ipfs-cluster-test/blob/master/vms.nix
saschagrunert has quit [Remote host closed the connection]
fendor has joined #nixos
ManiacOfMadness` has joined #nixos
<zn81> My first glance at https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/config/users-groups.nix#L637-L644 suggests that the regex doesn't match the output of `mkpasswd -m sha-512` that I see, but I'm not certain of this at all yet, since I was just squinting hard and not testing/verifying things…
Mic92 has quit [Quit: WeeChat 3.0]
<lordcirth> wat? commenting out "system" fixes it??
Mic92 has joined #nixos
lordcirth_ has joined #nixos
raghavgururajan has quit [Quit: Gateway shutdown]
Darkmatter66 has quit [Ping timeout: 272 seconds]
vrinek has joined #nixos
nhs has joined #nixos
lordcirth has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @alyssais pushed to master « Revert "ripgrep: Set app program name" »: https://git.io/JtM93
<mcint> (my image worked anyway, despite the device errors logged on boot)
<mcint> topic link could be fixed s_https://andiscourse_https://discourse_ in the first link
<Ericson2314> bqv: oh i'll have to check out the NHS thing
<Ericson2314> bqv: a proposal is submitted and we are waiting to here back
<Ericson2314> so ball is out of our court
vrinek has quit [Ping timeout: 272 seconds]
<mcint> ,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
Darkmatter66 has joined #nixos
ManiacOfMadness` has quit [Ping timeout: 272 seconds]
plumm has quit [Quit: My Mac Pro has gone to sleep. ZZZzzz…]
hiro98 has quit [Ping timeout: 246 seconds]
nschoe has quit [Ping timeout: 246 seconds]
lord| has joined #nixos
plumm has joined #nixos
<infinisil> mcint: Not sure what you mean, there's no "andiscourse" in the topic
<mcint> huh, sure enough, client issue, fixed after refresh
<infinisil> :)
awmv has joined #nixos
<awmv> I'm looking for a guide for a Raspberry Pi 4B. Anyone using NixOS on a Pi?
<awmv> "Available in Nixpkgs downstream but experimental."
<simpson> awmv: #nixos-aarch64 is a dedicated channel. https://nixos.wiki/wiki/NixOS_on_ARM/Raspberry_Pi_4 has instructions.
plumm has quit [Quit: My Mac Pro has gone to sleep. ZZZzzz…]
jess has quit [Quit: updates]
lsix has quit [Ping timeout: 268 seconds]
<lordcirth_> How do I pass the equivalent of -I nixpkgs=~/gitRepos/nixpkgs to nixos-build-vms ?
n-osborne has quit [Remote host closed the connection]
herrin has quit [Quit: Connection closed]
<{^_^}> [nixpkgs] @Chili-Man opened pull request #113478 → terraform_0_14: 0.14.6 -> 0.14.7 → https://github.com/NixOS/nixpkgs/pull/113478
<bqv> Ericson2314: i was joking. i was noting the that there's a person who seems to join and quit every half hour or so called 'nhs'
<bqv> Ericson2314: fair enough though
<Ericson2314> ohhhh
<Ericson2314> oh well
<Ericson2314> :)
cseder has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<{^_^}> [nixpkgs] @ethancedwards8 opened pull request #113479 → piston-cli: 1.2.1 -> 1.2.2 → https://github.com/NixOS/nixpkgs/pull/113479
slack1256 has joined #nixos
<{^_^}> [nixpkgs] @MayNiklas opened pull request #113480 → plex: 1.21.3.4021-5a0a3e4b2 -> 1.21.3.4046-3c1c83ba4 → https://github.com/NixOS/nixpkgs/pull/113480
<{^_^}> [nixpkgs] @r-ryantm opened pull request #113481 → python37Packages.docrep: 0.3.1 -> 0.3.2 → https://github.com/NixOS/nixpkgs/pull/113481
zupo has quit [Ping timeout: 246 seconds]
<tpw_rules> i'm getting error 530 for some paths from cachix: unable to download 'https://ros.cachix.org/nar/6e1f461b7e57131197042f81a6ca11f6f2d002f01a5323a4239b0c5aa87c8d0e.nar.xz': HTTP error 530 (''); retrying in 2331 ms any idea why?
<domenkozar[m]> tpw_rules: DNS issues with storage provider
zupo has joined #nixos
<bqv> ah, so that wasn't just me
<tpw_rules> is that a thing i can do anything about? passing --fallback just causes nix develop to crash shortly thereafter: "terminate called after throwing an instance of 'nix::SubstituterDisabled'"
<domenkozar[m]> give me 10min :)
<tpw_rules> okay cool, thank you
<{^_^}> [nixpkgs] @r-ryantm opened pull request #113482 → python37Packages.django-auth-ldap: 2.2.0 -> 2.3.0 → https://github.com/NixOS/nixpkgs/pull/113482
cole-h has joined #nixos
mver72 has joined #nixos
mver72 has quit [Client Quit]
<{^_^}> [nixpkgs] @rileyinman opened pull request #113484 → iosevkaa: 4.5.0 -> 5.0.2 → https://github.com/NixOS/nixpkgs/pull/113484
Qwerky has quit [Remote host closed the connection]
alexherbo2 has quit [Ping timeout: 260 seconds]
<{^_^}> [nixpkgs] @rileyinman opened pull request #113485 → iosevka-bin: 4.5.0 -> 5.0.2 → https://github.com/NixOS/nixpkgs/pull/113485
shibboleth has quit [Remote host closed the connection]
shibboleth has joined #nixos
shibboleth has quit [Remote host closed the connection]
berberman_ has joined #nixos
hiro98 has joined #nixos
berberman has quit [Ping timeout: 264 seconds]
<{^_^}> [nixpkgs] @nlewo merged pull request #112566 → yq-go: 4.4.1 -> 4.5.0 → https://github.com/NixOS/nixpkgs/pull/112566
respawn_ has quit [Quit: Leaving]
cornfeedhobo has joined #nixos
hiro98 has quit [Quit: hiro98]
<{^_^}> Channel nixos-20.09-small advanced to https://github.com/NixOS/nixpkgs/commit/c38bc11d5e4 (from 7 hours ago, history: https://channels.nix.gsc.io/nixos-20.09-small)
slack1256 has quit [Ping timeout: 264 seconds]
<{^_^}> [nixpkgs] @fabaff opened pull request #113486 → python3Packages.pyeight: init at 0.1.5 → https://github.com/NixOS/nixpkgs/pull/113486
plumm has joined #nixos
alexherbo2 has joined #nixos
<{^_^}> [nixpkgs] @aanderse opened pull request #113487 → nixos/mysql: properly configure mariadb for galera recovery → https://github.com/NixOS/nixpkgs/pull/113487
<{^_^}> [nixpkgs] @danieldk opened pull request #113488 → oneDNN: 2.0 -> 2.1 → https://github.com/NixOS/nixpkgs/pull/113488
fabian_a has joined #nixos
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
vrinek has joined #nixos
faffolter has quit [Ping timeout: 264 seconds]
<{^_^}> [nixpkgs] @cole-h merged pull request #107258 → fish: avoid nontermination in fhs like setups → https://github.com/NixOS/nixpkgs/pull/107258
<Ankhers> I am trying to use virtualbox for something. However, whenever I try to start a VM, I get an error saying that the kernel driver is not accessible. I used https://nixos.wiki/wiki/Virtualbox to install it. I also installed the extensions just because, but it is still not working.
zebrag has quit [Quit: Konversation terminated!]
zebrag has joined #nixos
riksteri has quit [Quit: riksteri]
ATuin has joined #nixos
<{^_^}> [nixpkgs] @mohe2015 closed pull request #112322 → nixos/step-ca: Declarative step-ca service → https://github.com/NixOS/nixpkgs/pull/112322
<sshow> I think I've seen a builder of sorts that replaces #!/bin/bash with a NixOS compatible path. Any hints?
<{^_^}> [nixpkgs] @mohe2015 reopened pull request #112322 → nixos/step-ca: Declarative step-ca service → https://github.com/NixOS/nixpkgs/pull/112322
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #113255 → ledger2beancount: 2.1 -> 2.5 → https://github.com/NixOS/nixpkgs/pull/113255
<domenkozar[m]> cachix should be back up!
<sshow> patchShebangs it seems . the irc logs win again
<{^_^}> [nixpkgs] @kalbasit merged pull request #113478 → terraform_0_14: 0.14.6 -> 0.14.7 → https://github.com/NixOS/nixpkgs/pull/113478
ahmedelgabri has joined #nixos
domogled has joined #nixos
n-osborne has joined #nixos
n-osborne has quit [Remote host closed the connection]
n-osborne has joined #nixos
Jackneill has quit [Ping timeout: 240 seconds]
n-osborne has quit [Remote host closed the connection]
kolaente_ has joined #nixos
ahmedelgabri has quit [Ping timeout: 260 seconds]
n-osborne has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #113399 → maturin: 0.9.1 -> 0.9.3 → https://github.com/NixOS/nixpkgs/pull/113399
Jackneill has joined #nixos
zupo has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #113400 → logrotate: minor cleanup → https://github.com/NixOS/nixpkgs/pull/113400
cmk_zzz has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #100078 → grub2: fix grub-kbdcomp → https://github.com/NixOS/nixpkgs/pull/100078
cmk_zzz has joined #nixos
<{^_^}> [nixpkgs] @rycee pushed commit from @jerith666 to master « eclipses.plugins.freemarker: init at 1.5.305 »: https://git.io/JtMFl
<{^_^}> [nixpkgs] @fabaff opened pull request #113511 → python3Packages.linode-api: 4.1.8b1 -> 5.0.0 → https://github.com/NixOS/nixpkgs/pull/113511
<{^_^}> [nixpkgs] @rycee closed pull request #113410 → eclipses.plugins.freemarker: init at 1.5.305 → https://github.com/NixOS/nixpkgs/pull/113410
Jackneill has quit [Ping timeout: 246 seconds]
<{^_^}> Channel nixos-unstable-small advanced to https://github.com/NixOS/nixpkgs/commit/25420cd7876 (from 7 hours ago, history: https://channels.nix.gsc.io/nixos-unstable-small)
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #111216 → universal-ctags: bump to p5.9.20210124.0 from git tags → https://github.com/NixOS/nixpkgs/pull/111216
vrinek has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @primeos pushed to staging « python3Packages.cryptography: 3.4.5 -> 3.4.6 »: https://git.io/JtMFa
vrinek has joined #nixos
monokrome has quit [Ping timeout: 264 seconds]
Thra11 has joined #nixos
fuzzybear396574 has joined #nixos
<{^_^}> [nixpkgs] @LnL7 merged pull request #113480 → plex: 1.21.3.4021-5a0a3e4b2 -> 1.21.3.4046-3c1c83ba4 → https://github.com/NixOS/nixpkgs/pull/113480
ahmedelgabri has joined #nixos
monokrome has joined #nixos
fendor has quit [Remote host closed the connection]
Jackneill has joined #nixos
CMCDragonkai has quit [Ping timeout: 272 seconds]
CMCDragonkai1 is now known as CMCDragonkai
domogled has quit [Read error: Connection reset by peer]
fuiltilt has joined #nixos
fendor has joined #nixos
teasea has joined #nixos
monokrome has quit [Ping timeout: 264 seconds]
n-osborne has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @lovesegfault merged pull request #113308 → bindfs: 1.14.9 -> 1.15.0 → https://github.com/NixOS/nixpkgs/pull/113308
<{^_^}> [nixpkgs] @lovesegfault merged pull request #113484 → iosevka: 4.5.0 -> 5.0.2 → https://github.com/NixOS/nixpkgs/pull/113484
Darkmatter66 has quit [Read error: Connection reset by peer]
Darkmatter66 has joined #nixos
<{^_^}> [nixpkgs] @lovesegfault merged pull request #113479 → piston-cli: 1.2.1 -> 1.2.2 → https://github.com/NixOS/nixpkgs/pull/113479
cseder has joined #nixos
zebrag has quit [Quit: Konversation terminated!]
zebrag has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 opened pull request #113512 → topgrade: 6.5.1 -> 6.5.2 → https://github.com/NixOS/nixpkgs/pull/113512
<{^_^}> [nixpkgs] @raboof opened pull request #113513 → inkscape: include ghostscript to enable more extensions → https://github.com/NixOS/nixpkgs/pull/113513
ManiacOfMadness` has joined #nixos
monokrome has joined #nixos
Quick_Wango has quit [Quit: Bye! - http://cubeisland.de]
Quick_Wango has joined #nixos
n-osborne has joined #nixos
Darkmatter66_ has joined #nixos
Darkmatter66 has quit [Read error: Connection reset by peer]
<{^_^}> [nixpkgs] @lovesegfault merged pull request #113488 → oneDNN: 2.0 -> 2.1 → https://github.com/NixOS/nixpkgs/pull/113488
<{^_^}> [nixpkgs] @r-ryantm opened pull request #113514 → python37Packages.cliff: 3.6.0 -> 3.7.0 → https://github.com/NixOS/nixpkgs/pull/113514
<{^_^}> [nixpkgs] @shlevy pushed commit from @Preisschild to release-20.09 « jsonnet-bundler: init at 0.4.0 »: https://git.io/JtMN8
euandreh has quit [Ping timeout: 246 seconds]
ahmed_elgabri has joined #nixos
euandreh has joined #nixos
ahmedelgabri has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @fabaff opened pull request #113515 → python3Packages.requests: 2.25.0 -> 2.25.1 → https://github.com/NixOS/nixpkgs/pull/113515
<{^_^}> [nixpkgs] @arcz opened pull request #113516 → nxpmicro-mfgtools: 1.4.43 -> 1.4.72 → https://github.com/NixOS/nixpkgs/pull/113516
rb2k has quit [Ping timeout: 240 seconds]
n-osborne has quit [Remote host closed the connection]
ericsagn1 has quit [Ping timeout: 272 seconds]
fuzzybear396574 has quit [Quit: Connection closed]
tomberek has quit [Quit: Connection closed]
<{^_^}> [nixpkgs] @zowoq opened pull request #113518 → gh: 1.5.0 -> 1.6.0 → https://github.com/NixOS/nixpkgs/pull/113518
n-osborne has joined #nixos
ddellacosta has joined #nixos
vrinek has quit [Ping timeout: 246 seconds]
diamondburned has quit [Remote host closed the connection]
tdeo has quit [Remote host closed the connection]
diamondburned has joined #nixos
tdeo has joined #nixos
ericsagn1 has joined #nixos
inkbottle has joined #nixos
zebrag has quit [Ping timeout: 240 seconds]
andreas303 has quit [Ping timeout: 268 seconds]
<{^_^}> [nixpkgs] @JakDar opened pull request #113519 → argocd: 1.8.3 -> 1.8.4 → https://github.com/NixOS/nixpkgs/pull/113519
andreas303 has joined #nixos
philr has joined #nixos
Boomerang has quit [Ping timeout: 265 seconds]
ckauhaus has quit [Quit: WeeChat 2.7.1]
<matthewcroughan> How do you make use of liboptional?
<matthewcroughan> I want to build lzma statically, using stdenv.lib.optional, what does the nix-build command look like?
<sterni> matthewcroughan: lib.optional = bool: val: if bool then [val] else []
<matthewcroughan> ?
<matthewcroughan> sterni: I want to provide this argument to a nix-build
<matthewcroughan> `nix-build '<nixpkgs>' -A lzma`
<sterni> matthewcroughan: but in this case you'd do nix-build -E 'let pkgs = import <nixpkgs> {}; in pkgs.lzma.override { enableStatic = true; }'
<matthewcroughan> How do I, in the `nix-build` statement, set `enableStatic`
<qyliss> the way sterni just told you
<matthewcroughan> Oh ok, great.
<matthewcroughan> I thought this could be done without an expression, as if it were an argument that could be provided. Is this not the case?
<sterni> matthewcroughan: if you want to build something else which depends on lzma then you'd have to add the override to an overlay for nixpkgs
<sterni> matthewcroughan: nix-build --arg passes the argument to the top level nix expression, i. e. the default.nix you're using in that case
ky0ko has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
<sterni> matthewcroughan: you could use that to pass an overlay to nixpkgs: nix-build -A lzma --arg overlays "[ (self: super: { lzma = super.lzma.override { enableStatic = true; }; }) ]"
__monty__ has quit [Quit: leaving]
Qwerky has joined #nixos
<sterni> the plus of an overlay is that lzma is then overridden for every package you build even for packages which depend on lzma
<tpw_rules> what is the meaning of multiple licenses in the meta attribute? is it a list of choices?
n-osborne has quit [Remote host closed the connection]
<qyliss> depends on the package
<qyliss> sometimes it's a choice, sometimes it means the package contains code licensed under each of the licenses, so you have to follow the combination
<lordcirth_> packages can be released under multiple licenses, or different parts under different licenses
<sterni> tpw_rules: in most cases it is multiple licenses apply at the same time / for different parts of the package under different licenses
<sterni> we should probably support SPDX license expressions :p
<matthewcroughan> sterni: it all ends up being dynamically linked, seems not to do what we think it does.
<qyliss> sterni: the difficult thing there is that then you have to parse them
<sterni> qyliss: I know right
<qyliss> but it would be nice if we could maybe have some DSL for SPDX syntax trees
ATuin has quit [Ping timeout: 240 seconds]
<sterni> qyliss: I actually really want to write an spdx id parser in nix, probably because I hate myself
<qyliss> I don't think I can think of anything worse for eval time/memory lol
<sterni> qyliss: yeah it's nothing that should be in nixpkgs definitely
<sterni> but it'd be probably be nice if we can represent this stuff in a better way
<qyliss> yeah
<sterni> although I'm not sure if we want to completely translate the spdx expr semantics into a attrset based thingy
<sterni> because some of SPDX expressions feels just overengineered
<qyliss> example?
<tpw_rules> https://github.com/NixOS/nixpkgs/blob/master/pkgs/development/libraries/g2o/default.nix well more concretely i intended to send in a PR for this library which fixed compilation of a component whose license is GPL
<qyliss> (the whole RDF thing definitely is, but I'm assuming we're just talking about the license expressions)
<sterni> matthewcroughan: you might want to try pkgsStatic.lzma for that purpose
<qyliss> tpw_rules: often if it's a choice there's a /* or */ comment between the licenses
<qyliss> not that that helps you programatically
<tpw_rules> ok, then i will assume it is not a choice and i don't need to change anything
<qyliss> yeah, I don't think you do
<sterni> tpw_rules: seems like different parts have different licenses: https://github.com/RainerKuemmerle/g2o#license
<sterni> qyliss: the WITH operator felt odd to me, but maybe it really does simplify stuff
<qyliss> WITH is definitely important
<sterni> qyliss: what bugs me about it is that you have to keep a list around of compatible exceptions I'd think?!
<sterni> but maybe the lesser of two evils of having an exploding list of licenses
<tpw_rules> sterni: this would be to fix CHOLMOD. currently the derivation tries to compile it but it doesn't include some prerequisites so it doesn't happen. do you think i have to change the licnese or add a note?
<qyliss> I wrote some code yesterday that was AGPL-3.0-or-later WITH GPL-3.0-linking-exception and was very happy I was able to represent that
<matthewcroughan> sterni: that blows my mind
<matthewcroughan> if this is for pkgsCross, then where is pkgsStatic defined in nixpkgs? https://github.com/NixOS/nixpkgs/blob/fb147b07add8186f4417b0cf64e276e444f4d6bb/lib/systems/examples.nix#L8-L12
<qyliss> matthewcroughan: pkgs/top-level/stage.nix
ddellacosta has quit [Remote host closed the connection]
<qyliss> (git grep 'pkgsStatic =' :P)
<matthewcroughan> qyliss: where do I run that?
<qyliss> In nixpkgs!
<matthewcroughan> oh, but I was confused by the ()
<sterni> tpw_rules: gpl 3 is already in the license list, so I wouldn't think so
<tpw_rules> okay, thank you
<qyliss> matthewcroughan: oh lol, yeah, it's not some lisp thing
<{^_^}> [nixpkgs] @petabyteboy merged pull request #112836 → gitlab: 13.7.4 -> 13.8.4 → https://github.com/NixOS/nixpkgs/pull/112836
<sterni> qyliss: are all exceptions theoretically combineable with all licenses?
<qyliss> sterni: well, people can license programs under whatever unworkable/nonsensical licenses they want, so yes :P
<sterni> qyliss: I think that's the right call for SPDX saves a lot of nightmares then probably
<sterni> and simplifies the spec surprisngly maybe
ahmedelgabri has joined #nixos
alexherbo2 has quit [Ping timeout: 240 seconds]
Qwerky has quit [Remote host closed the connection]
ddellacosta has joined #nixos
ahmed_elgabri has quit [Ping timeout: 264 seconds]
alexherbo2 has joined #nixos
<qyliss> sterni: big thing probably is that you can have multiple exceptions
<sterni> mh
<qyliss> e.g. some software I'm aware of that will be AGPL-3.0 with an OpenSSL linking exception and an Apple App Store exception
<qyliss> (SPDX doesn't encode an Apple App Store exception currently but I'm sure it will at some point)
sysp has joined #nixos
<{^_^}> [nixpkgs] @zowoq merged pull request #113518 → gh: 1.5.0 -> 1.6.0 → https://github.com/NixOS/nixpkgs/pull/113518
jess has joined #nixos
<simpson> sterni, qyliss: You might get a kick out of this recent question I asked: https://opensource.stackexchange.com/questions/11251/is-license-compatibility-a-partial-order
<qyliss> I saw that on lobsters!
Acou_Bass has quit [Quit: ZNC 1.8.2 - https://znc.in]
<{^_^}> [nixpkgs] @mweinelt opened pull request #113521 → [20.09] microcodeIntel: 20201118 -> 20210216 → https://github.com/NixOS/nixpkgs/pull/113521
CMCDragonkai1 has joined #nixos
<{^_^}> [nixpkgs] @zowoq pushed to master « ripgrep: remove passthru.tests »: https://git.io/JtMhI
ddellacosta has quit [Remote host closed the connection]
sysp has quit [Quit: ERC (IRC client for Emacs 27.1)]
Acou_Bass has joined #nixos
<sterni> simpson: just proves again that licenses are a massive headache :p
<simpson> Yeah. Copyright's increasingly outdated.
<{^_^}> [nixpkgs] @github-actions[bot] closed pull request #113515 → python3Packages.requests: 2.25.0 -> 2.25.1 → https://github.com/NixOS/nixpkgs/pull/113515
lsix has joined #nixos
zn81 has quit [Quit: Connection closed]
<{^_^}> [nixpkgs] @SuperSandro2000 opened pull request #113522 → collection: remove unused inputs, stale substituteInPlace, mark some python packages broken for darwin → https://github.com/NixOS/nixpkgs/pull/113522
<sterni> simpson: I just wish licenses were about boolean logic 😔
<{^_^}> [nixpkgs] @fabaff opened pull request #113523 → stressapptest: init at 1.0.9 → https://github.com/NixOS/nixpkgs/pull/113523
dirkx_ has joined #nixos
dirkx has quit [Ping timeout: 246 seconds]
<{^_^}> [nixpkgs] @SuperSandro2000 reopened pull request #113515 → python3Packages.requests: 2.25.0 -> 2.25.1 → https://github.com/NixOS/nixpkgs/pull/113515
Thra11 has quit [Quit: WeeChat 3.0.1]
slack1256 has joined #nixos
n-osborne has joined #nixos
fendor has quit [Read error: Connection reset by peer]
litschio has joined #nixos
litschi has quit [Ping timeout: 260 seconds]
kolaente_ has quit [Quit: WeeChat 2.9]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #113349 → hdfview: 2.14 -> 3.1.2 → https://github.com/NixOS/nixpkgs/pull/113349
inkbottle has quit [Quit: Konversation terminated!]
inkbottle has joined #nixos
litschio is now known as litschi
CMCDragonkai1 has quit [Ping timeout: 272 seconds]
inkbottle has quit [Quit: Konversation terminated!]
inkbottle has joined #nixos
neiluj has quit [Quit: leaving]
woffs has quit [Quit: Gateway shutdown]
skomorokh has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @Ma27 pushed 2 commits to master: https://git.io/JtMjc
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #113228 → cqrlog: init at 2.5.2 → https://github.com/NixOS/nixpkgs/pull/113228
woffs has joined #nixos
Acou_Bass has quit [Read error: Connection reset by peer]
<{^_^}> [nixpkgs] @r-ryantm opened pull request #113524 → mavproxy: 1.8.32 -> 1.8.34 → https://github.com/NixOS/nixpkgs/pull/113524
Acou_Bass has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #113211 → maestral-gui: 1.3.1 -> 1.4.2 → https://github.com/NixOS/nixpkgs/pull/113211
skomorokh has joined #nixos
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #113411 → metabase: 0.37.8 -> 0.38.0 → https://github.com/NixOS/nixpkgs/pull/113411
<{^_^}> [nixpkgs] @mweinelt opened pull request #113525 → maintainers: add preisschild → https://github.com/NixOS/nixpkgs/pull/113525
skomorokh has quit [Remote host closed the connection]
gustavderdrache has quit [Quit: Leaving.]
mels has quit [Ping timeout: 246 seconds]
<{^_^}> [nixpkgs] @Mic92 merged pull request #113519 → argocd: 1.8.3 -> 1.8.4 → https://github.com/NixOS/nixpkgs/pull/113519
dev_mohe has joined #nixos
dev_mohe has quit [Client Quit]
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #113525 → [20.09] fix eval → https://github.com/NixOS/nixpkgs/pull/113525
<{^_^}> [nixpkgs] @r-ryantm opened pull request #113526 → docker-compose: 1.28.2 -> 1.28.3 → https://github.com/NixOS/nixpkgs/pull/113526
sss2 has quit [Quit: Leaving]
<{^_^}> [nixpkgs] @fabaff opened pull request #113527 → wafw00f: init at 2.1.0 → https://github.com/NixOS/nixpkgs/pull/113527
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #113412 → python3Packages.cvxpy: 1.1.8 -> 1.1.10 → https://github.com/NixOS/nixpkgs/pull/113412
<{^_^}> [nixpkgs] @mweinelt opened pull request #113528 → openssl: 1.1.1i -> 1.1.1j → https://github.com/NixOS/nixpkgs/pull/113528
<{^_^}> [nixpkgs] @Ma27 pushed commit from @robintown to release-20.09 « matrix-synapse: 1.26.0 -> 1.27.0 »: https://git.io/JtDev
<{^_^}> [nixpkgs] @r-ryantm opened pull request #113529 → python37Packages.vyper: 0.2.8 -> 0.2.10 → https://github.com/NixOS/nixpkgs/pull/113529
civodul has quit [Quit: ERC (IRC client for Emacs 27.1)]
<{^_^}> [nixpkgs] @fabaff opened pull request #113531 → metasploit: 6.0.29 -> 6.0.30 → https://github.com/NixOS/nixpkgs/pull/113531
mels has joined #nixos
nhs has quit [Ping timeout: 264 seconds]
zn10 has joined #nixos
troydm has quit [Ping timeout: 265 seconds]
litschi has quit [Quit: WeeChat 2.9]
litschi has joined #nixos
Qwerky has joined #nixos
mels has quit [Ping timeout: 260 seconds]
ddellacosta has joined #nixos
<zn10> I'm a new nixos user, new install. I'm in the configuration section of the manual and I'm trying out `users.mutableUsers = false` and hitting multiple snags.
fabian_a has quit [Ping timeout: 260 seconds]
litschi has quit [Quit: WeeChat 2.9]
<zn10> So far, I've never seen the user I specified appear in `/etc/passwd` after `nixos-rebuild build`, even when that command completes without any obvious error message.
<zn10> In the latest attempt, while whittling down pieces, I get an error that the root password is not set and no user is in the `wheel` group. How can I set the root password? More importantly, how can I discover this from the manual? It's not mentioned in the user config section AFAIK, and the config options appendix is very difficult to navigate in my
<zn10> browser (chrome on a chromebook) maybe due to its size.
ddellaco_ has joined #nixos
ddellacosta has quit [Ping timeout: 240 seconds]
seku has quit [Ping timeout: 272 seconds]
<{^_^}> [nixpkgs] @WolfangAukang opened pull request #113532 → upwork: 5.4.9.6 -> 5.5.0.1 → https://github.com/NixOS/nixpkgs/pull/113532
jkt has quit [Remote host closed the connection]
jkt has joined #nixos
ddellaco_ has quit [Ping timeout: 240 seconds]
neiluj has joined #nixos
neiluj has quit [Changing host]
neiluj has joined #nixos
ece3 is now known as ece
ambroisie has quit [Ping timeout: 265 seconds]
Qwerky has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @SuperSandro2000 closed pull request #112611 → iosevka-bin: 4.5.0 -> 5.0.0-rc.1 → https://github.com/NixOS/nixpkgs/pull/112611
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #113485 → iosevka-bin: 4.5.0 -> 5.0.2 → https://github.com/NixOS/nixpkgs/pull/113485
<{^_^}> [nixpkgs] @SuperSandro2000 merged pull request #113486 → python3Packages.pyeight: init at 0.1.5 → https://github.com/NixOS/nixpkgs/pull/113486
litschi has joined #nixos
m0rphism1 has quit [Ping timeout: 264 seconds]
rb2k has joined #nixos
nhs has joined #nixos
Qwerky has joined #nixos
ambroisie has joined #nixos
<ambroisie> zn10: you must use `hashedPasswords` when using immutable users to set the password of each user that you care to log in as
Qwerky has quit [Ping timeout: 256 seconds]
tomberek has joined #nixos
<makefu> zn10: when you only have cli for browsing then you have two options for looking for options: 1. `man configuration.nix` and 2. `nixos-option`
vidbina_ has quit [Ping timeout: 256 seconds]
zopieux has quit [Ping timeout: 272 seconds]
zopieux has joined #nixos
sigmundv has quit [Read error: Connection reset by peer]
zupo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
sigmundv has joined #nixos
pjt_tmp has joined #nixos
ddellacosta has joined #nixos
ky0ko has joined #nixos