<musteresel>
Hi ... is there a way to *not* use doc outputs with nix-shell? Specifically in my Travis CI build it pulls in bash-interactive-4.4-p23-man, bash-interactive-4.4-p23-doc and others which are really not needed for an automated build. E.g. an option I could set?
<{^_^}>
[nix] @zimbatm opened pull request #3170 → libexpr: add position to builtins.trace → https://git.io/JeuTj
mbrgm_ has joined #nixos
reallymemorable has quit [Quit: reallymemorable]
reallymemorable has joined #nixos
mbrgm has quit [Ping timeout: 245 seconds]
mbrgm_ is now known as mbrgm
<reallymemorable>
i installed commons compress so that i could unzip a .xz file I downloaded to my nixos machine, but it doesnt show up as an option in my “open with” menu
<DigitalKiwi>
how did you install it?
<DigitalKiwi>
in your configuration or with nix-env
<reallymemorable>
i have tried both
<DigitalKiwi>
oh
<DigitalKiwi>
what DE?
<reallymemorable>
DE?
<DigitalKiwi>
(and there goes my guess, i thought maybe it wouldn't work with nix-env :( )
<DigitalKiwi>
desktop environment
<reallymemorable>
ok let me put it in the .conf file again
<reallymemorable>
i took it out and did nix-env
<reallymemorable>
ok so i put it bacck in the .conf file and did nixos-rebuild switch
<DigitalKiwi>
i'm not *sure* that it would make a difference, but i wouldn't be surprised, and also you might need to logout and login again, that would be my next gues
fendor has quit [Quit: Leaving]
mounty has quit [Ping timeout: 240 seconds]
<DigitalKiwi>
and since i don't knwo that program, curious if it is a gui or cli app?
ng0 has quit [Quit: Alexa, when is the end of world?]
wormwood has quit [Ping timeout: 246 seconds]
<DigitalKiwi>
pretty sure it's only a library and not possible to use stand alone....
kvda has joined #nixos
selfsymmetric-pa has joined #nixos
<selfsymmetric-pa>
Hello! Does anyone know how to package services which require an executable on the path available to Java? If so, could you please take a look at this issue here: https://github.com/NixOS/nixpkgs/issues/62102? I'm attempting to provide a Signal messenger service, which would be a nice thing for NixOS to have, I think.
<{^_^}>
#62102 (by matthew-piziak, 22 weeks ago, open): Service request: Signal DBus Service
<DigitalKiwi>
ok i'm wrong
<DigitalKiwi>
you can run it with java -jar but it's a cli app
<DigitalKiwi>
which makes more sense given it's top level and not javaPackages
<selfsymmetric-pa>
DigitalKiwi: Hmm...should I maybe be extending the `PATH=` line with `libmatthew_java`?
<selfsymmetric-pa>
Or should I be trying to tweak `.signal-cli-wrapped`?
<DigitalKiwi>
i just realized why you pinged me
<DigitalKiwi>
i was responding to someone else problem
<DigitalKiwi>
which was also a java thing
<DigitalKiwi>
i have no idea about yours, sorry :(
<selfsymmetric-pa>
Oh hahaha
<selfsymmetric-pa>
You had me all excited.
<selfsymmetric-pa>
I don't know much about Java I just really would like to get a Signal daemon for NixOS.
rople has quit [Ping timeout: 240 seconds]
toppler has quit [Ping timeout: 268 seconds]
rople has joined #nixos
<kaliumxyz>
how do you add a pam module in nixos?
<kaliumxyz>
a non-predefined one, say pam_script?
<DigitalKiwi>
reallymemorable was asking about geting commonsCompress to show up in their open with menu, and i looked at the docs and it looked like it was only a java library, and i looked at the output of the deriviation and there was nothing in bin/ but you can run the jar with java -jar (why is there no bin wrapper???), as a CLI app, so there's two reasons it doesn't show up in the menu, it's not a bin on path, it's not a gui app and most cli don't show u
<DigitalKiwi>
p in menus
<DigitalKiwi>
selfsymmetric-pa: remind me what you were going to do with it (i saw the issue the other day and i am being lazy not wanting to read it again :| )
<selfsymmetric-pa>
DigitalKiwi: The current `signal-cli` package on 19.09 works for one-off commands, but cannot be run as a daemon.
<selfsymmetric-pa>
DigitalKiwi: That is, `signal-cli -u <USER> daemon` fails with `Missing native library dependency for dbus service: no unix-java in java.library.path`.
jgt1 has quit [Ping timeout: 265 seconds]
<selfsymmetric-pa>
The solution for Fedora is `ln -s /usr/lib64/libmatthew-java/libunix-java.so /usr/lib64/libunix-java.so`.
<selfsymmetric-pa>
But that does not work on NixOS. I'm not _sure_ why but I suspect it's related to the whole readonly filesystem thing.
toppler has joined #nixos
<DigitalKiwi>
i'll take a look
<selfsymmetric-pa>
DigitalKiwi: Thank you! :D
lambda-11235 has joined #nixos
kleisli_ has joined #nixos
<DigitalKiwi>
what's the minimal setup steps to make one off work
ris has quit [Ping timeout: 258 seconds]
<selfsymmetric-pa>
DigitalKiwi: You install `pkgs.signal-cli`. Then you can run something like `signal-cli -v`.
mexisme has quit [Ping timeout: 276 seconds]
<selfsymmetric-pa>
If you have Signal, and you register a user, you can then run `signal-cli -u <YOUR_PHONE_NUMBER> send -m <MESSAGE> <RECIPIENT>`.
<reallymemorable>
DigitalKiwi: how can i find a GUI for .xz files?
<{^_^}>
[nixpkgs] @nixos-channel-bot pushed 19 commits to nixos-unstable-small: https://git.io/Jeukp
<DigitalKiwi>
reallymemorable: xarchiver is one i know of, and gnome3.file-roller, probably a bunch of others
<musteresel>
Hm ... I've found a way ... setting X.meta.outputsToInstall to not contain man/doc etc works ... but for that I need to know "X" ... is there any way to get all dependencies (recursively) from within a nix expression?
<kaliumxyz>
jackdk sure: How do you work with pam in nix?
<kaliumxyz>
might be too generic a question, I want to add a custom way to authenticate, how would I do this on nixos?
judson_ has quit [Ping timeout: 240 seconds]
<kaliumxyz>
specifically for SSH login, on a remote server which is deployed with NixOps (though this should not matter as in all cases it can be fixed by adding a PAM script and using pam_exec).
<kaliumxyz>
however, adding a pam script is very confusing to me on nix.
<kaliumxyz>
using nix*
justanotheruser has joined #nixos
alex``` has quit [Ping timeout: 268 seconds]
<kaliumxyz>
ok I figured I can do security.pam.services.sshd.text = '''';
<kaliumxyz>
to overwrite the sshd file in /etc/pam.d/
<kaliumxyz>
which means I can append to it or change it in whatever way I would like.
<kaliumxyz>
or... actually I don't seen to be able to modify it just overwrite it.
simpson has left #nixos ["WeeChat 1.0.1"]
<Raito_Bezarius>
Hi there, I don't understand how to use netdata python.d plugins in Nix, it seems like there is a bug due to this error.log:
<Raito_Bezarius>
/nix/store/4vvaar2gw01r0ggcsys8873pyzq54jq4-netdata-1.18.1/libexec/netdata/plugins.d/python.d.plugin: line 3: which: command not found
justanotheruser has quit [Ping timeout: 276 seconds]
felixfoertsch has quit [Ping timeout: 276 seconds]
cptchaos83 has joined #nixos
toppler has quit [Ping timeout: 268 seconds]
selfsymmetric-mu has joined #nixos
<jackdk>
kaliumxyz: I don't know pam, but maybe this list of pam-related options will be helpful: https://nixos.org/nixos/options.html#pam . Then you can look at pam.nix and see how the config is generated, I guess?
toppler has joined #nixos
nixtactular has joined #nixos
<nixtactular>
how do I use the language-specific extensions for the CoC vim/nvim plugin after installing them? i'm talking about `coc-prettier`, `coc-tslint`, `coc-go`, etc.
<nixtactular>
i'm able to install the the plugin's extensions through Nix/home-manager, and i'm able to install `coc-nvim` to get the plugin itself working, but the plugin doesn't seem to have any awareness of the installed extensions
<DigitalKiwi>
did you try the things on the github?
<nixtactular>
DigitalKiwi: those are generic instructions for installing `coc-prettier`, i'm talking about installing the coc extensions via Nix
aw has joined #nixos
spacefrogg has joined #nixos
<DigitalKiwi>
hmm
hpfr has joined #nixos
<nixtactular>
on the CoC side, the extensions are typically managed through npm, they would normally be visible in `~/.config/coc/extensions/package.json`. but this is Nix, so i'm able to install the plugin's extensions via Nix, but CoC isn't seeing them
<nixtactular>
of course, i can still run `:CocInstall` inside vim, but that defeats the purpose of having them in the Nixpkgs repo
<{^_^}>
[nixpkgs] @xrelkd opened pull request #72139 → firectl: init at 0.1.0 → https://git.io/JeutE
<{^_^}>
[nixpkgs] @alunduil opened pull request #72140 → nixos/zfs: add autoReplication to module list → https://git.io/Jeutu
<bsima>
hi, when I do `nix build ...` and it shows the line of `[x/y/100 build]...` how can I capture that particular line in a script? My current script doesn't capture it. Is it being printed to something other than stdout?
hpfr has joined #nixos
<bsima>
weird, i can't even redirect that portion of the output to a script, either with `>` or `2>`
toppler has quit [Ping timeout: 240 seconds]
mexisme has joined #nixos
hpfr- has joined #nixos
hpfr has quit [Remote host closed the connection]
hpfr- is now known as hpfr
toppler has joined #nixos
mexisme has quit [Ping timeout: 252 seconds]
felixfoertsch23 has quit [Quit: ZNC 1.7.3 - https://znc.in]
felixfoertsch has joined #nixos
<l33[m]>
I wonder if thats some side effect of sandboxing ?
<{^_^}>
[nixpkgs] @jonringer pushed commit from @lumi-me-not to master « shotgun: init at 2.2.0 »: https://git.io/Jeutb
<hpfr[m]>
For some reason home manager sources your current profile while rebuilding
<l33[m]>
Ive not used home manager yet.
<l33[m]>
Should i?
marusich has quit [Ping timeout: 245 seconds]
<hpfr[m]>
Yes, highly recommend
<hpfr[m]>
I was confused at the point of the whole declarative thing when just starting with nixos before I found home manager, it seems like a huge oversight to be honest. There was a big PR to add proper user management to NixOS a while back but it stalled and home-manager got good enough that nobody spends time on integrating it now. It would be nice to have it be just part of nixos but that doesn’t seem likely at this point
leungbk has quit [Read error: Connection reset by peer]
<hpfr[m]>
I suppose it’s not as important for people who switched to nixos because of nix which is most people at this stage in nixos’s life
* DigitalKiwi
is still unclear on what the benefitr of home-manager is...or even what it does
<hpfr[m]>
It lets you declaratively configure your user environment in addition to your system environment
<DigitalKiwi>
what parts exactly are considered user vs system? it handles software too right not just configs? so you could have programs not installed system wide is a big part of it or?
<hpfr[m]>
For example I export environment variables in my profile for high dpi on one machine, with home manager that’s part of my config file for that machine
<hpfr[m]>
Yeah that’s a big part of it too
<DigitalKiwi>
my system configs are already modular to a machine level with shared common things
<hpfr>
I have barely any packages installed system-wide, because why should I have them system wide if only my user uses them? It's good practice
<DigitalKiwi>
conversely, i only have one user why should they not be system wide? :P
<DigitalKiwi>
(somewhat rhetorical and tongue-in-cheek as i can think of reasons)
<hpfr>
DigitalKiwi: yeah, I have that modular setup as well, but making your user environment modular is a nice extension. for stuff like DPI environment variables like GDK_DPI_SCALE in your .profile on only one machine, or having the polybar font size be larger on that machine
wewerrr has joined #nixos
vonfry has joined #nixos
<dminuoso>
I suppose home-manager is primarily useful if you have multi-user systems?
<hpfr>
yeah I only have one user too so in practice it means little, but it feels right to have all your user packages on just your user
<DigitalKiwi>
it works with a mechanism similar to nixos-rebuild but not nixos-rebuild right?
<dminuoso>
DigitalKiwi: Right, its sort of scoped to /home/<yourUser> in the sense that this is user local stuff.
<hpfr>
yes, home-manager switch, etc. but I use home-manager as a module in my nixos config, so I just use nixos-rebuild for everything
<DigitalKiwi>
it would be nice if i could do updates more often that don't disconnect all of my services like network and kill my mouse...
<dminuoso>
DigitalKiwi: Huh? That sounds weird.
<hpfr>
nixos-rebuild kills your net and mouse?
<dminuoso>
I have neither ever killed my mouse or network this way...
<DigitalKiwi>
bluetooth and network interfaces frequently get restarted for me
kreisys has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<lucus16>
Does home manager work on non-nixos systems?
<dminuoso>
DigitalKiwi: Are you using network-manager?
<hpfr>
dminuoso: it's probably very useful for multi-user but it's useful for single as well, for example configuring stuff like polybar with nix, consolidates your config to be more nixy rather than disparate dotfiles with different languages
<DigitalKiwi>
and for some reason the bluetooth doesn't like to connect and iirc (it's been a while) my trackpad gets killed...
<DigitalKiwi>
dminuoso: yeah
<hpfr>
lucus16: I think the majority of the functionality works, it discusses non-nixos in the readme
<dminuoso>
hpfr: Well I just handwire nix modules for my stuff *shrugs*
<lucus16>
Hmm cool
<hpfr>
dminuoso: haha, I'm not that cool yet
<DigitalKiwi>
the only time i disconnect from znc is when i update my server
kreisys has joined #nixos
<DigitalKiwi>
(not every time mind you, it doesn't always restart that service)
<dtz>
but yeah figured I'd get via supported channels if possible and because if nothing else such clothing is kinda fun when others have things somewhat similar lol
<DigitalKiwi>
i already make stickers
<hpfr[m]>
How is nixpkgs-unstable 5 days ago? I thought that just followed the repo
<DigitalKiwi>
make sure to check the myfriendshate.me link on the second
<{^_^}>
[nixpkgs] @samvv opened pull request #72143 → nixos/modules/system/boot: Add support for btrfs auto-resizing at boot → https://git.io/JeuqR
<DigitalKiwi>
and by "might" i mean i will, i just don't know when
<DigitalKiwi>
if people would like to start making orders...i could speed up my motivation
toppler has quit [Ping timeout: 268 seconds]
<DigitalKiwi>
i have one person that wants a haskell t-shirt already
palo has quit [Ping timeout: 276 seconds]
palo1 is now known as palo
<dtz>
my latest nixos merc is from the hummingbird release :3 I want newer gear but haven't been sufficiently active in releases to feel I deserved something release-specific :3
<hpfr[m]>
tilpner: how is it slow if it follows the repo? What’s to be slow in that process
<dtz>
"deserved" only briefly considered
<{^_^}>
[nixpkgs] @chessai opened pull request #72144 → libck: init at 0.7.0 → https://git.io/JeuqE
<dtz>
but saw some folks speaking at nixcon with some semi-timeless sweatshirts I'd wear all day every day :P so thought I'd ask
<DigitalKiwi>
did you see my stickers
* colemickens
wonders which of the two "nixcon 2019 main track" videos he should watch
<dtz>
they are very colorful which is nice but I'm not sure which to go with :3:3
Heirlung has joined #nixos
<DigitalKiwi>
jackdk: *groan* i just now got your joke
<dtz>
pride \o/ but decisions in personal appearance /o\
<dtz>
hahaha
<DigitalKiwi>
1 of each
<tilpner>
hpfr[m]: It needs to fulfill a series of tests, and a few select packages need to build, for it to advance
<dtz>
i clearly didn't give these enough of a look
<tilpner>
hpfr[m]: If that doesn't happen, it stays where it is
<dtz>
i still want a hoodie, but....
<DigitalKiwi>
i can provide more high quality images of things too if you like...twitter's been really screwing the res
* DigitalKiwi
needs to update /gallery/
<kandinski>
After upgrading to 19.09, my laptop won't suspend when I close the lid. This is the output of systemd-inhibit --list: https://termbin.com/uv71 The line that says handle-lid-switch goes away when I undock the laptop, but it still won't suspend when I close it.
toppler has joined #nixos
<makefu>
kandinski: this is (unfortunately) a known issue. of course it depends on how long you have not updated but my guess would be that you are still using extraConfig to set handlelidswitch
bahamas has joined #nixos
<hpfr[m]>
tilpner: I’m looking at nixos trunk-combined hydra.nixos.org but I’m not sure I understand everything. Why are four distinct jobs queued after the most recent successful one if all four of them still have a queued constituent job? Wouldn’t it stop and wait at the first one until done
<hpfr[m]>
And is there any way to check where a hydra build is in the queue?
<kandinski>
makefu: I don't have any lidSwitch nor lidswitch property anywyere.
lassulus has quit [Ping timeout: 240 seconds]
<DigitalKiwi>
my laptop wouldn't adjust the screen brightness anymore on 19.09 (and for a while on nixos-untable iirc) idk about 19.09 but mine started working on nixos-unstable later on. might be similar?
<DigitalKiwi>
(i don't know that it wouldn't suspend or not i didn't try)
mica[m] has joined #nixos
lassulus has joined #nixos
lambda-11235 has quit [Quit: Bye]
<makefu>
kandinski: mh, default value is "suspend" so that should 'just work'. i was asking because i had a very similar issue beginning this year
<{^_^}>
[nixpkgs] @bjornfor pushed commit from @ktor to master « bcompare: 4.3.0.24364 -> 4.3.1.24438 »: https://git.io/JeuqM
felixfoertsch has quit [Quit: ZNC 1.7.3 - https://znc.in]
felixfoertsch has joined #nixos
<kandinski>
makefu: thanks, but setting services.login.lidSwitch* and running nixos-rebuild test didn't do anything I can see.
<Athas>
My NixOS system seems to have stopped sending out DHPC requests for IP addresses. How can this be? I have a very standard configuration. Is it normally supposed to use dhclient? (That isn't running.)
<Athas>
dhcpcd seems to be running. Nothing is in the logs.
<colemickens>
The guix feature where you can patch a derivation without rebuilding if its named the same is cool.
Zer0xp has joined #nixos
<DigitalKiwi>
Athas: do you have networkmanager enabled?
<infinisil>
Athas: I was having some problem lile that, restarting dhcpcd fixed it for me (but it takes forever to restart it)
<Athas>
DigitalKiwi: not to my knowledge.
<DigitalKiwi>
oh well there goes my guess
rauno has joined #nixos
<Athas>
infinisil: I restarted dhcpcd. Doesn't look like it got me a new IP address (I manually patched one in via 'ifconfig' and 'route' so I could get online), but who knows. Its only log entry is this: 'enp6s0: no IPv6 Routers available'.
<DigitalKiwi>
my network configuratoint hat worked before started going bonkers on 19.09...which was weird because i use nixos-unstable :|
<ar>
Athas: oh, i
<ar>
Athas: oh, i'm getting similiar issues here, on -unstable
<Athas>
This also happened yesterday, where I lost my IP address while the system was on, with no log entries by dhcpcd. I don't know whether this is normal behaviour. Incidentally, this started happening after we replaced the router (but other non-NixOS systems on the LAN still work reliably).
<DigitalKiwi>
are you on wifi?
<Athas>
ar: ah, let's hope this issue also occurs for someone who knows what they're doing network-wise!
<ar>
Athas: for me, on a laptop, the biggest cause for issues seems to be moving between different wifis
<Athas>
DigitalKiwi: nope.
* DigitalKiwi
is of no use it seems
<Athas>
Er, wait, something is weird. Looks like restarting dhcpcd *did* have an effect. From the logs: "leased 192.168.0.101 for 7200 seconds". But it did not actually reconfigure the interface!
<DigitalKiwi>
i also had to update to newest kernel and change the broadcom driver ;_; and disable dhcpcd...
vidbina has quit [Ping timeout: 268 seconds]
<dminuoso>
Is there, in general, a way to delete directories when a module is disabled?
<Ashy>
hmm, ive noticed that lock screen in gnome doesnt seem to work anymore since updating to 19.09 and i am using gdm, has anyone else noticed this?
petar has quit [Read error: Connection reset by peer]
<kandinski>
Ashy: it works for me with Super-L, what's stopped working for me is suspend on closing the lid.
<kandinski>
Asy: this is what I see when I try to suspend by hand from a terminal as root # systemctl suspend -> Failed to suspend system via logind: There's already a shutdown or sleep operation in progress
<Ashy>
yeap, working again instantly
<Ashy>
weird
<kandinski>
For me, journalctl shows the message "Oct 28 19:25:39 desire systemd-logind[1085]: Lid closed.
snicket has quit [Read error: Connection reset by peer]
error9834 has joined #nixos
<error9834>
Hello, i try installing nixos for the first time from a ubuntu-live system, and i guess made something wrong or hit a bug: root@ubuntu:~/Downloads# nixos-install --root /mntbuilding the configuration in /mnt/etc/nixos/configuration.nix...error: getting status of '/mnt/hauke/store/3c4ckgj4h3r9yg8dm26g530xgi0xbawx-nixos-system-nixos-19.09pre-git': No
<error9834>
such file or directoryroot@ubuntu:~/Downloads#
<bahamas>
is anyone familiar with nix-deploy from awake security? I get this error when trying to use it to deploy a derivation: "nix-deploy: /etc/nix/signing-key.sec: openBinaryFile: does not exist (No such file or directory)"
Zer0xp has quit [Quit: Bye!]
b1000101 has quit [Ping timeout: 276 seconds]
<sphalerite>
bahamas: I'm not familiar with it, but that looks like it wants to sign derivations. Try generating a key there using nix-store --generate-binary-cache-key $HOSTNAME /etc/nix/signing-key.sec /etc/nix/signing-key.pub
vidbina has quit [Ping timeout: 245 seconds]
<bahamas>
sphalerite: yeah, nix-deploy single purpose for existing is to generate that key automatically, so that you don't have to do it manually
<bahamas>
sphalerite: I assume after I create that key, I need to download it to my machine in order for nix to sign stuff, right? it looks like that's where the script is failing
<sphalerite>
no such file or directory sounds wrong for that though.
astrall33 has joined #nixos
joehh has quit [Ping timeout: 245 seconds]
<bahamas>
sphalerite: I'm assuming it's looking for that file on my local system and doesn't find it. but it's weird that there's no error during the download
<bahamas>
sphalerite: so the problem is that the generated key is owned by root. but I'm connecting as a different user. what would the right way to do this? just change owner of the file to my user or does that break other stuff?
vidbina has joined #nixos
<{^_^}>
[nixpkgs] @globin pushed 2 commits to structured-attrs: https://git.io/JeuOt
<{^_^}>
[nixpkgs] @fpletz pushed 4 commits to release-19.09: https://git.io/JeuOm
<tilpner>
bahamas: So it doesn't make that much of a difference. You need to decide this for yourself though, a homeserver has different security requirements than a company server with lots of PII
bahamas has quit [Ping timeout: 240 seconds]
<astrall33>
Personal Idenitfying Information.
rot13_ has joined #nixos
rot13_ is now known as rot13
<tilpner>
Thank you
<astrall33>
As from today, Acronmys are banned here.
<astrall33>
we don't have to hide from upper management.
<logzet>
Which pam service corresponds to the user session (Im using Lightdm, i3)? login?
<kandinski>
I've now also upgraded to 19.09 my other (Plasma-sessioned) laptop, and suspend on closing the lid works, so I think the suspend bug may be in Gnome.
toppler has joined #nixos
chreekat has quit [Ping timeout: 240 seconds]
hyper_ch2 has quit [Remote host closed the connection]
Guest84 has quit [Remote host closed the connection]
<evils>
i'm not waiting on someone compiling GTK right?
<{^_^}>
[nixpkgs] @Infinisil merged pull request #72140 → nixos/zfs: add autoReplication to module list → https://git.io/Jeutu
<{^_^}>
import-from-derivation (IFD) is when you evaluate nix from a derivation result, for example `import (pkgs.writeText "n" "1 + 1")` will evaluate to 2. This is sometimes problematic because it requires evaluating some, building some, and then evaluating the build result. It has been described as "such a nice footgun."
<Twey>
It could be fine but Nix was never meant to be monadic :þ
<DigitalKiwi>
ag ij
<infinisil>
I'd probably still use fetchTarball because it doesn't need a pkgs :)
<DigitalKiwi>
ah ok*
chreekat has joined #nixos
<Twey>
infinisil: This is explicitly for a config though, so we know there's a pkgs available
<infinisil>
Hm yeah
<DigitalKiwi>
Twey used a swear word!
<Twey>
DigitalKiwi: :-O
<infinisil>
Okay ya changed my mind, I might use pkgs.fetch*!
<{^_^}>
[nixpkgs] @roosemberth opened pull request #72160 → darktable: move documentation to it's own directory → https://git.io/JeuZv
<Twey>
\o/
<Twey>
sondr3: fetchFromGitHub it is :)
<sondr3>
yep, thanks for the enlightening too
<{^_^}>
[nixpkgs] @Twey opened pull request #72161 → libbacktrace: init at 2018-06-05 → https://git.io/JeuZJ
<Twey>
hyper_ch2: Did you include the .drv when grepping?
<hyper_ch2>
hmmm, I guess I did something wrong when I grepped :)
<hyper_ch2>
thx
toppler has joined #nixos
silver has joined #nixos
<Twey>
hyper_ch2: I think the lines at the bottom form a trace? So /nix/store/8zgh91pr9rwy99jli2zgl7mqfr8lrsmn-nixos-system-subi-20.03.git.443f1a4.drv failed because /nix/store/pg27ji07qfr1zhd6qy64f1igild1ma9l-firmware.drv failed because /nix/store/1bjfi7w0rb9m1rvzwxl6byg465n351bv-facetimehd-firmware-1.43_4.drv failed because /nix/store/wcz77zs1siasl7r8ip2m4fb59r9420vz-osxupd10.11.5.dmg.drv failed because
<Twey>
error: cannot download osxupd10.11.5.dmg from any mirror
chreekat has quit [Ping timeout: 250 seconds]
<Twey>
Because the failures are reported as they occur
<eyJhb>
Anybody else getting errors from update-nixos-config.service, regarding some git failure?
chreekat has joined #nixos
ckauhaus has quit [Quit: WeeChat 2.6]
chreekat has quit [Ping timeout: 240 seconds]
<exarkun>
When I start this one vm built by nixos-build-vms, I get a little boot output and then the qemu console blanks out and seems dead, though the system log scrolling by in my terminal spews penty more stuff and seems to suggest the vm is really booting
<exarkun>
I have no idea what is going on
chreekat has joined #nixos
<exarkun>
The last thing I see is "Booting kernel"
<{^_^}>
[nixpkgs] @nixos-channel-bot pushed 7 commits to nixpkgs-19.09-darwin: https://git.io/JeuZS
<exarkun>
cool if I wait 5 or 10 minutes or whatever it eventually unblanks...
* exarkun
boggles
<hyper_ch2>
you have a lot of patience :)
<hyper_ch2>
tried to ssh into the vm?
dpausp has quit [Ping timeout: 252 seconds]
toppler has quit [Ping timeout: 250 seconds]
bahamas has joined #nixos
bahamas has joined #nixos
dpausp has joined #nixos
<hyper_ch2>
eyJhb: what does update-nixos-config do?
<exarkun>
hyper_ch2: it doesn't have a good network configuration yet so I can't
<exarkun>
hyper_ch2: I wasn't really just waiting for it to boot, I was redoing the config to have a working network configuration and left the vm running while I did :)
<eyJhb>
hyper_ch2: no clue, it runs it on switch
<eyJhb>
it is a systemd service
<hyper_ch2>
exarkun: :)
<hyper_ch2>
eyJhb: ah :)
ddellacosta has joined #nixos
<hyper_ch2>
I still need to figure out how to get connection to windows 10 in guacamole..... wanted to try it this weekend but I was busy doing.... other things
dpausp has quit [Ping timeout: 264 seconds]
lewo` has joined #nixos
lewo has quit [Remote host closed the connection]
dpausp has joined #nixos
<hyper_ch2>
connection to ssh works fine.. haven't tried to connect to linux desktop with vnc though
b1000101 has quit [Remote host closed the connection]
snicket has quit [Read error: Connection reset by peer]
dpausp has quit [Ping timeout: 276 seconds]
domogled has joined #nixos
reallymemorable has joined #nixos
dpausp has joined #nixos
litschio has joined #nixos
leo_ has joined #nixos
reallymemorable has quit [Client Quit]
cyphase has quit [Ping timeout: 252 seconds]
<leo_>
`the per-user profile dir /nix/var/nix/profiles/per-user/leo-github should belong to user id 1002`
bvdw has quit [Read error: Connection reset by peer]
<leo_>
What's happening? I altered my users config and now I have this warning.
dpausp has quit [Ping timeout: 246 seconds]
<leo_>
Is this normal? With immutableUsers, should I also pin the users uids and gids?
bvdw has joined #nixos
dpausp has joined #nixos
ee194350 has quit [Ping timeout: 268 seconds]
<{^_^}>
[hydra] @ajs124 opened pull request #684 → Add LDAP support → https://git.io/Jeucm
ee194350 has joined #nixos
dpausp has quit [Ping timeout: 245 seconds]
aveltras has joined #nixos
romildo has quit [Quit: Leaving]
<{^_^}>
[nixpkgs] @Profpatsch opened pull request #72166 → skawarePackages: bump to release 2019-10 → https://git.io/Jeuco
work_ has joined #nixos
jgt1 has joined #nixos
<aveltras>
has anyone encountered problems with eclipse based programs ? right now, i'm having an issue with dbeaver. It starts but parts of the interface trigger error like "no more handles" and are unresponsive. Seems to be related with "input method" but i don't know how all of this works
<aveltras>
using sway btw if this changes anything
<bahamas>
why would nix tell me that secret key is corrupt when I try to use it to sign some paths? I'm using nix-store --sign-paths -k path/to/key
dpausp has joined #nixos
toppler has quit [Ping timeout: 264 seconds]
halfbit has joined #nixos
gwen has joined #nixos
jgt1 has quit [Read error: Connection reset by peer]
jgt1 has joined #nixos
ts1 has joined #nixos
<exarkun>
bahamas: have you ruled out the secret key being corrupt?
dpausp has quit [Ping timeout: 250 seconds]
<gwen>
Hi, I'm packaging a binary which expects to be executed in its unpacked archive directory (it looks for files relative to itself). What is the correct way to package it?
<leo_>
gwen: Just as usual, if I understood your question correctly.
ts3 has joined #nixos
<nahamu>
or with a wrapper script that does e.g. "cd $(dirname ${0})"
toppler has joined #nixos
<gwen>
nahamu: So something like: Copy the unpacked archive into $out/opt or something, and create a wrapper $out/bin/<program> which does the cd and calls the original executable.
ts1 has quit [Ping timeout: 264 seconds]
domogled has quit [Ping timeout: 246 seconds]
ts4 has joined #nixos
ts2 has quit [Ping timeout: 250 seconds]
snicket has joined #nixos
invokesus has joined #nixos
ts3 has quit [Ping timeout: 246 seconds]
noudle has joined #nixos
ts1 has joined #nixos
ts4 has quit [Ping timeout: 252 seconds]
jgt1 has quit [Ping timeout: 276 seconds]
selfsymmetric-mu has quit [Remote host closed the connection]
<{^_^}>
[nixpkgs] @FRidh pushed 12 commits to python-unstable: https://git.io/JeuCq
snicket has quit [Ping timeout: 240 seconds]
iyzsong-x has quit [Ping timeout: 265 seconds]
Neo-- has joined #nixos
ts1 has quit [Ping timeout: 245 seconds]
ts1 has joined #nixos
<wedens[m]>
what's going on with musl? I can't build netbsd.compat which is a transitive dep of many derivations
<{^_^}>
[nixpkgs] @nh2 pushed commit from @cdepillabout to master « libusb1: enable compiling with musl »: https://git.io/JeuWe
chreekat has joined #nixos
rauno has quit [Ping timeout: 240 seconds]
ts3 has quit [Ping timeout: 264 seconds]
judson has joined #nixos
ts3 has joined #nixos
cosimone_ has joined #nixos
soju has quit [Ping timeout: 240 seconds]
chreekat has quit [Ping timeout: 240 seconds]
cosimone has quit [Ping timeout: 264 seconds]
ts4 has joined #nixos
<exarkun>
inkbottle: It sounds like the build succeeded but without enabling png support in graphviz. That seems plausible. The linked example supplies libjpeg but not libpng.
<{^_^}>
[nixpkgs] @peti pushed 2 commits to haskell-updates: https://git.io/JeuW8
toppler has quit [Ping timeout: 268 seconds]
jgt1 has quit [Ping timeout: 240 seconds]
ts3 has joined #nixos
jmeredith has joined #nixos
bahamas has quit [Client Quit]
ts1 has quit [Ping timeout: 264 seconds]
<wedens[m]>
nh2: sorry for bothering. do you happen to know why I get "configure: error: zlib must be installed in a compiler-visible path" when trying to build with musl? seems like it happens during netbsd.compat build. nixpkgs 19.03
<inkbottle>
exarkun: the addition of zlib, which I can verify in the drv file, didn't bring improvement.
drakonis has joined #nixos
mrCyborg has quit [Read error: Connection reset by peer]
jgt1 has joined #nixos
<exarkun>
inkbottle: I dunno. I'm not particularly familiar with the graphviz build process but it sounds like that's where the issue is, not with nix-build.
HikeFish42 has joined #nixos
ts3 has quit [Ping timeout: 276 seconds]
<inkbottle>
exarkun: yes, thanks
<{^_^}>
[nixpkgs] @tadeokondrak opened pull request #72169 → Fix aerc store references in default config → https://git.io/JeuWX
jgt1 has quit [Read error: Connection reset by peer]
domogled has joined #nixos
<Bruno[m]>
I have a dumb question. Do nixpkgs-maintainers have access to the `@GrahamcOfBorg build` command on github and what does it do? I mean I see that command used on every PR but I don't remember seing the result of the build.
erasmas has joined #nixos
Thra11 has quit [Ping timeout: 240 seconds]
<{^_^}>
[nixpkgs] @nixos-channel-bot pushed 35 commits to nixos-19.09: https://git.io/Jeul4
<alexarice[m]>
Bruno: no, you need to add yourself as a known user on the ofBorg github to do that
<dminuoso>
I have a nixos module that is hardwired to read from /etc/sssd.conf and /etc/sssd.d/* - the main problem is, these files may need to contain secret values I dont want to have in my world readable store.
domogled has quit [Quit: domogled]
<alexarice[m]>
It tells ofBorg to actually build the package
<alexarice[m]>
Usually ofBorg just evaluates nix expressions
<dminuoso>
I use nixops, so it occured to me to use deployment.keys, but how do I get from /run/secrets/foo to /etc/sssd.d/foo in a way that is compatible with nixos' management of /etc ?
<exarkun>
dminuoso: perhaps `environment` in configuration.nix helps?
<Bruno[m]>
alexarice: is the build result linked on the PR? or maybe there's a tag or something.
<dminuoso>
exarkun: That forces me to leak the secret in the store.
<alexarice[m]>
Bruno: It's with the rest of the ofBorg tests
<exarkun>
dminuoso: Does it? You can make symlinks.
<dminuoso>
exarkun: symlink from store paths.
Neo-- has quit [Ping timeout: 252 seconds]
<Bruno[m]>
alexarice: gotcha. thank you very much.
<exarkun>
Hm, too bad.
<dminuoso>
exarkun: I feel like environment needs the ability to specify a file path (as a string).
<cransom>
anyone else interested in seeing a resolution to https://github.com/NixOS/nixpkgs/pull/66532 ? i'm running it locally right now and seems to be ok so far. without it, doing home directories (via somehost/~user) is broken.
<{^_^}>
#66532 (by yorickvP, 11 weeks ago, open): nginx: fix failure to serve on aliases with regex captures
Thra11 has joined #nixos
psyanticy has quit [Quit: Connection closed for inactivity]
<{^_^}>
[nixops-hetzner] @AmineChikhaoui pushed 0 commits to refs/tags/v1.0.1: https://git.io/Jeuly
<{^_^}>
[nixpkgs] @ehmry pushed commit from @lschuermann to master « tpm2-tools: 3.2.0 -> 4.0 »: https://git.io/JeulQ
reallymemorable has quit [Quit: reallymemorable]
b1000101 has quit [Quit: Leaving]
Ariakenom has quit [Quit: WeeChat 2.6]
<sphalerite>
dminuoso: environment.etc."sssd.d/foo".source = "/run/keys/sssd-foo"; should work I think
<dminuoso>
sphalerite: source must be of type path
ts1 has quit [Ping timeout: 276 seconds]
reallymemorable has joined #nixos
ts1 has joined #nixos
<sphalerite>
dminuoso: oh, that's silly… You should still be able to use the terrible hack of doing `source = runCommand "sssd-foo" {} "ln -s /run/sssd-foo $out";` though
<{^_^}>
[nixpkgs] @ehmry merged pull request #72102 → xob: init at 0.1.1, wob: init at 0.2 → https://git.io/JeEpK
<exarkun>
first time I tried to enable zfs, the system crashed. second time, it worked. then tried to enable it on a second system and it failed to come back after reboot. and on third system, the kernel module is mysteriously unavailable. :/
<Bruno[m]>
anyone knows the difference between config.known-users.json and config.extra-known-users.json?
__Sander__ has quit [Quit: Konversation terminated!]
<mdash>
DigitalKiwi: it was the unofficial slogan for a software project exarkun and I worked on (that was in fact the fourth rewrite/redesign)
drakonis has quit [Ping timeout: 245 seconds]
<DigitalKiwi>
how does a company even stay going through 4 rewrites
<DigitalKiwi>
i'm not even sure how to react, impressed? shocked? embarrased for them that it took 4 tries?
ts2 has quit [Ping timeout: 276 seconds]
<DigitalKiwi>
and so wait 4th rewrite so that was really the 5th version , yes?
<Yaniel>
admirable persistence at least
ts2 has joined #nixos
<mdash>
well it was a storage library/database layer so yes, persistence was involved
<DigitalKiwi>
that's tenacious even for me and i spent 7 months trying to package ocrmypdf which i've used a grand total of 1 time and i did that from macos...
<{^_^}>
[nixpkgs] @davidak opened pull request #72178 → xzoom: fix version → https://git.io/Jeu4J
eskytthe has quit [Ping timeout: 268 seconds]
johnw_ is now known as johnw
iqubic` has quit [Ping timeout: 240 seconds]
<DigitalKiwi>
which kind of makes me look bad but understand that there was a history of other people trying to package it (and failing) for years, like at least 5 other people that i found and probaly more that weren't public
<{^_^}>
[nixpkgs] @nixos-channel-bot pushed 520 commits to nixos-unstable-small: https://git.io/Jeu4T
<sondr3>
anyone here used or use any of the nixfmt packages? Unsure whether to use the Serokell or nix-community program
ts2 has quit [Ping timeout: 246 seconds]
aloysius[m] has joined #nixos
ts2 has joined #nixos
fendor has quit [Ping timeout: 240 seconds]
judson__ has joined #nixos
ts2 has quit [Ping timeout: 250 seconds]
ts2 has joined #nixos
romildo has joined #nixos
vidbina has quit [Ping timeout: 265 seconds]
Chiliparrot has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
<DigitalKiwi>
i have whatever one is in nixpkgs installed
ts2 has quit [Ping timeout: 246 seconds]
<DigitalKiwi>
on nixos-unstable
fendor has joined #nixos
toppler has quit [Ping timeout: 264 seconds]
ts2 has joined #nixos
snicket has joined #nixos
<{^_^}>
[nixpkgs] @davidak opened pull request #72180 → reuse update, fetch from pypi, fix license → https://git.io/Jeu4X
<sondr3>
both are in nixpkgs, one as `nixfmt` and the other as `nixpkgs-fmt` :P
<DigitalKiwi>
the former then
<DigitalKiwi>
why doesn't nix search nixfmt show that one *thinking emoji*
<DigitalKiwi>
that other* one
ts2 has quit [Ping timeout: 246 seconds]
ts2 has joined #nixos
<gchristensen>
my laptop supports charging devices over USB while sleeping. the BIOS is configured to do this. however, nixos doesn't seem to do this. anyone know what this might be?
toppler has joined #nixos
<DigitalKiwi>
does it work on other distros
<gchristensen>
I don't really have other distros to try :)
ts2 has quit [Ping timeout: 264 seconds]
jonringer has quit [Ping timeout: 264 seconds]
<DigitalKiwi>
you could download a live usb
ts2 has joined #nixos
<DigitalKiwi>
you wouldn't download a usb! -- anti-pirate commercial
<ornxka>
i would download my own grandmother
jlmeeker has quit [Quit: Leaving]
<DigitalKiwi>
i would totally download a car if it fit through the tubes
<inkbottle>
gchristensen: I've just tried it on some debian old stable, w. T420, and it did work
<flokli>
Let's just download ourselves from home. Less travel times.
<gchristensen>
inkbottle: does it work for you with nixos?
jlmeeker has joined #nixos
<sondr3>
gchristensen: I have the same option on my laptop and no luck for me either, it doesn't even charge when the laptop is awake
<gchristensen>
wow
<inkbottle>
gchristensen: does the x1 (4th gen) have that feature?, I have to check first
<dminuoso>
gchristensen What does "in a nixbuild" mean exactly?
aveltras has quit [Quit: Connection closed for inactivity]
ts2 has joined #nixos
<litschio>
I wanna install qogir-icons and they are in nixpkgs but nix-env -qa cant find it... someone an idea how I can install it
ts2 has quit [Ping timeout: 250 seconds]
<jlmeeker>
recently moved to gdm for my login (i3 is my window manager) and noticed gdm is constantly consuming memory... looks like 4.5g in 30 minutes... had to restart once since it consumed all 32g on my laptop. On NixOS 19.09 gdm version jpb40nq9aypdc1amm6qz14qqx3ar1r8b-gnome-shell-3.32.2
<tilpner>
jlmeeker: FWIW, sddm works just fine and doesn't leak noticeably
<jlmeeker>
I'd gladly not use gdm if I can figure out how to get gnome session passwords to work without it.... I tried multiple things and running gdm is the only thing that made it work.... (I use networkmanager)
<tilpner>
jlmeeker: How can I test if gnome session passwords are working?
<jlmeeker>
my preference is to boot to a console login and have i3 launched automatically on login
<tilpner>
jlmeeker: Password entry in NM is functional
chloekek has joined #nixos
jgt1 has joined #nixos
<chloekek>
Is there a way to abbreviate Nix store paths in htop? It's difficult to see which program a process is executing.
<tilpner>
chloekek: Press p
idf has quit [Quit: WeeChat 2.6]
ts2 has quit [Ping timeout: 250 seconds]
<chloekek>
Oeh, thanks!
chloekek has quit [Client Quit]
chloekek has joined #nixos
ts2 has joined #nixos
<{^_^}>
[nixpkgs] @davidak opened pull request #72183 → Fix link in CONTRIBUTING.md → https://git.io/JeuRk
<tilpner>
chloekek: Also press F1
toppler has joined #nixos
<jlmeeker>
tilpner: your comments reminded me that I did have NM passwords working (after using services.gnome3.gnome-keyring.enable = true)... then I wanted better styling for gtk windows so I tried GDM.
<tilpner>
jlmeeker: What was bad about the old styling?
<__monty__>
feep: The expression you're writing needs arguments. That's what you should callPackage. Not the package you define inside it.
<feep>
if I apply callPackage inside the buildInputs it also doesn't work.
<{^_^}>
[nixpkgs] @nixos-channel-bot pushed commit from @c0bw3b to nixos-19.03-small « perlPackages.Po4a: fix build »: https://git.io/JeuBl
<__monty__>
feep: You're going the wrong way.
<__monty__>
The *entire* expression you're writing needs to be passed to callPackage.
<feep>
Ooh. Hang on, but why. This worked without the flask-markdown part
<__monty__>
Exactly like Shell showed you.
<__monty__>
You added the buildPythonPackage argument.
<feep>
doesn't nix-shell do that imp...... Oh!!
<feep>
now I get it. thanks.
jlmeeker_ has joined #nixos
<Shell>
feep: generally speaking people write a shell.nix that contains something along the lines of with import <nixpkgs> {}; callPackage ./default.nix {}, then you put your package definition minus the callPackage stuff in default.nix
<earendil[m]>
Question: Does anyone know how I can pass the cabal --extra-lib-dirs flag to stack build? I am developing a project with the z3 package and haskell-z3 respectively
<feep>
and my shell.nix has with import<nixpkgs> {}; callPackage ./default.nix {} and it complains that buildPythonPackage is not provided.
<feep>
and error: anonymous function at .../default.nix called without required argument 'buildPythonPackage'
<earendil[m]>
the haskell z3 package fails to build because it can't find z3 since it's in the nix store, but I don't know how to pass stack the --extra-lib-dirs flag for cabal to find the library in the store.
jlmeeker_ has quit [Quit: Leaving]
astrall33 has quit [Remote host closed the connection]
<{^_^}>
[nixpkgs] @mmahut pushed 2 commits to release-19.09: https://git.io/Jeu0S
<matthuszagh>
i'm getting strange behavior when trying to patch a makefile in a build. I call substituteInPlace in prePatch, but it fails to find the file bc it looks in the nixpkgs directory instead of the source directory. if I use substituteInPlace $src/Makefile it complains about a permissions error
<matthuszagh>
i'm calling nix-shell -p from the local nixpkgs directory, which is I guess why it looks there. but i still thought it was supposed to look in $src
<snicket>
v0|d: I have disabled secure boot... didn't help
orivej has joined #nixos
<v0|d>
snicket: i would search for extlinux bugs for xps. afair, that minimal was using extlinux as a bootloader.
gkmngrgn has joined #nixos
toppler has quit [Ping timeout: 240 seconds]
<matthuszagh>
ok apparently patch works normally when run as nix-build -A ... but not nix-shell -p or nix-shell -A. Any reason for this?
<DigitalKiwi>
i had a dell that memtest86+ would say the ram was failing even though it wasn't :/
<exarkun>
how do you know it wasn't
mexisme has quit [Ping timeout: 246 seconds]
<{^_^}>
[nixpkgs] @peti opened pull request #72190 → Fix build of obs-linuxbrowser → https://git.io/JeuEZ
<{^_^}>
[nixpkgs] @Ma27 opened pull request #72191 → nixos/networkd: add `ipv4-fallback` and `fallback` as valid options to `LinkLocalAddressing` → https://git.io/JeuEn
Okinan has quit [Quit: Konversation terminated!]
toppler has joined #nixos
<v0|d>
DigitalKiwi: my HP was complaining about ECC error on warm boots. Apparently, it was a power issue.
Okinan has joined #nixos
astrall33 has joined #nixos
<astrall33>
create a file ... echo "why the single quotes' > "A A" , if i do ls i get 'A A' not A A , it's like ls is getting back an escaped filename?
<{^_^}>
[nixpkgs] @thoughtpolice pushed to master « vector: init at 0.5.0 »: https://git.io/JeuEB
<{^_^}>
[nixpkgs] @thoughtpolice pushed 0 commits to nixpkgs/add-vector: https://git.io/JeuER
<astrall33>
bash --version 4.4.23(1)-release
MinceR_ has joined #nixos
<astrall33>
echo * , return the correct filename, without escaping.
<astrall33>
so the shell is seeing the file in entirly different way to ls !!!!
<DigitalKiwi>
exarkun: 1. it had a built in systems diagnostic 2. it was a known but that i believe was eventually fixed... 3. the number of errors it was throwing would have rendered the system unusable so...
<exarkun>
(1) and (3) don't seem terribly compelling
Chiliparrot has quit [Quit: My iMac has gone to sleep. ZZZzzz…]
growpotkin has joined #nixos
<DigitalKiwi>
*shrug*
jlmeeker has quit [Quit: Leaving]
jlmeeker has joined #nixos
noudle has quit []
kreisys has joined #nixos
<DigitalKiwi>
whatever problem i had that had caused me to even run it was resolved and it didn't involve replacing the ram (i don't remember what it was it was....10-12 years ago) and i never had any problems with it after that so :| yeah each on their own isn't that great but all of them together...what else do you want? i'm 90% sure a later version of memtest worked
cyphase has joined #nixos
<DigitalKiwi>
and i spent hours on the phone with tech support and they were aware of the memtest bug so...yeah sure they could have been lying, their diagnostics could have been rigged...but it's not like they're VW :)
<astrall33>
it says not to use in scripts? what the 8.30 documentation...
<astrall33>
well, it just a bit of a shock..
endformationage has joined #nixos
MinceR_ is now known as MinceR
<pie_>
i just got nix from fdroid
<pie_>
this is rad
<pie_>
i also cant think of what to do with it
<alexarice[m]>
pie_: wait what
Thra11 has joined #nixos
<astrall33>
as i'm looking at coreutils , Written by Richard M. Stallman and David MacKenzie. we should give praise to these ledgends!
<pie_>
alexarice[m]: :D nixcon news
<pie_>
nix-on-droid is in fdroid since like today or yesterday or something
<alexarice[m]>
pie_: I'm clearly missing out
<pie_>
looks like you still have to get the bootstrap pack or something so idk what that will or wont work on
toppler has joined #nixos
<{^_^}>
[nixpkgs] @vcunat pushed 2 commits to release-19.09: https://git.io/JeuuZ
<pie_>
also something about proot
<astrall33>
it also says... here is NO WARRANTY, to the extent permitted by law.( a bit like my toaster)
<astrall33>
pie_, , thats totally extrodanary!!!
<pie_>
astrall33: the person giving the talk about it was like "yeah i was thinking this would all be complicated but i kind of just ran the nixos install script and it worked..." xD at least thats how i understood it
<pie_>
it was one of the lightning talks i think, idk how the recordings are being put up and when, but maybe you can jsut rewind the live stream?
reallymemorable has joined #nixos
fendor has joined #nixos
Chiliparrot has joined #nixos
<DigitalKiwi>
the person that does nix-on-droid is in the aarch64 channel
matthuszagh has quit [Remote host closed the connection]
<DigitalKiwi>
too real
<worldofpeace>
Most hearts fear their own home
domogled has quit [Read error: Connection reset by peer]
domogled has joined #nixos
<hpfr[m]>
Dhcpcd is maxing out a thread on my machines intermittently. They’re on the latest nixos-unstable
<hpfr[m]>
I have to kill it and restart to get it to go back to normal
<DigitalKiwi>
what the heck is wrong with that program lately i've seen nothing but problems
<DigitalKiwi>
and why didn't they happen to us when we had nixos-unstable :<
<DigitalKiwi>
before the release
<astrall33>
does it have any logs?
FRidh has quit [Quit: Konversation terminated!]
init2winit has joined #nixos
<DigitalKiwi>
i had a lot of logs related to the problems i was having yeah
<DigitalKiwi>
a lot of yellow and red ones
init2winit has quit [Remote host closed the connection]
<kraem>
jumper149: "ctrl:swapcaps" works for me
<kraem>
jumper149: read that too quick.. nvm
<astrall33>
hmm...
<DigitalKiwi>
and...i really don't know what combination of things was necessary or changed it because i had to do multiple things to get things to work again and i'm sure no individual one was enough
<hpfr[m]>
DigitalKiwi: what program
<DigitalKiwi>
dhcpcd
<hpfr[m]>
Oh ok good
<hpfr[m]>
At least it’s not just me
aaa_ has joined #nixos
<astrall33>
you both running same kernel, same dhcpd+deps (derivation?)
<aaa_>
Hi, I've updated to nixpkgs 19.09 and now while upgrading the system, it displaying the following - is this normal?
<aaa_>
..
<aaa_>
copying path '/nix/store/cf6gk5mmifvpdyjjvy4r1igm8casawib-db-5.3.28' from 'https://cache.nixos.org'...
<DigitalKiwi>
some combination of dhcpcd, networkmanager, broadcom drivers, kernel version did a perfect storm that caused my wifi to do such things as...repeatedly try and rebind to 169.*.*.* addresses, drop 42% of packets, when it did work, it would eventually stop working (usually maybe power saving related), and at that point it was almost impossible to get it to come back, i'd spend 20 minuts putzing around
<aaa_>
I guess it's dowloading from cache, but why didn't it do this before?
__monty__ has quit [Quit: leaving]
<DigitalKiwi>
and i was getting a lot of yellow walls of text that appeared to be segfaults ....
<DigitalKiwi>
let me find one
<astrall33>
ouch....
<DigitalKiwi>
yeah it was rough
<hpfr[m]>
astrall33: One of my machines is on latest and one is on a patched version of 4.19, so I think it’s independent of the kernel
jdflkjsfsl has joined #nixos
<astrall33>
networking services are the difficult to write tests for...
<{^_^}>
[nixpkgs] @worldofpeace pushed 4 commits to master: https://git.io/JeugU
<DigitalKiwi>
Oct 25 20:28:05 mvp-nixos kernel: applesmc: F0Tg: write data fail
<astrall33>
if it's a bug with the kernel, or the driver, or some firmware blob inbetween.... then ..... however troubleshooting it you'll learn a lot, which might be a blessing or a curse depending on how much time you have left?
toppler has quit [Ping timeout: 246 seconds]
Neo-- has quit [Ping timeout: 268 seconds]
oscarvarto has quit [Quit: Konversation terminated!]
<{^_^}>
[nixpkgs] @rycee opened pull request #72200 → haskellPackages.pandoc-emphasize-code: mark as not broken → https://git.io/JeugZ
<{^_^}>
[nixpkgs] @azuzunaga opened pull request #72201 → .github: clarify things done re: sandboxing → https://git.io/JeugW
<astrall33>
i'm trying to workout how many engineering hours are lost through the almost pointless act of reverse engineering hardware, and firmware..... just imagine if developer cycles were used for productivty of implmenting drivers, than the act of reverse engineering.
<astrall33>
don't blame the players, blame the game.
domogled has quit [Ping timeout: 276 seconds]
lord| has quit [Read error: Connection reset by peer]
<DigitalKiwi>
oh this looks lovely i didn't see this until now Oct 24 22:20:06 mvp-nixos systemd-coredump[3455]: Process 3444 (nix) of user 1000 dumped core.
lord| has joined #nixos
inkbottle has quit [Ping timeout: 245 seconds]
<aleph->
Hmm, seems zoneminder is broken. Interesting.
inkbottle has joined #nixos
toppler has joined #nixos
<DigitalKiwi>
at some point i should figure out how to use journalctl
shibboleth has quit [Remote host closed the connection]
MmeQuignon has joined #nixos
shibboleth has joined #nixos
kreisys has joined #nixos
<{^_^}>
[nixpkgs] @Ma27 pushed to release-19.09 « nixos/networkd: add `ipv4-fallback` and `fallback` as valid options to `LinkLocalAddressing` »: https://git.io/Jeugr
<DigitalKiwi>
and yes i've googled for all of these extensively
<astrall33>
i've just contacted microsoft, they are glad you having so many problems, and cna offer you a special discount on windows, if you 'go back to them'.
<DigitalKiwi>
currently the only ones i get are the backlight and NS_ERROR_FAILURE
<DigitalKiwi>
and cupsd spamming me incessently
jdflkjsfsl has quit [Quit: Leaving]
Shouou has joined #nixos
<astrall33>
xsession is not a very happy bunny is it.
<astrall33>
and cupsd is also wanting attention....
<mrCyborg>
Hey, I'm just an observer who is wondering what is required to bring https://github.com/NixOS/nixpkgs/pull/70403 over the line. Is seems like everyone approved it and then... nothing happened?
ng0 has quit [Quit: Alexa, when is the end of world?]
<{^_^}>
oblique/create_ap#115 (by matthiasbeyer, 4 years ago, closed): v0.2 ?
<DigitalKiwi>
my research about cupsd says it's normal?? and the way to change it is a file that there's no nix option to change and you're not supposed to change it anyway... man subscriptions.conf
Jackneill has joined #nixos
<DigitalKiwi>
the xsession one bothers me a lot if anyone has suggestions on how to go about tracking that one down
<DigitalKiwi>
ok now unrelated: kind of... does anyone know how to make nvidia drivers work in framebuffer? my choices are i can have a framebuffer to fall back to if i break something and use the nouveau drivers that don't handle hidpi screens well but i get a fb, or i can use the nvidia drivers (which i would prefer) but tty1 is blank
ts3 has quit [Ping timeout: 246 seconds]
<DigitalKiwi>
where tty1 is tty1-6 too
ts3 has joined #nixos
<DigitalKiwi>
and nouveau also has a lot more artifacts and even worse screen tearing :/
kreisys has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]