sphalerite changed the topic of #nixos to: NixOS stable: 19.03 \o/ https://discourse.nixos.org/t/nixos-19-03-release/2652 || 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/ || #nixos-dev, #nix-darwin, #nixos-aarch64, #nixos-chat, #nixcon ... nixcon videos: https://tinyurl.com/nixcon2018
orivej has quit [Ping timeout: 268 seconds]
frederic_chopwn4 has joined #nixos
elux has joined #nixos
<elux> hi there
<elux> im installing nixos fresh on a new system and when i wrote nixos-install, i get the error: `fileSystems` option does not specify your root file system
<elux> i thought the nixos-generate-config would do this for me in hardware-configuration
<sindrip> What does your hardware-configuration look like?
<elux> seems tho the filesystems werent detected
Numin0us has joined #nixos
<elux> looks good, except no `fileSystems."/" = ..` or `fileSystems."/boot" = ` .....
<sindrip> And you've mounted your partitions?
<elux> true. i have not
<sindrip> Once you mount them it should work, just delete the config and run it again
<elux> thats fixed it, thanks
goibhniu1 has quit [Ping timeout: 268 seconds]
Numin0us has left #nixos ["User left"]
<elux> btw, my PC has an nvidia geforce 1070 card, any suggestions on how to install a driver for it?
hio has quit [Quit: Connection closed for inactivity]
<sindrip> I unfortunately haven't done that myself, check out nixos options and search for nvidia
foo_bbar has quit [Remote host closed the connection]
<elux> thanks
kvda has joined #nixos
tomberekn[m] has joined #nixos
selfsymmetric-mu has joined #nixos
zfnmxt_ has joined #nixos
<day|flip> elux: services.xserver.videoDrivers = [ "nvidia" ]; and maybe consider hardware.opengl.driSupport = true; and hardware.opengl.extraPackages = with pkgs; [ libvdpau libvdpau-va-gl ];
<elux> thanks very much
<elux> so interesting too, just installed and when booting i see `kvm: disabled by bios` and so my system fails to boot at all
zfnmxt has quit [Read error: Connection reset by peer]
<elux> kvm-amd was added automatically at part of the generate-config i noticed in hw-config,
zfnmxt has joined #nixos
zfnmxt- has joined #nixos
<elux> ill check bios to enable it
<{^_^}> [nixpkgs] @IvanMalison opened pull request #63710 → rofi: 1.5.2 -> 1.5.3 → https://git.io/fjw9V
zfnmxt_ has quit [Ping timeout: 246 seconds]
alex`` has quit [Read error: Connection reset by peer]
<day|flip> elux: just a basic idea on what i said. what it will look in in configuration.nix https://hastebin.com/hucaleniku.bash
pjan_ has quit [Read error: Connection reset by peer]
alex`` has joined #nixos
<elux> day|flip: nice, thank you
<{^_^}> [nixpkgs] @peti pushed to haskell-updates « hackage-packages.nix: automatic Haskell package set update »: https://git.io/fjw9i
<day|flip> i forgot about this. other wise distro is mostly foss about the box. https://hastebin.com/ufuhafojey.bash
<{^_^}> [nixpkgs] @matthewbauer pushed to master « nixos: add hardware/network/intel-2200bg.nix to module-list »: https://git.io/fjw9P
Henson has joined #nixos
zfnmxt- has quit [Quit: Bye!]
wfranzini has quit [Remote host closed the connection]
wfranzini has joined #nixos
selfsymmetric-mu has left #nixos ["gone to the land of dead hiccups and extinguished light bulbs"]
<Henson> has anybody here used NixOS to provide secure services to the internet? I usually use apparmor, but it looks like NixOS's support for apparmor isn't quite there yet. I'm wondering if there are other mechanisms similar to AppArmor or containerization or something that provides similar security but works well in NixOS.
<Henson> I read in the NixOS manual that you can create containerized NixOS environment, but I think it also said they're not high-security containers.
<simpson> Henson: What's your threat model? Security is ultimately relative to what you want to be secure against.
psy3497 has joined #nixos
alex``` has joined #nixos
zfnmxt_ has joined #nixos
<{^_^}> [nixpkgs] @matthewbauer pushed to release-19.03 « nixos: add hardware/network/intel-2200bg.nix to module-list »: https://git.io/fjw9X
<Henson> simpson: people from the internet exploiting vulnerabilities in the services and infiltrating my computers and networks.
<simpson> Do you have a preferred distro, perhaps, with an existing configuration that you like? We could talk about NixOS's security relative to other distros.
clacke_movim has joined #nixos
<Henson> simpson: well I usually use Ubuntu or Debian, for which apparmor works well. But I'm getting into NixOS and really like the fact that I don't have to go through the pain of distribution upgrades.
mexisme_ has joined #nixos
<simpson> Henson: Hm. That's a tough problem. You could avoid the Internet (sounds unlikely, given the problem statement), make your services unhackable (precludes most code in nixpkgs), or separate privileges according to the Principle of Least Authority.
<{^_^}> [nixpkgs] @matthewbauer merged pull request #63707 → Qt5 + Darwin fixes → https://git.io/fjwyA
<{^_^}> [nixpkgs] @matthewbauer pushed 5 commits to master: https://git.io/fjw91
alex`` has quit [Ping timeout: 245 seconds]
<Henson> simpson: I like apparmor because it supplements Linux's access control mechanisms something more fine-grained, and Apache's mod_apparmor allows them to be applied on a virtualhost basis.
<drakonis> SELinu
<drakonis> woops, too soon.
<drakonis> What about SELinux and other LSMs?
<simpson> You may also want to read security.apparmor https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/security/apparmor.nix
mexisme_ has quit [Ping timeout: 272 seconds]
<Henson> drakonis: I've heard SELinux is horrible to learn, so I've never touched it. I've used GRsecurity before, and liked it better than apparmor, but it's not as well-supported or widespread as apparmor
<Henson> simpson: I've got apparmor enabled, but it looks like Apache's mod_apparmor module is missing, and it doesn't look like the apparmor profiles have been adjusted to work with NixOS. They're just the vanilla Ubuntu apparmor profiles, but apparmor depends on the absolute path of the executables, and all of the Nix executables are /nix/store paths and don't get loaded by apparmor.
<Henson> simpson: I added my own directory to the apparmor profiles paths and created a copy of the apache2 module, but with the httpd path in the Nix store, and it works.
<simpson> Hm. Wonder how that could be improved.
<Henson> simpson: but without mod_apparmor it doesn't work with per-virtualhost security profiles
<drakonis> ah, grsec.
<drakonis> that one's a big no no
<Henson> simpson: I think a series of automatically-generated patches need to be applied to all of the vanilla Ubuntu apparmor profiles to adjust their paths to match those used by NixOS.
<Henson> simpson: they could just becomes part of the apparmor-profiles package's build script. I was just wondering if there was a more NixOS-ish solution that I was unaware of.
<simpson> Henson: Sure. NixOS paths are probably generated by Nix, though, so we might have to generate the AppArmor profiles with Nix too.
<drakonis> there's also landlock, but its far away
<drakonis> some other fresh new lsm
<aanderse> hmm... looks like we should be dropping mysql 5.5 support from nix and adding 8.0
<aanderse> seems like 5.5 support is post end of last year
<aanderse> s/post/past
<Henson> simpson: yes. But the apparmor-profiles package downloads the profiles from Ubuntu, and the proper Nix paths could be generated by referring to the various executables in nixpkgs, and patching the Ubuntu profiles with these different executable locations.
<Henson> simpson: assuming, that's the only difference.
<simpson> Henson: As a general rule of thumb, LSB and FHS aren't available. If the application doesn't care about them, then it will work fine; otherwise, it may require adjustments.
<Henson> simpson: sorry, can you elaborate on LSB and FHS?
infinisil has quit [Quit: Configuring ZNC, sorry for the joins/quits!]
dongcarl has quit [Ping timeout: 258 seconds]
englishm has quit [Ping timeout: 258 seconds]
hoek has quit [Ping timeout: 258 seconds]
<simpson> Henson: Linux Standard Base and Filesystem Hierarchy Standard are standards for how Linux distros ought to lay out the filesystem. NixOS does not especially follow them, aside from a few very important paths like /bin/sh and /usr/bin/env.
infinisil has joined #nixos
calbrecht[mb] has joined #nixos
<Henson> simpson: ahh, ok. That might make proper Apparmor integration difficult. Perhaps sticking to Ubuntu is better for an outward-facing service, and accepting the pain of distribution upgrades.
CMCDragonkai has joined #nixos
peel has joined #nixos
ProofTechnique has joined #nixos
eacameron has joined #nixos
rodarmor has joined #nixos
Wizek has joined #nixos
dongcarl has joined #nixos
englishm has joined #nixos
hoek has joined #nixos
zfnmxt has quit [Ping timeout: 268 seconds]
<simpson> Henson: Whatever works for you. I've not had security problems with NixOS in production, but I've got a very specific threat model that can survive partial compromise of those particular NixOS frontends.
<simpson> (Which is not to say that any of my NixOS machines have been compromised, to my knowledge!)
sindrip has quit [Ping timeout: 260 seconds]
<elux> on my new system, home-manager switch --upgrade is telling me nodejs-12_x does not exist, yet on my laptop with the identical setup (so I think), i have nodejs-12_x with home manager installing fine
sheeldotme has joined #nixos
<clever> elux: what does `nix-channel --list` and `sudo nix-channel --list` report?
mexisme_ has joined #nixos
ris has quit [Ping timeout: 260 seconds]
<elux> on my laptop.. (normal user): home-manager https://github.com/rycee/home-manager/archive/master.tar.gz (sudo user): nixos-unstable paths..
<elux> on desktop, its nixos-19.03
<elux> must be it
<clever> elux: yeah, nixos-19.03 is the release channel, so it will only get stability and security updates
<clever> while nixos-unstable gets upgrades, and potentionally deletions
jluttine has joined #nixos
<elux> i gotta say tho, i love nix. so cool how running the config got my machine to almost identical setup as my laptop
<elux> i just need to tweak a few things like dpi etc
<elux> interesting that unstable has linux 5.1.11 where stable is 5.1.14 hehe
<drakonis> it is so great, agreed.
<elux> why would unstable have older kernel then stable tho?
<clever> elux: *looks*
<clever> nixos-19.03 is at linux-4.19.41
<clever> for the .linux attr
<clever> elux: did you set boot.kernelPackages ?
<day|flip> 5.1.12 for kernelPackages_latest
<day|flip> on stable
<aanderse> so i only see 1 example of yarn2nix in nixpkgs :\
<aanderse> not much to go off of
<clever> aanderse: a yarn2nix ive used heavily, https://github.com/input-output-hk/daedalus/blob/develop/yarn2nix.nix
<clever> 19.03 linux_latest is 5.1
CloudNinja has joined #nixos
<clever> master linux, 4.19.41, master linux_latest 5.1
<aanderse> clever: so do i just copy/paste yarn2nix from the moretea/yarn2nix repo into my folder?
<clever> aanderse: youll want to import it, via fetchFromGithub, or use the copy nixpkgs provides
<clever> elux: definitely looks like you have a _latest version on one machine
<CloudNinja> Hey, I'm wanting to try out nixos yet again, but am in a slight predicament: I don't have an extra flash drive to use. The only guide i found thats's semi-official is out of date, so i'm wondering what my best option is. I have an arch install
<aanderse> clever: but nixpkgs doesn't include the mkYarnPackage function
<aanderse> i see "yarn2nix = throw "Use upstream https://github.com/moretea/yarn2nix"; # added 2019-04-12"
<clever> aanderse: ah, then youll want to just fetchFromGitHub a copy, like daedalus does
sb0 has joined #nixos
<clever> CloudNinja: if you run kexec_nixos like in this example, it will immediatelly boot into nixos, without any changes to the hdd
<clever> CloudNinja: you can then continue with the installation as normal
<aanderse> clever: that sounds much better than the 1 example in nixpkgs which just manually pasted the file in, presumably...
<CloudNinja> clever: this sounds not only like a good idea but also really neat
<CloudNinja> thanks
<aanderse> clever: any thoughts on using yarn2nix if the application uses cmake to build? :\
<clever> aanderse: that gets more messy, i would patch the cmake layer to just take a pre-built copy of the npm stuff in an env var
CloudNinja has quit [Quit: WeeChat 2.5]
<aanderse> clever: thanks for advice
<sonercirit[m]> is there any way to get the whole kde suite? ( image viewer, archive, screenshot tool etc.)
<sonercirit[m]> if I onl do `plasma5.enable` I'm missing those
<Henson> simpson: have you used SELinux? What do you use for securing your computers?
<simpson> Henson: I've used SELinux. I don't really think of hardening as providing security properties, but as defense in depth and an apology for insufficiently-fine-grained kernel APIs.
utdemir has joined #nixos
<Henson> simpson: what path would you take if you wanted to expose Apache or Postfix or something like that to the Internet?
<{^_^}> [nixpkgs] @matthewbauer merged pull request #63670 → acpilight: fix build error → https://git.io/fjwzC
<{^_^}> [nixpkgs] @matthewbauer pushed 2 commits to master: https://git.io/fjwHv
jmeredith has quit [Quit: Connection closed for inactivity]
<{^_^}> [nixpkgs] @matthewbauer merged pull request #63638 → Revert "Remove amdadlsdk and amdappsdk." → https://git.io/fjwcU
<{^_^}> [nixpkgs] @matthewbauer pushed 2 commits to master: https://git.io/fjwHf
<{^_^}> [nixpkgs] @matthewbauer merged pull request #63595 → wxGTK31: 3.1.0 -> 3.1.2; use a real derivation → https://git.io/fjVAb
<{^_^}> [nixpkgs] @matthewbauer pushed 2 commits to master: https://git.io/fjwHJ
<{^_^}> [nixpkgs] @matthewbauer merged pull request #63609 → udev: change error message if RUN entry is not executable → https://git.io/fjwf2
<{^_^}> [nixpkgs] @matthewbauer pushed 3 commits to master: https://git.io/fjwHU
<utdemir> If I have built a system configuration using 'import ./nixpkgs/nixos {configuration=./configuration.nix}', what's the easiest way to activate that function? Currently I have to do 'export NIXOS_INSTALL_BOOTLOADER=1; nix-env -p /nix/var/nix/profiles/system --set $store_url; $store_url/bin/switch-to-configuration switch' which feels like the wrong thing.
<simpson> Henson: In any case, I'd follow the Principle of Least Authority, but specific daemons require specific considerations. I don't know whether I'd run a hardened profile.
Supersonic112 has joined #nixos
Supersonic has quit [Disconnected by services]
Supersonic112 is now known as Supersonic
zfnmxt_ is now known as znfmxt
freeman42x has quit [Ping timeout: 252 seconds]
<sonercirit[m]> so can we do wildcards in `configuration.nix` ? like `jetbrains.*`
<{^_^}> [nixpkgs] @matthewbauer merged pull request #63695 → pythonPackages.hidapi: enable on darwin → https://git.io/fjw1k
<{^_^}> [nixpkgs] @matthewbauer pushed 2 commits to master: https://git.io/fjwHT
Henson has quit [Read error: Connection reset by peer]
utdemir has quit [Quit: WeeChat 2.4]
<elux> clever: yea i have kernalPackages = pkgs.linuxPackages_latest set on both desktop and laptop.. and desktop is stable, laptop is unstable .. but 5.1.14 and 5.1.11 versions respectively
<{^_^}> [nixpkgs] @teto opened pull request #63711 → Coc update → https://git.io/fjwHt
<{^_^}> [nixpkgs] @matthewbauer merged pull request #63166 → libelf: Add patch to prevent -Wundef warnings. → https://git.io/fjaeq
<{^_^}> [nixpkgs] @matthewbauer pushed 2 commits to staging: https://git.io/fjwHm
znfmxt is now known as zfnmxt
jasongrossman has joined #nixos
Anton-Latukha has quit [Quit: Leaving.]
<day|flip> elux: are you running: nixos-rebuild switch --upgrade . it the same as doing: nix-channel --update; nixos-rebuild switch
<{^_^}> [nixpkgs] @teto merged pull request #63710 → rofi: 1.5.2 -> 1.5.3 → https://git.io/fjw9V
<{^_^}> [nixpkgs] @teto pushed commit from @IvanMalison to master « rofi: 1.5.2 -> 1.5.3 »: https://git.io/fjwHs
<{^_^}> [nixpkgs] @teto merged pull request #63570 → luajitPackages: Improve derivation names → https://git.io/fjVy5
<{^_^}> [nixpkgs] @teto pushed commit from @Shados to master « luajitPackages: Improve derivation names »: https://git.io/fjwHZ
<elux> day|flip: yea, nixos-rebuild switch --upgrade
orivej has joined #nixos
sb0 has quit [Quit: Leaving]
Henson has joined #nixos
<Henson> simpson: sorry, my computer crashed. What was your answer to my question about the path you would take if you were exposing apache, postfix, or some other service to the internet? The principle of least authority?
<drakonis> we got logs
<{^_^}> [nixpkgs] @teto merged pull request #63566 → luaPackages.luaexpat: Downgrade to fix prosody issue and match typical distros → https://git.io/fjVDy
<{^_^}> [nixpkgs] @teto pushed commit from @Shados to master « luaPackages.luaexpat: Downgrade to fix issue and match typical distros »: https://git.io/fjwHC
<drakonis> simpson | Henson: In any case, I'd follow the Principle of Least Authority, but specific daemons require specific considerations. I don't know whether I'd run a hardened profile.
<Henson> drakonis: awesome, thank you!
<sonercirit[m]> reasking this: so can we do wildcards in `configuration.nix` ? like `jetbrains.*`
<drakonis> the logs are in the channel topic
<Henson> drakonis: thanks for pointing that out!
<clever> sonercirit[m]: what do you want the * to do?
<sonercirit[m]> clever: I want it to install all the jetbrains apps for that category
<sonercirit[m]> like `environment.systemPackages = [ pkgs.jetbrains.* ] `
<clever> > builtins.attrValues jetbrains
<{^_^}> [ <CODE> <CODE> <CODE> <CODE> <CODE> <CODE> <CODE> <CODE> <CODE> true <CODE> <CODE> <CODE> ]
<clever> sonercirit[m]: that returns a list, containing every value in the jetbrains set
<clever> sonercirit[m]: so you would do: environment.systemPackages = builtins.attrValues pkgs.jetbrains;
<sonercirit[m]> clever: would this work `environment.systemPackages = with.pkgs; [ wget ] ++ builtins.attrValues jetbrains `
<clever> sonercirit[m]: probably
<clever> sonercirit[m]: may need some () to scope things right, environment.systemPackages = with pkgs; ([ wget ] ++ builtins.attrValues jetbrains);
elux has quit [Read error: Connection reset by peer]
sheeldotme has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<sonercirit[m]> clever: `error: The option value `environment.systemPackages.[definition 3-entry 36]' in `/etc/nixos/configuration.nix' is not of type `package'.` tried scoping as well
<sonercirit[m]> same results
<clever> > jetbrains.recurseForDerivations
<{^_^}> true
<clever> sonercirit[m]: one of the entries in that set, is not a package
<sonercirit[m]> clever: I see, rider IDE seems like broken then, I'll look into it, thanks a lot!
<infinisil> > :p filter (x: ! isDerivation x) jetbrains
<{^_^}> value is a set while a list was expected, at (string):255:1
<infinisil> > :p filterAttrs (n: x: ! isDerivation x) jetbrains
<{^_^}> { recurseForDerivations = true; }
<infinisil> Ah
<clever> builtins.attrValues (lib.filterAttrs (key: value: ! builtins.elem key [ "recurseForDerivations" ]) jetbrains)
<clever> sonercirit[m]: this will filter by key, so you can also exclude rider
<clever> infinisil's thing will filter by type
orivej has quit [Ping timeout: 248 seconds]
<sonercirit[m]> it works now thank a lot clever infinisil
kvda has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
freeman42x has joined #nixos
slack1256 has joined #nixos
alex``` has quit [Ping timeout: 268 seconds]
alex``` has joined #nixos
stepcut has quit [Remote host closed the connection]
stepcut has joined #nixos
stepcut has quit [Remote host closed the connection]
stepcut has joined #nixos
stepcut has quit [Remote host closed the connection]
stepcut has joined #nixos
stepcut has quit [Remote host closed the connection]
stepcut has joined #nixos
stepcut has quit [Remote host closed the connection]
stepcut has joined #nixos
stepcut has quit [Remote host closed the connection]
stepcut has joined #nixos
kvda has joined #nixos
stepcut has quit [Remote host closed the connection]
stepcut has joined #nixos
<sonercirit[m]> > :p filterAttrs (n: x: ! isDerivation x) kdeApplications
<{^_^}> { callPackage = <LAMBDA>; newScope = <LAMBDA>; override = <LAMBDA>; overrideDerivation = <LAMBDA>; overrideScope = <LAMBDA>; overrideScope' = <LAMBDA>; packages = <LAMBDA>; recurseForDerivations = tru...
stepcut has quit [Remote host closed the connection]
stepcut has joined #nixos
stepcut has quit [Remote host closed the connection]
stepcut has joined #nixos
Henson has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/]
stepcut has quit [Remote host closed the connection]
stepcut has joined #nixos
jmeredith has joined #nixos
<{^_^}> [nixpkgs] @teto merged pull request #63711 → Coc update → https://git.io/fjwHt
<{^_^}> [nixpkgs] @teto pushed 3 commits to master: https://git.io/fjwHK
pjan has joined #nixos
stepcut has quit [Ping timeout: 258 seconds]
danderson has joined #nixos
kvda has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
kvda has joined #nixos
slack1256 has quit [Remote host closed the connection]
<danderson> Hi! New to NixOS and going through the manual, and 6.2 (Ad-hoc package management) has me a little confused about the interaction of nix-env and nixos-rebuild.
<danderson> Specifically, the manual says that nix-env packages installed by root become part of the systemwide default profile... Which is apparently not the same thing as environment.systemPackage in configuration.nix?
ee1943 has joined #nixos
<danderson> I assumed they were the same, and `nixos-rebuild switch` would revert to only what's specified in the config. What am I missing?
<{^_^}> [nixpkgs] @teto opened pull request #63713 → Mptcp kernel updates → https://git.io/fjwH5
xkapastel has quit [Quit: Connection closed for inactivity]
<danderson> or put another way: is there a way to easily empty out the default profile, so that I can get the system back to the declarative spec only?
MinceR_ has joined #nixos
MinceR has quit [Ping timeout: 248 seconds]
<DigitalKiwi> nix-env -e '.*'
<DigitalKiwi> I think that's what you want? it'll remove anything you nix-env -i
<DigitalKiwi> and by systemwide default it means available to 'all users' as dual to 'only the user that installed it'
freeman42x has quit [Ping timeout: 258 seconds]
<day|flip> connman need wpa_supplicant to start for it to work with wifi. but for some reason wpa_supplicant does not start on boot. i have to manual start it. for connman wifi to work
Supersonic has quit [Ping timeout: 252 seconds]
Supersonic has joined #nixos
drakonis has quit [Quit: WeeChat 2.4]
ericsagnes has quit [Ping timeout: 252 seconds]
<clever> day|flip: journalctl -f -u wpa_supplicant
ericsagnes has joined #nixos
orivej has joined #nixos
<day|flip> clever: ^
dansho has joined #nixos
Okinan has quit [Quit: Konversation terminated!]
kvda has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
mexisme_ has quit [Ping timeout: 245 seconds]
kvda has joined #nixos
ddellacosta has joined #nixos
mrCyborg has quit [Quit: The Lounge - https://thelounge.github.io]
sb0 has joined #nixos
mrCyborg has joined #nixos
kvda has quit [Client Quit]
jasonrm has joined #nixos
mexisme_ has joined #nixos
kvda has joined #nixos
leira has joined #nixos
orivej has quit [Ping timeout: 272 seconds]
<leira> I have a question regarding `nix-env`. I don't understand what exactly `nix-env` does. I end up not using it at all. I'm afraid of my environment diverging from my `configuration.nix`. What does `nix-env` do exactly? If I install a new package `foo` with `nix-env`, then add another package `bar` into configuration.nix, what will happen after I run
<leira> `nixos-rebuild switch`? Is `foo` still in the environment or not?
orivej has joined #nixos
<{^_^}> [nixpkgs] @tadeokondrak opened pull request #63714 → mumble_git: 2018-07-01 -> 2019-07-10 → https://git.io/fjwQ8
endformationage has quit [Quit: WeeChat 2.5]
wfranzini has quit [Remote host closed the connection]
wfranzini has joined #nixos
cjpbirkbeck has quit [Quit: Quitting now.]
vmandela has joined #nixos
knupfer has joined #nixos
ddellacosta has quit [Ping timeout: 272 seconds]
MinceR_ is now known as MinceR
ajirx has joined #nixos
wfranzini has quit [Remote host closed the connection]
o1lo01ol1o has joined #nixos
zacts has joined #nixos
orivej has quit [Ping timeout: 246 seconds]
zacts has quit [Client Quit]
zacts has joined #nixos
o1lo01ol1o has quit [Ping timeout: 272 seconds]
<DigitalKiwi> it is there until you nix-env -e foo
dansho has quit [Remote host closed the connection]
dansho has joined #nixos
<DigitalKiwi> i generally only use nix-env for temporary stuff i'm evaluating. others prefer to use nix-shell and avoid using nix-env altogether. *shrug*
<DigitalKiwi> (if i decide i like it i move it to permanent configuration, if i don't i -e stuff i don't want periodically)
knupfer has quit [Ping timeout: 264 seconds]
gerschtli has joined #nixos
<danderson> DigitalKiwi: thanks. The part that confused me is that nix-env run as root seems to also make things available to all users, so there's both a declarative and an imperative way to install packages, and they don't talk to each other.
<danderson> Makes sense I suppose, I was just a bit lost. nix-env -e is great, thanks for the pointers!
<{^_^}> [nixpkgs] @vcunat pushed 3 commits to release-19.03: https://git.io/fjwQN
<DigitalKiwi> danderson: you're welcome
kvda has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
palo1 has joined #nixos
kvda has joined #nixos
<leira> DigitalKiwi: Thanks~ for temprary evaluation, nix-shell seems to be the better choice to me, I'm apparently one of who "avoid using nix-env altogether".
palo has quit [Ping timeout: 258 seconds]
palo1 is now known as palo
<DigitalKiwi> usually my temporary evaluations are for more than just one use things so the nix-shell is too annoying to type each time
reinhardt has joined #nixos
<DigitalKiwi> also it helps me remember it's even a thing if i can nix-env -q and see the list of things
qqlq has joined #nixos
<{^_^}> [nixpkgs] @danbst merged pull request #63618 → tomcat: CVE-2019-10072 → https://git.io/fjwL4
<{^_^}> [nixpkgs] @danbst pushed 3 commits to master: https://git.io/fjw7J
<{^_^}> [nixpkgs] @danbst pushed 2 commits to release-19.03: https://git.io/fjw7U
mexisme_ has quit [Ping timeout: 272 seconds]
reinhardt has quit [Quit: Leaving]
<pbb> Is there a way to get the text of an expression? Like, I have some configuration that I want to include in an installation image I am building, and I want to include dynamic contents
<dminuoso> pbb: Mmm, wouldn't such a feature break referential transparency?
<dminuoso> otoh we dont have ref transparency in nix to begin with...
anon has joined #nixos
<dminuoso> pbb: What do you mean by "dynamic contents" exactly?
anon is now known as Guest80637
<pbb> In this case ssh keys
<pbb> I mean it's possible to write the nix expression I want to ship as a text inside the nix expression for the iso and just join the ssh keys together, but it would be nicer to have another way
<dminuoso> pbb: Why not simply produce attribute sets?
ZombieByte has joined #nixos
<pbb> how do I get those attribute sets inside the iso?
<ldlework> you can also read file, or just load any other expression you want
<ldlework> using an import statement
<dminuoso> pbb: By writing a nix expression for it?
<pbb> Ok so I can just copy the .nix file to the iso as a file
<pbb> but that way the contents are static
mexisme_ has joined #nixos
<{^_^}> [nixpkgs] @peterhoeg opened pull request #63716 → nixos/mosquitto: make the tests run → https://git.io/fjw7t
<pbb> currently I have a service that's included in the live system, that includes some echo > /etc/nixos/configuration.nix << EOF ... EOF, where some options are inserted, like ip address, users and so on
ericsagnes has quit [Ping timeout: 258 seconds]
<pbb> I guess I have to copy all the source files to the iso as files and have a configuration.nix that imports from there
<{^_^}> [nixpkgs] @peterhoeg closed pull request #36865 → mosquitto: 1.6.2 -> 1.6.3 → https://git.io/vxfYE
<{^_^}> [nixpkgs] @peterhoeg opened pull request #63717 → mosquitto: 1.6.2 -> 1.6.3 → https://git.io/fjw7Y
c00w_ has joined #nixos
sgraf_ has joined #nixos
WooDWorkeR_ has joined #nixos
benkolera_ has joined #nixos
sorear_ has joined #nixos
chris|_ has joined #nixos
NekomimiScience_ has joined #nixos
uwap_ has joined #nixos
georgyo_ has joined #nixos
aveltras_ has joined #nixos
jkachmar_ has joined #nixos
rycwo_ has joined #nixos
angerman_ has joined #nixos
Tritlo_ has joined #nixos
thoughtpolice_ has joined #nixos
dukedave_ has joined #nixos
d10n-work_ has joined #nixos
Ankhers_ has joined #nixos
Forkk has joined #nixos
kwork_ has joined #nixos
markasoftware_ has joined #nixos
lopsided98_ has joined #nixos
shad has joined #nixos
Khetzal_ has joined #nixos
petar_ has joined #nixos
drgbr has joined #nixos
eliasp_ has joined #nixos
day|flip has quit [Remote host closed the connection]
THFKA4_ has joined #nixos
eliasp_ is now known as Guest42834
adisbladis1 has joined #nixos
<{^_^}> [nixpkgs] @vbgl merged pull request #63167 → xastir: 2.1.0 -> 2.1.2 → https://git.io/fjaeW
<{^_^}> [nixpkgs] @vbgl pushed to master « xastir: 2.1.0 -> 2.1.2 »: https://git.io/fjw7C
datakurre^ has joined #nixos
MasterdonY has joined #nixos
Swant_ has joined #nixos
abcrawf has joined #nixos
ericsagnes has joined #nixos
phreedom has quit [*.net *.split]
cantstanya has quit [*.net *.split]
oida has quit [*.net *.split]
xelxebar has quit [*.net *.split]
jb55 has quit [*.net *.split]
gxt has quit [*.net *.split]
andreas303 has quit [*.net *.split]
happyent[m] has quit [*.net *.split]
dsx has quit [*.net *.split]
lopsided98 has quit [*.net *.split]
c00w has quit [*.net *.split]
abcrawf_ has quit [*.net *.split]
THFKA4 has quit [*.net *.split]
jkachmar has quit [*.net *.split]
Forkk_ has quit [*.net *.split]
shad_ has quit [*.net *.split]
rycwo has quit [*.net *.split]
d10n-work has quit [*.net *.split]
aveltras has quit [*.net *.split]
dukedave has quit [*.net *.split]
sorear has quit [*.net *.split]
benkolera has quit [*.net *.split]
MerlinGttlinger[ has quit [*.net *.split]
simbergm has quit [*.net *.split]
eliasp has quit [*.net *.split]
jkachmar_ is now known as jkachmar
c00w_ is now known as c00w
dukedave_ is now known as dukedave
georgyo_ is now known as georgyo
NekomimiScience_ is now known as NekomimiScience
Tritlo_ is now known as Tritlo
chris|_ is now known as chris|
sgraf_ is now known as sgraf
WooDWorkeR_ is now known as WooDWorkeR
angerman_ is now known as angerman
d10n-work_ is now known as d10n-work
benkolera_ is now known as benkolera
aveltras_ is now known as aveltras
thoughtpolice_ is now known as thoughtpolice
Ankhers_ is now known as Ankhers
Swant_ is now known as Swant
sorear_ is now known as sorear
TimePath has joined #nixos
malteof[m] has joined #nixos
jonreeve[m] has joined #nixos
clacke[m] has joined #nixos
dsx has joined #nixos
TimePath is now known as Guest54427
fgaz has joined #nixos
fgaz is now known as Guest57221
altavista[m] has joined #nixos
jak[m] has joined #nixos
is0x3F has joined #nixos
inf has joined #nixos
etu has joined #nixos
happyent[m] has joined #nixos
BinkyTheClown has joined #nixos
MichalLaskus[m] has joined #nixos
MerlinGttlinger[ has joined #nixos
freddie_freeload has joined #nixos
copy` has joined #nixos
momack2[m] has joined #nixos
sylvie[m] has joined #nixos
bachp has joined #nixos
xenofungus[m] has joined #nixos
orospakr[m] has joined #nixos
AntonSchirg[m] has joined #nixos
rdes[m] has joined #nixos
jasongrossman[m] has joined #nixos
Gopal[m] has joined #nixos
Nover[m] has joined #nixos
Noughtmare[m] has joined #nixos
simbergm has joined #nixos
philipp[m] has joined #nixos
ptotter[m] has joined #nixos
mexisme_ has quit [Ping timeout: 258 seconds]
clacke_movim has left #nixos [#nixos]
mexisme_ has joined #nixos
wfranzini has joined #nixos
leira has quit [Ping timeout: 260 seconds]
bakakuna has joined #nixos
mexisme_ has quit [Ping timeout: 248 seconds]
clacke_movim has joined #nixos
Mic92 has joined #nixos
bakakuna has quit [Quit: bakakuna]
goibhniu1 has joined #nixos
hio has joined #nixos
Tucky has joined #nixos
alp has quit [Ping timeout: 258 seconds]
clacke_movim has left #nixos [#nixos]
linarcx has joined #nixos
gml8 has quit [Ping timeout: 258 seconds]
clacke_movim has joined #nixos
Mainflaw has quit [Ping timeout: 272 seconds]
ericsagnes has quit [Ping timeout: 252 seconds]
kvaster_ has joined #nixos
slyfox has quit [Quit: :)]
MmeQuignon has joined #nixos
MichaelRaskin has quit [Quit: MichaelRaskin]
civodul has joined #nixos
slyfox has joined #nixos
Makaveli7 has joined #nixos
Mister_Magister has quit [Quit: bye]
<{^_^}> [nixpkgs] @basvandijk opened pull request #63718 → Backport "Improve composability of mkShell" to release-19.03 → https://git.io/fjw5k
hyper_ch2 has joined #nixos
<dminuoso> How does nixos do cleanup of files after I disable a module?
<dminuoso> (And equivalently, why is there no notion of deactivationScripts?)
Mister_Magister has joined #nixos
asheshambasta has joined #nixos
ajirx has quit [Remote host closed the connection]
<siraben> how do I make NixOS remember my SSH passphrase?
ericsagnes has joined #nixos
<siraben> Whenever I try to do a git push/pull operation it asks me for the SSH passphrase
<dminuoso> siraben: ssh-agent
<DigitalKiwi> if you have gpg too i've been happy with keychain
<{^_^}> Channel nixos-19.03 advanced to https://github.com/NixOS/nixpkgs/commit/8634c3b6199 (from 16 hours ago, history: https://channels.nix.gsc.io/nixos-19.03)
<{^_^}> [nixpkgs] @j-piecuch opened pull request #63719 → lib: add applyOptional field to options, use it in mkAliasOptionModule (fixes #63693) → https://git.io/fjw5c
<siraben> dminuoso: how so?
<DigitalKiwi> it's actually useful for ssh even if you don't use gpg though
Jackneill has joined #nixos
Jackneill has quit [Ping timeout: 272 seconds]
Jackneill has joined #nixos
Jackneill has quit [Remote host closed the connection]
Jackneill has joined #nixos
<siraben> DigitalKiwi: Thanks, will check out
<{^_^}> [nixpkgs] @basvandijk merged pull request #63718 → Backport "Improve composability of mkShell" to release-19.03 → https://git.io/fjw5k
<{^_^}> [nixpkgs] @basvandijk pushed 3 commits to release-19.03: https://git.io/fjw5g
ajirx has joined #nixos
thc202 has joined #nixos
sg2002 has joined #nixos
alp has joined #nixos
<sg2002> Hello. Have a rather simple question - how do I disable KDE in configuration.nix? I have a 32bit machine that got stuck on nixos 17 due to QT being broken. Since I generally sue it as a server I had the idea of removing the desktop altogether.
knupfer has joined #nixos
<sg2002> Afaik the only KDE mention I have in my config is "services.xserver.desktopManager.plasma5.enable = true;", which I've just set to false.
sg2002 has quit [Read error: Connection reset by peer]
sg2002 has joined #nixos
kvda has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
mexisme_ has joined #nixos
<jasongrossman> sg2002: Didn't that work? It should!
reinhardt has joined #nixos
<jasongrossman> sg2002: You may also want to set xserver.enable to false.
Shoubit has joined #nixos
<sg2002> jasongrossman: No, it didn't QT still tries to compile and when it fails I see that is'a dependency of all those KDE things. Haven't tried turning off the xserver altogether yet, but had the idea too. Probably that's what I'd do next.
cfricke has joined #nixos
<jasongrossman> sg2002: Yes, good, try that.
adamantium has quit [Ping timeout: 250 seconds]
mexisme_ has quit [Ping timeout: 268 seconds]
Mic92 has quit [Quit: WeeChat 2.3]
bakakuna has joined #nixos
bakakuna has quit [Quit: bakakuna]
bakakuna has joined #nixos
linarcx has quit [Ping timeout: 245 seconds]
kvaster_ has quit [Ping timeout: 258 seconds]
linarcx has joined #nixos
reinhardt has quit [Quit: Leaving]
goibhniu2 has joined #nixos
goibhniu1 has quit [Ping timeout: 245 seconds]
<Izorkin> flokli: https://github.com/NixOS/nixpkgs/commit/1db3a91bab24e2e6ec3fa78de5be8b6c938cb0c0#commitcomment-34044268 need full move mysql_upgrade to package mysql.client ?
knupfer has quit [Ping timeout: 248 seconds]
<{^_^}> [nixpkgs] @basvandijk opened pull request #63721 → libressl: add openssl license → https://git.io/fjwdv
<flokli> Izorkin: hm?
<Izorkin> flokli: mysql_upgrade does not work without mysqlcheck
knupfer has joined #nixos
<flokli> yes, seems so. but is mysql_upgrade part of the server package, and mysqlcheck part of the client package?
<Izorkin> flokli: in other operating systems they are separated - mysql_upgrade -> mariadb.server, mysqlcheck - mariadb.client.
<flokli> ah, i read #44343: "The goal for the split is to avoid duplicating binary files in client and server packages"
<{^_^}> https://github.com/NixOS/nixpkgs/pull/44343 (by Izorkin, 46 weeks ago, merged): mariadb: 10.2.17 -> 10.3.15
<Izorkin> https://github.com/MariaDB/server/blob/10.4/client/CMakeLists.txt#L63-L65 - can try patch and full move mysql_upgrade to mariadb.client
<Izorkin> and change nothing
<Gopal[m]> does anyone use services.borgbackup here?
<flokli> you mean you want to move mysqlcheck to the server package, too?
<Gopal[m]> and if so, do you run borg as root to avoid permission problems?
fusion809 has joined #nixos
<Izorkin> flokli: no, move mysql_upgrade bin to package mariadb.client
<Izorkin> flokli: latest update mariadb - https://github.com/NixOS/nixpkgs/pull/63355/commits
<flokli> hmm… do we already pull in the client binaries when enablign the server?
arjen-jonathan has joined #nixos
__monty__ has joined #nixos
<flokli> if so, mariadb.server could also pull in mariadb.client by referring mysqlcheck with an absolute path to ${pkgs.mariadb.client}/bin/mysqlcheck
<flokli> I'm unsure what binary should be in which server, but guess it makes sense to do it similar to other distros
<Izorkin> flokli: In other OS, when the server is installed, the client is automatically installed
MmeQuignon has quit [Read error: Connection reset by peer]
<{^_^}> [nixpkgs] @markuskowa merged pull request #63630 → vdr: 2.4.0 -> 2.4.1 → https://git.io/fjw3T
<{^_^}> [nixpkgs] @markuskowa pushed 2 commits to master: https://git.io/fjwdC
Anton-Latukha has joined #nixos
<flokli> Izorkin: currently, mariabdb.server doesn't depend on mariadb.client
linarcx has quit [Quit: WeeChat 2.5]
<Izorkin> flokli: how to fix?
<flokli> I guess mysql_upgrade is useful to have on a server, even if we don't automatically call it. If that requires the mysqlcheck command, we should make sure it's there too
linarcx has joined #nixos
<flokli> we should probably take a look again about what lands in the client and what in the server packages in other distros
<flokli> My gut feeling says having the server depend on the client package is okay, the other way around not
<flokli> I'm not sure how common it is to run mysqlcheck / mysql_upgrade on a remote machine that is not a mysql server.
<Izorkin> flokli: added this patch - https://pastebin.com/FdNegsyH ?
<flokli> this only adds the client package as a buildInput - it doesn't necessarily affect the runtime closure
<flokli> please open an issue about github.com/NixOS/nixpkgs/commit/1db3a91bab24e2e6ec3fa78de5be8b6c938cb0c0#commitcomment-34044268, so people can discuss there. there's no silver bullet
<{^_^}> [nixpkgs] @uri-canva closed pull request #48737 → pythonPackages.gyp: add Xcode 10 support → https://git.io/fxogL
<DigitalKiwi> is the problem werewolves
kvaster_ has joined #nixos
<{^_^}> #63723 (by Izorkin, 25 seconds ago, open): mariadb: duplicating binary files in client and server packages
ajirx has quit [Remote host closed the connection]
reinhardt has joined #nixos
<{^_^}> [nixpkgs] @caadar opened pull request #63724 → terminus-font: enable characters variants switching → https://git.io/fjwd7
Mic92 has joined #nixos
<{^_^}> [nixpkgs] @peterhoeg opened pull request #63725 → crystal: init at 0.29.0 → https://git.io/fjwdd
<{^_^}> [nixpkgs] @peterhoeg closed pull request #63427 → shards: 0.8.1 -> 0.9.0 → https://git.io/fjaxo
MmeQuignon has joined #nixos
<{^_^}> [nixpkgs] @davidtwco opened pull request #63726 → nixos/lidarr: allow specifying package → https://git.io/fjwdA
domogled has joined #nixos
mexisme_ has joined #nixos
Neo-- has joined #nixos
tilpner has quit [Quit: reboot]
knupfer has quit [Ping timeout: 258 seconds]
fendor_ has joined #nixos
<pbb> clever: in your kexec test you do append a gzipped cpio archive to the initrd. is anything else needed to access those files or will they just be available automatically?
<pbb> because I tried putting stuff in there and could not access it in initramfs
hyper_ch2 has quit [Remote host closed the connection]
sigmundv has joined #nixos
tilpner has joined #nixos
MmeQuignon has quit [Read error: Connection reset by peer]
MmeQuignon has joined #nixos
domogled has quit [Quit: domogled]
is_null has joined #nixos
<{^_^}> [nixpkgs] @basvandijk merged pull request #63706 → cargo-license: init at 0.2.0 → https://git.io/fjwyF
<{^_^}> [nixpkgs] @basvandijk pushed 2 commits to master: https://git.io/fjwFd
shachaf has joined #nixos
<{^_^}> [nixpkgs] @vbgl opened pull request #63727 → ocamlPackages.elpi: 1.2.0 -> 1.4.0 → https://git.io/fjwFx
ajirx has joined #nixos
<{^_^}> [nixpkgs] @basvandijk opened pull request #63728 → Backport "cargo-license: init at 0.2.0" to release-19.03 → https://git.io/fjwFj
noudle has joined #nixos
v88m has quit [Read error: Connection reset by peer]
v88m has joined #nixos
<noudle> i had a working nixos setup on my laptop, then i followed this to get the torbrowser running. since then i have no audio working anymore. https://nixos.wiki/wiki/Tor_Browser_in_a_Container
<noudle> where should i start looking for the error?
<noudle> the audio symbol just displays no output or input devices found
<Yaniel> journalctl is usually the first place to look
<noudle> uhm and how?
m0rphism has joined #nixos
<noudle> i mean what should i be looking for in the output
<Yaniel> probably something related to alsa, pulseaudio or tor
<noudle> there is something like alsactl restore 0 failed with exit code 99, then somewhere later pluseaudio: no object for name alsa_output.pci....
<noudle> after that just a stopping audio service
tilpner has quit [Ping timeout: 272 seconds]
arjen-jonathan has quit [Ping timeout: 252 seconds]
<Yaniel> well that sounds like it could be a culprit
cyphase has quit [Ping timeout: 248 seconds]
<noudle> oh wait a sec
<noudle> that was from a completely different day lol. did not notice the output contains that much..
tilpner has joined #nixos
<noudle> let me search for todaz
psyanticy has joined #nixos
<noudle> well okay its the same output
<Yaniel> have fun figuring out how to pulseaudio then
inad922 has quit [Quit: WeeChat 1.9.1]
cyphase has joined #nixos
<noudle> lol
<noudle> ty
inad922 has joined #nixos
ilmu has joined #nixos
<Yaniel> I did a short stint down that rabbit hole a while back
MmeQuignon has quit [Read error: Connection reset by peer]
<Yaniel> eventually I just decided "screw it I'll just change my workflow to suit the defaults better"
mbrgm has quit [Quit: ZNC 1.7.3 - https://znc.in]
mbrgm has joined #nixos
<noudle> what i also found now is pulseaudio: denied access to client with invalid authentication data
<noudle> guess its that
knupfer has joined #nixos
markus1189 has quit [Remote host closed the connection]
markus1189 has joined #nixos
<{^_^}> Channel nixos-19.03-small advanced to https://github.com/NixOS/nixpkgs/commit/53346d725ff (from 4 hours ago, history: https://channels.nix.gsc.io/nixos-19.03-small)
toppler has joined #nixos
<toppler> Have I got it right that the firefox in nixos-stable is broken because of mozilla's certificate expiry issue?
<noudle> okay i have an idea where its comming from now.. gotta fix it later.
Tucky has quit [Quit: WeeChat 2.5]
judson__ has quit [Remote host closed the connection]
<andi-> toppler: what is broken there for you? The certificate issue was resolved many channel versions ago
judson__ has joined #nixos
<andi-> Just ugpraded my work laptop this morning and I am writing this through firefox..
cfricke has quit [Quit: WeeChat 2.5]
noudle has quit [Ping timeout: 258 seconds]
judson__ has quit [Remote host closed the connection]
judson__ has joined #nixos
domogled has joined #nixos
<toppler> andi-: I only noticed on a fresh firefox profile. I've tried on two different machines. I'm not sure if it's the exact same issue. I can install some addons fine, but not multiaccount containers (for e.g)
jackdk has quit [Quit: Connection closed for inactivity]
<toppler> The error is "Download failed. Please check your connection."
<andi-> toppler: whats your firefox version?
<andi-> and what do you see on `about:studies`
<toppler> andi-: 66.0.3. "You have not participated in any studies."
<andi-> you probably want to update to 67.0.4 (which is on 19.03) ASAP
ee1943 has quit [Read error: Connection reset by peer]
ee1943 has joined #nixos
v88m has quit [Ping timeout: 246 seconds]
psy3497 has quit [Ping timeout: 258 seconds]
knupfer has quit [Remote host closed the connection]
knupfer has joined #nixos
<andi-> ^ toppler (just making sure you saw the line)
<toppler> andi-: Yep. Cheers. Trying to figure out why I'm not on that channel. I take it https://nixos.wiki/wiki/Nix_channels is out-of-date?
fendor_ has quit [Ping timeout: 245 seconds]
<toppler> andi-: Didn't realise I'd fallen so far behind! Thanks agian.
mexisme_ has quit [Ping timeout: 246 seconds]
sternenseemann has joined #nixos
knupfer has quit [Remote host closed the connection]
<andi-> toppler: don't see nixos-stable on there. You always must use the release number.
<etu> toppler: You can run: nix-info
xkapastel has joined #nixos
<etu> toppler: To see channels etc, it's formatted to be good to paste here
<toppler> etu: Just been going to the wrong page to find out the release number of stable. I'll hit the main website next time.
bgamari has quit [Remote host closed the connection]
orivej has joined #nixos
bgamari has joined #nixos
ericsagnes has quit [Ping timeout: 245 seconds]
drgbr has quit [Ping timeout: 246 seconds]
johnny101 has quit [Ping timeout: 246 seconds]
johnny101 has joined #nixos
knupfer has joined #nixos
Soo_Slow has joined #nixos
<{^_^}> Channel nixos-19.03-small advanced to https://github.com/NixOS/nixpkgs/commit/13781ee85c3 (from 3 hours ago, history: https://channels.nix.gsc.io/nixos-19.03-small)
jeaye has joined #nixos
Czen has quit [Read error: Connection reset by peer]
Czen has joined #nixos
nurelin_ has joined #nixos
jeaye has quit [Ping timeout: 246 seconds]
domogled has quit [Ping timeout: 245 seconds]
Xal has quit [Ping timeout: 245 seconds]
Xal has joined #nixos
orbekk has joined #nixos
ericsagnes has joined #nixos
domogled has joined #nixos
knupfer has quit [Remote host closed the connection]
drgbr has joined #nixos
knupfer has joined #nixos
jeaye has joined #nixos
knupfer has quit [Ping timeout: 244 seconds]
phdoerfler has joined #nixos
phreedom has joined #nixos
<phdoerfler> Newb question: I want to create a systemd service that launches a python3 script. No extra libraries needed. How do I do this? This is what I got so far: https://gist.github.com/phdoerfler/c22a06ef642ee7fe815ec271f1214565
stepcut has joined #nixos
MmeQuignon has joined #nixos
oida has joined #nixos
cantstanya has joined #nixos
arjen-jonathan has joined #nixos
<etu> phdoerfler: I would add ${pkgs.python3}/bin/python to the command
<ottidmes> phdoerfler: is your script executable? I would use: ExecStart = "${python}/bin/python /home/phi/thermonitor.py"; instead
andreas303 has joined #nixos
<ottidmes> phdoerfler: also you probably want to add User and Group to serviceConfig with value "phi" (I assume you dont want to run it as root)
<phdoerfler> etu: okay thanks! Yeah that makes sense
<phdoerfler> ottidmes: it is executable, yes. And yes User and Group makes a lot of sense, thanks!
<ottidmes> phdoerfler: also https://nixos.org/nixos/options.html#systemd.services.%3Cname%3E.enable is already set to true by default
clever has joined #nixos
clever has quit [Changing host]
clever has joined #nixos
<phdoerfler> okay
<phdoerfler> thanks all, it works now :)
jeaye has quit [Ping timeout: 244 seconds]
klntsky has joined #nixos
jeaye has joined #nixos
hamishmack has joined #nixos
jeaye has quit [Ping timeout: 248 seconds]
sg2002 has quit [Read error: Connection reset by peer]
jeaye has joined #nixos
pmiddend has joined #nixos
sg2002 has joined #nixos
phdoerfler has quit [Quit: Leaving.]
jeaye has quit [Ping timeout: 246 seconds]
jeaye has joined #nixos
<manveru> guess there's still no declarative config for printers/scanners? finally got one today but had to do config in cups and passing an URL to `simple-scan`... not too hard but i'd like to replicate it easily on other machines :)
ThatDocsLady has joined #nixos
<Yaniel> most things have extraConfig that gets appended to the respective config file
<manveru> also looks like nobody had a go at https://github.com/NixOS/nixpkgs/issues/17411 yet
<{^_^}> #17411 (by michalrus, 2 years ago, open): SANE module should allow editing backend configs
cantstanya has quit [Ping timeout: 260 seconds]
cantstanya has joined #nixos
alex``` has quit [Ping timeout: 246 seconds]
jeaye has quit [Ping timeout: 248 seconds]
<manveru> well, in this case i could probably do it via `environment.etc."cups/printers.conf".text` for all of the files after generating it with cups once?
<manveru> i'll try that and add the info to the wiki :)
phdoerfler has joined #nixos
phdoerfler has quit [Client Quit]
alex``` has joined #nixos
phreedom_ has joined #nixos
asheshambasta_m has joined #nixos
phreedom has quit [Quit: No Ping reply in 180 seconds.]
<{^_^}> [nixpkgs] @alyssais merged pull request #63484 → linux_5_0: remove → https://git.io/fjVqS
<{^_^}> [nixpkgs] @alyssais pushed 2 commits to master: https://git.io/fjwxe
hyper_ch has quit [Quit: ZNC 1.7.3 - https://znc.in]
eeva has quit [Remote host closed the connection]
eeva has joined #nixos
ericsagnes has quit [Ping timeout: 258 seconds]
jeaye has joined #nixos
hyper_ch has joined #nixos
Neo-- has quit [Ping timeout: 245 seconds]
MmeQuignon has quit [Read error: Connection reset by peer]
domogled has quit [Ping timeout: 246 seconds]
stepcut has quit [Remote host closed the connection]
stepcut has joined #nixos
stepcut has quit [Remote host closed the connection]
stepcut has joined #nixos
stepcut has quit [Remote host closed the connection]
stepcut has joined #nixos
stepcut has quit [Remote host closed the connection]
stepcut has joined #nixos
stepcut has quit [Remote host closed the connection]
MmeQuignon has joined #nixos
stepcut has joined #nixos
stepcut has quit [Remote host closed the connection]
reinhardt has quit [Quit: Leaving]
stepcut has joined #nixos
Synthetica has joined #nixos
stepcut has quit [Remote host closed the connection]
stepcut has joined #nixos
srhb has joined #nixos
stepcut has quit [Remote host closed the connection]
stepcut has joined #nixos
stepcut has quit [Remote host closed the connection]
stepcut has joined #nixos
stepcut has quit [Remote host closed the connection]
ericsagnes has joined #nixos
stepcut has joined #nixos
stepcut has quit [Remote host closed the connection]
stepcut has joined #nixos
stepcut has quit [Remote host closed the connection]
jeaye has quit [Ping timeout: 272 seconds]
torporish has joined #nixos
<torporish> hey, anyone able to assist on https://github.com/NixOS/nixpkgs/issues/37442 postgrest is still broken and i don't know why pinning fails too
<{^_^}> #37442 (by jtojnar, 1 year ago, open): haskellPackages.postgrest broken
<manveru> looks like this cups config isn't gonna work, fails because i generated the /etc/cups directory and it conflicts :|
<torporish> I just need to run the binary, I could use Docker but would rather avoid that. Can I use old Hydra builds to get my build?
arjen-jonathan has quit [Ping timeout: 252 seconds]
jeaye has joined #nixos
sg2002 has quit [Disconnected by services]
sg2002 has joined #nixos
polman has quit [Ping timeout: 244 seconds]
sb0 has quit [Quit: Leaving]
MmeQuignon has quit [Read error: Connection reset by peer]
MmeQuignon has joined #nixos
jeaye has quit [Ping timeout: 258 seconds]
polman has joined #nixos
jeaye has joined #nixos
srhb has quit [Quit: ZNC 1.7.3 - https://znc.in]
<DigitalKiwi> manveru: not exactly what you want but as a work around you can just make it a shared printer with cups for the other computers?
<manveru> then i'd still need to copy that shared-printer config, no?
jeaye has quit [Ping timeout: 258 seconds]
<DigitalKiwi> other computer see it on network
<manveru> ok, i have no experience with that
<manveru> thanks :)
jeaye has joined #nixos
vmandela has quit [Quit: Leaving]
gxt has joined #nixos
<DigitalKiwi> yw
MmeQuignon has quit [Read error: Connection reset by peer]
iyzsong has joined #nixos
srhb has joined #nixos
srhb has quit [Client Quit]
srhb has joined #nixos
stepcut has joined #nixos
srhb has quit [Client Quit]
srhb has joined #nixos
<{^_^}> [nixpkgs] @timor opened pull request #63729 → PythonPackages: add rig + sentinel → https://git.io/fjwpY
stepcut has quit [Ping timeout: 268 seconds]
etrepum has joined #nixos
srhb has quit [Client Quit]
srhb has joined #nixos
srhb has quit [Remote host closed the connection]
srhb has joined #nixos
<pie_> ilmu, joepie91 is into ux stuff you should talk to him about your WM ideas
isHavvy has joined #nixos
Havvy has quit [Ping timeout: 246 seconds]
jackdk has joined #nixos
polman has quit [Ping timeout: 244 seconds]
ajirx has quit [Remote host closed the connection]
srhb has quit [Client Quit]
xkapastel has quit [Quit: Connection closed for inactivity]
srhb has joined #nixos
polman has joined #nixos
clacke_movim has left #nixos [#nixos]
__monty__ has quit [Quit: leaving]
srhb has quit [Client Quit]
asheshambasta_m has quit [Quit: Leaving.]
srhb has joined #nixos
aswanson has joined #nixos
asheshambasta_m has joined #nixos
asheshambasta_m has quit [Client Quit]
polman has quit [Ping timeout: 244 seconds]
arjen-jonathan has joined #nixos
hoijui has joined #nixos
srhb has quit [Client Quit]
srhb has joined #nixos
fendor_ has joined #nixos
asheshambasta_m has joined #nixos
srhb has quit [Client Quit]
kisik21 has joined #nixos
polman has joined #nixos
srhb has joined #nixos
gonz_ has left #nixos [#nixos]
<kisik21> So. Let's say I have some containers. What is the Right Way (TM) to give them access to host data? Bind mounts in host's config.fileSystems (optionally read-only)?
<kisik21> can a single bind-mounted folder be shared safely between several containers?
<{^_^}> [nixpkgs] @abbradar opened pull request #63731 → LP and optimization packages → https://git.io/fjwpx
MmeQuignon has joined #nixos
samrose has joined #nixos
xelxebar has joined #nixos
cfricke has joined #nixos
ddellacosta has joined #nixos
<{^_^}> [nixpkgs] @vcunat pushed commit from @alyssais to release-19.03 « Merge #63484: linux_5_0: remove »: https://git.io/fjwhC
trevorriles has joined #nixos
ericsagnes has quit [Ping timeout: 246 seconds]
kisik21 has quit [Quit: ERC (IRC client for Emacs 26.2)]
sg2002 has quit [Ping timeout: 245 seconds]
hoijui has quit [Quit: Leaving]
nixy0 has joined #nixos
yorick has joined #nixos
<{^_^}> [nixpkgs] @Mic92 opened pull request #63732 → radare2: 3.5.1 -> 3.6.0 → https://git.io/fjwhz
<yorick> is anyone doing rabbitmq+mqtt here?
<gchristensen> I do rabbitmq but not mqtt
wfranzini has quit [Remote host closed the connection]
wfranzini has joined #nixos
Makaveli7 has quit [Quit: WeeChat 2.5]
nixy0 has quit [Client Quit]
nixy has quit [Quit: ZNC 1.7.2 - https://znc.in]
nixy has joined #nixos
nixy0 has joined #nixos
<yorick> gchristensen: how does nixos deal with the dynamic configuration? seems like I have to do rabbitmq-plugins enable rabbitmq_mqtt && rabbitmqctl add_user
endformationage has joined #nixos
<{^_^}> [nixpkgs] @abbradar merged pull request #63731 → LP and optimization packages → https://git.io/fjwpx
<{^_^}> [nixpkgs] @abbradar pushed 6 commits to master: https://git.io/fjwh1
<{^_^}> [nixpkgs] @Mic92 pushed 2 commits to master: https://git.io/fjwhH
<{^_^}> [nixpkgs] @Mic92 merged pull request #63732 → radare2: 3.5.1 -> 3.6.0 → https://git.io/fjwhz
ericsagnes has joined #nixos
<pmiddend> Anyone up for a review of https://github.com/NixOS/nixpkgs/pull/63608
<{^_^}> #63608 (by pmiddend, 3 days ago, open): SDL_gpu: init at 20190124
shabius has quit [Ping timeout: 258 seconds]
kvaster_ has quit [Ping timeout: 246 seconds]
nixy0 has quit [Quit: The Lounge - https://thelounge.chat]
arjen-jonathan has quit [Ping timeout: 258 seconds]
phdoerfler has joined #nixos
xkapastel has joined #nixos
ericsagnes has quit [Ping timeout: 252 seconds]
nixy0 has joined #nixos
<{^_^}> [nixpkgs] @domenkozar merged pull request #63477 → elmPackages.{elm-test,elm-analyse..}: tooling additions and fixes → https://git.io/fjVkF
<{^_^}> [nixpkgs] @domenkozar pushed 2 commits to master: https://git.io/fjwjO
jb55 has joined #nixos
<gchristensen> yorick: plugins can be configured declaratively. users, I configure separately
<gchristensen> yorick: especially since users travel with the cluster
torporish has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @Mic92 merged pull request #63729 → PythonPackages: add rig + sentinel → https://git.io/fjwpY
<{^_^}> [nixpkgs] @Mic92 pushed 3 commits to master: https://git.io/fjwj4
phdoerfler has quit [Quit: Leaving.]
<sternenseemann> what is the usual time it takes for nixpkgs to update hackage-packages.nix?
shabius has joined #nixos
ericsagnes has joined #nixos
MmeQuignon has quit [Read error: Connection reset by peer]
clacke_movim has joined #nixos
<yorick> sternenseemann: twice a month?
is_null has quit [Ping timeout: 248 seconds]
Okinan has joined #nixos
<clever> pbb: they should just be available in the initrd, do you have an example of what your doing?
<infinisil> sternenseemann: @peti has automatic updates running once a day on the haskell-updates branch, which gets merged into master maybe weekly
Okinan_ has joined #nixos
Okinan has quit [Ping timeout: 276 seconds]
Okinan_ has quit [Client Quit]
Okinan has joined #nixos
abathur has joined #nixos
<ddellacosta> is there a way to install nginx on the system level (so e.g. I can continue to use systemctl to control it) while using my own configuration file? I don't see any options to specify a file in any of the services.nginx.* directives
<{^_^}> [nixpkgs] @Profpatsch merged pull request #63621 → yj: init at 4.0.0 → https://git.io/fjwqP
<{^_^}> [nixpkgs] @Profpatsch pushed to master « yj: init at 4.0.0 »: https://git.io/fjwj5
<{^_^}> [nixpkgs] @smaret opened pull request #63733 → pythonPackages.black: fix tests in sandbox mode on Darwin → https://git.io/fjwjd
<infinisil> ddellacosta: You should be able to override ExecStart of the nginx service to what you need
bakakuna has quit [Ping timeout: 252 seconds]
<infinisil> E.g. `systemd.services.nginx.serviceConfig.ExecStart = mkForce "${config.services.nginx.package}/bin/nginx -c /path/to/config/file -p ${config.services.nginx.stateDir}";`
<{^_^}> [nixpkgs] @Profpatsch merged pull request #63649 → Unp fixes → https://git.io/fjw4M
<{^_^}> [nixpkgs] @Profpatsch pushed 2 commits to master: https://git.io/fjwjA
jeregrine has joined #nixos
<manveru> isn't it services.nginx.config
<clever> ddellacosta: why do you need your own config file?
<ddellacosta> infinisil: thanks, I'll give that a shot
<infinisil> manveru: With .config it just inserts that part in the other-wise hardcoded config file
<infinisil> With what I showed you can override the whole config file
<manveru> there are only 3 lines hardcoded... not sure that would cause much headache :)
<manveru> but yeahh
<ddellacosta> clever: I just find it to be a major pain in the butt to use the directives...it's not clear how to do stuff sometimes, and it's an additional translation layer past configuring nginx which I don't need
<infinisil> manveru: Ah true
<manveru> either way it will break nginx usage from any other nixos module
<ddellacosta> clever: and I'm trying to update stuff iteratively right now, it's just slow for me
<infinisil> ddellacosta: Yeah so you probably want to use .config instead
<ddellacosta> infinisil: I tried that initially, I couldn't figure out how to use that without re-running `nixos-rebuild switch` every time I changed it
ym555 has joined #nixos
<dminuoso> How does one clean up after files? Shouldn't there be a sort of deactivationScripts option for modules?
<infinisil> ddellacosta: Ah yeah, if nginx doesn't have any `include` like statement, then that's indeed not possible with .config
<Yaniel> clean up after what files?
<Yaniel> generally speaking you don't need to clean up, since things that are not referenced anymore are simply not linked anywhere from the nix store, and removed next time you do garbage collection
<dminuoso> Yaniel: Would garbage collection clean up after files in /etc ?
<dminuoso> Yaniel: In my case I have a mutable state directory in /var/run
<Yaniel> no, files in /etc are linked from the nix store AFAIK
<infinisil> ddellacosta: Although, it seems to have that: https://nginx.org/en/docs/ngx_core_module.html#include
<Yaniel> and simply unlinked when switching to a generation that does not need them or needs a different version
<dminuoso> Yaniel: How does that unlinking work?
<Yaniel> by removing the symlink?
<ddellacosta> infinisil: okay thanks, I'll give that a shot
<infinisil> dminuoso: And /var/run is a symlink to /run, which is a tmpfs, meaning it's not persisted accross reboots
<dminuoso> Yaniel: yeah but at what point does that happen?
<dminuoso> Ahh infinisil, that explains it.
<dminuoso> infinisil: I take it that this module is executed on every rebuild
<Yaniel> when you boot or switch generations
<dminuoso> infinisil: Well yeah, but on long lived machines that might not be an option.
<infinisil> dminuoso: Indeed, that's what the `Setting up etc..` step does
phdoerfler has joined #nixos
phdoerfler has quit [Client Quit]
<Yaniel> as in nixos-rebuild switch
jtojnar has joined #nixos
<monotux> so I'd like to build luadbi with support for postgresql, to use with prosody (https://github.com/NixOS/nixpkgs/blob/release-19.03/pkgs/servers/xmpp/prosody/default.nix)
<monotux> do I override the luadbi package inside a override of the prosody package or how do I do it?
<{^_^}> [nixpkgs] @marsam merged pull request #63694 → lazygit: 0.7.2 -> 0.8 → https://git.io/fjw1f
<{^_^}> [nixpkgs] @marsam pushed 2 commits to master: https://git.io/fjreq
SebastianHasler[ has joined #nixos
<monotux> this is probably very related, https://github.com/NixOS/nixpkgs/blob/master/pkgs/development/lua-modules/overrides.nix but that's for master
linarcx has quit [Quit: WeeChat 2.5]
<{^_^}> [nixpkgs] @domenkozar pushed to release-19.03 « duplicati: 2.0.3.3 -> 2.0.4.5 »: https://git.io/fjreu
iyzsong has quit [Ping timeout: 252 seconds]
<{^_^}> Channel nixos-19.03-small advanced to https://github.com/NixOS/nixpkgs/commit/a383c3731c0 (from 2 hours ago, history: https://channels.nix.gsc.io/nixos-19.03-small)
<vaibhavsagar> is GHC 8.6.5 going to be backported to 19.03
happyent[m] is now known as HappyEnt[m]
<zacts> vaibhavsagar: I currently have GHC 8.6.4
<zacts> I'm testing to see if I can upgrade it now
<vaibhavsagar> yes, me too :)
Schnee has joined #nixos
<zacts> I have been able to upgrade via git before, until the upstream builds are updated
<eraserhd> If I have a PR languishing, and the maintainer of the package isn't reviewing it, can I take on maintaining the package? Is there something else I should do?
<zacts> https://nixos.org/nixos/manual/index.html#sec-custom-packages <-- `nixos-rebuild switch --upgrade -I nixpkgs=/path/to/git/nixpkgs
<zacts> `
<zacts> well you may not want to use the --upgrade there though. I haven't done it in a while
<Schnee> Hello. I am trying to figure out how to setup LUKS with yubikey and am a bit unsure where to start. Is there an updated tutorial regardig this that people are aware of? Should I encrypt all drives including root? I was thinking of just encrypting one drive but not sure how decryption will be handled.
<clever> zacts: yeah, the --upgrade is useless
<hyper_ch> I just encrypt everything - that way I won't accidentally forget to encrypt something important
<clever> zacts: it just tells nix-channel to --update, so mixing with -I nixpkgs= is pointless
<nilsirl[m]> How can I have a workspace for contributing/modifying a software that is already packaged in nixos?
fendor_ has quit [Ping timeout: 258 seconds]
<{^_^}> [nixpkgs] @angerman opened pull request #63734 → Angerman/align ghc865 → https://git.io/fjrep
<{^_^}> [nixpkgs] @angerman closed pull request #63734 → Angerman/align ghc865 → https://git.io/fjrep
Guest57221 is now known as fgaz
ddellacosta has quit [Ping timeout: 272 seconds]
bakakuna has joined #nixos
pmiddend has quit [Quit: WeeChat 2.5]
<exarkun> How do I add non-python packages to a (python.withPackages (...)).env?
bakakuna has quit [Remote host closed the connection]
bakakuna has joined #nixos
bakakuna has quit [Remote host closed the connection]
ddellacosta has joined #nixos
phdoerfler has joined #nixos
phdoerfler has quit [Client Quit]
trevorriles has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
trevorriles has joined #nixos
<Schnee> hyper_ch what form of security do you use?
adisbladis1 is now known as adisbladis
<nilsirl[m]> Is nixpkgs rolling release?
vmandela has joined #nixos
ddellacosta has quit [Ping timeout: 244 seconds]
trevorriles has quit [Client Quit]
<Taneb> nilsirl[m]: there's an "unstable" channel which is rolling release, and stable channels which are split off every six months
<nilsirl[m]> @tan
<nilsirl[m]> Taneb: so that's for both packages and nix
<Taneb> I don't understand what you mean by that
<{^_^}> [nixpkgs] @FRidh merged pull request #63733 → pythonPackages.black: fix tests in sandbox mode on Darwin → https://git.io/fjwjd
<{^_^}> [nixpkgs] @FRidh pushed commit from @smaret to master « pythonPackages.black: fix tests in sandbox mode on Darwin »: https://git.io/fjrvu
<nilsirl[m]> Taneb: I thought that the packages were rolling release but no nix or smth like that nevermind
trevorriles has joined #nixos
<tilpner> nilsirl[m]: On NixOS, Nix is installed from nixpkgs
<{^_^}> [nixpkgs] @FRidh pushed 2 commits to master: https://git.io/fjrvV
<{^_^}> [nixpkgs] @FRidh merged pull request #63542 → pythonPackages.msrestazure: 0.6.0 -> 0.6.1 → https://git.io/fjVai
<nilsirl[m]> tilpner: I need the last version of godot. What should I do?
<infinisil> eraserhd: You can link to the PR here
<{^_^}> [nix] @edolstra pushed 2 commits to master: https://git.io/fjrvo
Neo-- has joined #nixos
<eraserhd> infinisil: ok
<eraserhd> https://github.com/NixOS/nixpkgs/pull/61385 <-- PR in need of review/merge (package maintainer not responding)
<{^_^}> #61385 (by eraserhd, 6 weeks ago, open): kakoune: support for adding plugins
<infinisil> And btw, package maintainers aren't really responsible for reviewing PRs. Of course it might be nice if they do, but there's no obligation
asheshambasta_m has quit [Quit: Leaving.]
<{^_^}> [nixpkgs] @Ekleog opened pull request #63735 → manual: remind to drop kernels that will get EOL'd → https://git.io/fjrvH
witchof0x20 has quit [Quit: WeeChat 2.4]
arjen-jonathan has joined #nixos
witchof0x20 has joined #nixos
v88m has joined #nixos
MmeQuignon has joined #nixos
<eraserhd> infinisil: good to know :)
<Taneb> The "monosat" package seems to be broken on Linux
waleee-cl has joined #nixos
knupfer has joined #nixos
knupfer has quit [Client Quit]
<tilpner> ,unstable nilsirl[m]
knupfer has joined #nixos
<exarkun> is there a cli to stop a nix build running on the nix daemon?
<tilpner> exarkun: Not a proper way, but systemctl restart nix-daemon is what I usually end up doing
sg2002 has joined #nixos
<hyper_ch> Schnee: what do you mean?
<hyper_ch> Schnee: what do you mean what security I use?
Schnee has quit [Ping timeout: 260 seconds]
orivej has quit [Ping timeout: 272 seconds]
knupfer has quit [Quit: knupfer]
knupfer has joined #nixos
civodul has quit [Quit: ERC (IRC client for Emacs 26.2)]
aszlig has quit [Quit: Kerneling down for reboot NOW.]
aszlig has joined #nixos
ym555_ has joined #nixos
ym555 has quit [Ping timeout: 245 seconds]
cjpbirkbeck has joined #nixos
ym555 has joined #nixos
wfranzini has quit [Remote host closed the connection]
phdoerfler has joined #nixos
phdoerfler has quit [Client Quit]
ym555_ has quit [Ping timeout: 272 seconds]
Guanin has joined #nixos
phdoerfler has joined #nixos
phdoerfler has quit [Client Quit]
phdoerfler has joined #nixos
klntsky has quit [Remote host closed the connection]
klntsky has joined #nixos
<eddyb> testing a hack now to make `doCheck = true;` work for GCC
<eddyb> it involves adding one of these for `SYSROOT_CFLAGS_FOR_TARGET` https://github.com/NixOS/nixpkgs/blob/master/pkgs/development/compilers/gcc/builder.sh#L124
<eddyb> which is, like, the only thing that propagates to the testsuite
kvaster_ has joined #nixos
alpounet has joined #nixos
alp has quit [Ping timeout: 257 seconds]
Lisanna has joined #nixos
dbmikus has joined #nixos
<exarkun> tilpner:thanks
sigmundv has quit [Ping timeout: 245 seconds]
judson_ has joined #nixos
<exarkun> I can't seem to get myself an environment with both an upgraded openssl and a python interpreter with some modules built against that openssl.
phdoerfler has quit [Quit: Leaving.]
judson__ has quit [Remote host closed the connection]
arjen-jonathan has quit [Ping timeout: 264 seconds]
alex``` has quit [Ping timeout: 258 seconds]
erasmas has joined #nixos
alex``` has joined #nixos
<{^_^}> Channel nixos-19.03-small advanced to https://github.com/NixOS/nixpkgs/commit/01966e8b799 (from 2 hours ago, history: https://channels.nix.gsc.io/nixos-19.03-small)
{`-`} has joined #nixos
alp has joined #nixos
<{^_^}> [nixpkgs] @Mic92 pushed to master « rambox: 0.6.7 -> 0.6.9 »: https://git.io/fjrJo
ym555 has quit [Ping timeout: 248 seconds]
alpounet has quit [Ping timeout: 258 seconds]
asheshambasta_m has joined #nixos
<{^_^}> [nixpkgs] @Mic92 opened pull request #63737 → rambox: 0.6.6 -> 0.6.7 → https://git.io/fjrJb
<Izorkin> How to ned to merge PR #61816 #61722 #63355 #63150 ?
<{^_^}> https://github.com/NixOS/nixpkgs/pull/61816 (by Izorkin, 4 weeks ago, open): nginxMainline: 1.16.0 -> 1.17.0
<{^_^}> https://github.com/NixOS/nixpkgs/pull/61722 (by Izorkin, 5 weeks ago, open): nginxModules.pinba: init at 13.05.2019
<{^_^}> https://github.com/NixOS/nixpkgs/pull/63355 (by Izorkin, 6 days ago, open): mariadb: 10.3.15 -> 10.3.16
<{^_^}> https://github.com/NixOS/nixpkgs/pull/63150 (by Izorkin, 1 week ago, open): nixos/tests/prosody: update prosody tests
ym555 has joined #nixos
ddellacosta has joined #nixos
fendor_ has joined #nixos
sg2002 has quit [Quit: ERC (IRC client for Emacs 26.2)]
cfricke has quit [Quit: WeeChat 2.5]
asheshambasta has quit [Ping timeout: 252 seconds]
<spacekookie> Oh hey eddyb, you here? :)
<eddyb> spacekookie: I am *everywhere* :P
<spacekookie> /o\
<spacekookie> Btw, anyone got a recommendation for a unicode glyph font?
<spacekookie> My computer can't display non-emoji like 🖧 properly :(
<eddyb> mine can but I'm not sure what it's using
<eddyb> try Symbola?
<eddyb> spacekookie: ah no found it: "Noto Sans Symbols2—Local file(1 glyph)"
<spacekookie> That's just the symbols? Because for emoji I want the twitter ones
<eddyb> spacekookie: weird, I have `pkgs.noto-fonts-emoji` in `fonts.fonts`
trevorriles has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<eddyb> I wonder if there's a package with just the Symbols part
<spacekookie> Weird
<eddyb> spacekookie: but `symbola` might work?
<spacekookie> I'll try symbola first and see what that looks like
<eddyb> as long as it doesn't override your emojis... actually, neither should override anything, they're equally suited as fallback fonts, I'd expect
<spacekookie> symbola isn't awfully pretty but works
<spacekookie> Thanks :3
kvaster_ has quit [Ping timeout: 272 seconds]
vmandela has quit [Quit: Leaving]
<spacekookie> Finally I can see my favourite 🖧 glyph
<spacekookie> <something something "you've been in a coma" meme>
orivej has joined #nixos
alex``` has quit [Ping timeout: 258 seconds]
abathur has quit [Ping timeout: 272 seconds]
fendor_ has quit [Ping timeout: 245 seconds]
abathur has joined #nixos
alex``` has joined #nixos
dbmikus has quit [Ping timeout: 252 seconds]
sheeldotme has joined #nixos
asheshambasta_m has quit [Quit: Leaving.]
rfold has joined #nixos
<Czen> Elixir 1.9 released bois
pepegar has joined #nixos
<zfnmxt> Is it possible to configure the `Restart=` systemd option using `systemd.service.<name>`? I don't see anything related to it for the configuration.nix options.
<zfnmxt> Oh wait, I just found `serviceConfig`. I think that'll do it. :)
<zfnmxt> gchristensen: Right! Thanks.
Drakonis has joined #nixos
<gchristensen> yep!
<zfnmxt> Didn't know that ^ existed. Super handy.
<gchristensen> should probably move it to a nixos.org domain
pepegar has quit [Remote host closed the connection]
arjen-jonathan has joined #nixos
<nahamu> gchristensen: is that powered by phabricator?
<gchristensen> Hound
<nahamu> cool
dbmikus has joined #nixos
<gchristensen> it is so good. supports regexes too
ThatDocsLady has quit [Ping timeout: 252 seconds]
linarcx has joined #nixos
trevorriles has joined #nixos
knupfer has quit [Ping timeout: 252 seconds]
freeman42x has joined #nixos
is_null has joined #nixos
<{^_^}> [nixpkgs] @Chiiruno opened pull request #63738 → v: init at 0.1.0 → https://git.io/fjrTC
kvaster_ has joined #nixos
Mateon2 has joined #nixos
Mateon1 has quit [Ping timeout: 245 seconds]
Mateon2 is now known as Mateon1
is_null has quit [Ping timeout: 244 seconds]
lovesegfault has quit [Ping timeout: 252 seconds]
fragamus has joined #nixos
<worldofpeace> ,locate bin dde-shutdown
<{^_^}> Found in packages: deepin.dde-session-ui
fragamus has quit [Quit: Colloquy for iPhone - http://colloquy.mobi]
marklite has joined #nixos
marklite has left #nixos ["will be back soon!"]
<Guanin> I'm currently trying to write a test and have a problem: when using virtualisation.vlans, the udhcpc in the initramfs won't pick up an IP via DHCP
<Guanin> I'm just wondering if I should set the IP manually or try to fix that problem
<gchristensen> Guanin: maybe that'll help?
<Guanin> Thanks, I guess so :)
* gchristensen should add that to the docs
<{^_^}> [nixpkgs] @tadfisher opened pull request #63739 → plata-theme: 0.8.3 -> 0.8.6 → https://git.io/fjrT9
mac10688 has quit [Ping timeout: 258 seconds]
is_null has joined #nixos
lovesegfault has joined #nixos
<Guanin> Might be not exactly what I am looking for. To elaborate: I'm the author of PR #63165 and want to write a more sophisticated test than the one I've submitted already. So currently, my draft looks like this https://gist.github.com/Amarandus/161d2541d4dcab988e1d614cf25d5097 and the main problem here is that ovpnclient runs udhcpc but fails to get an IP for vlan 1
<{^_^}> https://github.com/NixOS/nixpkgs/pull/63165 (by Amarandus, 1 week ago, open): nixos/system/boot/initrd-openvpn: New openvpn options for initrd
orivej has quit [Ping timeout: 272 seconds]
fendor has joined #nixos
o1lo01ol1o has joined #nixos
<slabity> Anyone think they could take a look at PR https://github.com/NixOS/nixpkgs/pull/63339 - Not sure who the maintainer/reviewer is for this.
<{^_^}> #63339 (by Slabity, 1 week ago, open): Fix restya-board's phpfpm.pools option
nixy0 has quit [Quit: The Lounge - https://thelounge.chat]
is_null has quit [Ping timeout: 244 seconds]
Guanin has quit [Quit: Leaving]
Guanin has joined #nixos
<eddyb> spacekookie: oh god I just looked at it on my phone running Oreo LineageOS and it's a square :/
Ariakenom has joined #nixos
<eddyb> I wonder if there is a Magisk thing for better fonts
<spacekookie> Hmm
ris has joined #nixos
mexisme_ has joined #nixos
Shoubit has quit [Ping timeout: 248 seconds]
fendor_ has joined #nixos
mexisme_ has quit [Ping timeout: 272 seconds]
ddellacosta has quit [Ping timeout: 245 seconds]
cjpbirkbeck has quit [Quit: Quitting now.]
ZombieByte has quit [Ping timeout: 246 seconds]
PLPD-Bot has quit [Remote host closed the connection]
ym555 has quit [Quit: leaving...]
Neo-- has quit [Ping timeout: 264 seconds]
PLPD-Bot has joined #nixos
ym555 has joined #nixos
<monokrome> Has anyone seen this before? O_o
<monokrome> xrandr: Configure crtc 0 failed
civodul has joined #nixos
<gchristensen> yea
<{^_^}> [nixpkgs] @samueldr merged pull request #62852 → nixos/desktop-managers/xterm: Defaults to xserver's state → https://git.io/fjziY
<monokrome> Is it a GPU issue? :(
<{^_^}> [nixpkgs] @samueldr pushed 2 commits to master: https://git.io/fjrkB
<gchristensen> I don't know what it means or how to fix it, but I think it can be
<slabity> Yea, GPU issue
<simpson> monokrome: Is your GPU ancient? Have you seen it do wider modes than 4096px?
<monokrome> simpson: No and yes
<gchristensen> hot plugging idsplays and errors like that took me to sway / wayland. wayland is objectively worse in many ways and applications are much worse, but it gets hot plug right
<simpson> Well, it's not the obvious problem, then. Wonder what's wrong.
<slabity> CRTC is the scanout controller responsible for timing and resolution
<monokrome> It's not a hot plug issue, it happens even if I reboot?
<gchristensen> yeah unrelated to hotplugging I'd see it
<monokrome> Maybe X is using the wrong driver?
<monokrome> ,locate lspci
<{^_^}> Found in packages: toybox, busybox, pciutils
<monokrome> thnx bot
<samueldr> in my experience, with nvidia drivers, it was because I was asking of a too large area
is_null has joined #nixos
<monokrome> I want to avoid Wayland beacuse I don't think I can easily run dwm in it
<gchristensen> worth trying to fix without wayland for sure
<monokrome> I just have an intel GPU, not nVidia though
<slabity> It's possible that you don't have enough CRTCs to run the configuration you want
<{^_^}> [nixpkgs] @samueldr merged pull request #63147 → aarch64: misc. graphical boot fixes → https://git.io/fj2dH
<{^_^}> [nixpkgs] @samueldr pushed 4 commits to master: https://git.io/fjrkz
<slabity> If you only have 1 CRTC that can handle a specific encoder type that both eDP and DP uses, then configuration will fail
<monokrome> I don't think so, newer intel GPUs can do two 4K screens
<monokrome> Also, it can handle the external + attached monitor fine
<slabity> Can you run an `xrandr --prop`?
<{^_^}> [nixpkgs] @samueldr merged pull request #62462 → sd-image: FAT free /boot → https://git.io/fjE0m
<{^_^}> [nixpkgs] @samueldr pushed 8 commits to master: https://git.io/fjrk2
<monokrome> which is a similar setup, I think
<samueldr> oh, slabity, you just made me realise that was it, using too many outputs, not a too large area; I have this card with 4 outputs, but it can only drive 2 at once :/
<monokrome> eDP1 is off, so only trying to drive 2 here
<monokrome> DP1-1 and DP1-2
<slabity> samueldr: Yea, that's actually a common issue because GPU manufacturers don't specify the type of setup to provide 'N-monitor' support
<samueldr> in my case the card can handle any two pairs, but that's it, only two at once (though at least it was documented)
mexisme_ has joined #nixos
ddellacosta has joined #nixos
is_null has quit [Ping timeout: 245 seconds]
<slabity> monokrome: Do you still get the issue if you leave out the `--right-of DP1-1`?
<slabity> Maybe see what happens if you leave out `--rotate left` as well
simbergm has quit [*.net *.split]
xenofungus[m] has quit [*.net *.split]
AntonSchirg[m] has quit [*.net *.split]
frederic_chopwn4 has quit [*.net *.split]
jonreeve[m] has quit [*.net *.split]
<aveltras> anyone having an error when using stack (haskell build tool) ? it spits this error "Cannot determine project root directory for Docker sandbox." when trying to create a new project
frederic_chopwn4 has joined #nixos
jonreeve[m] has joined #nixos
simbergm has joined #nixos
<monokrome> hmm
xenofungus[m] has joined #nixos
AntonSchirg[m] has joined #nixos
<monokrome> so I put them both at 640x480 and that worked
<monokrome> but if I turn off DP1-2 and try to put DP1-1 back to where it was
<monokrome> same issue on DP1-1 now
<monokrome> (which would be the only device)
ddellacosta has quit [Ping timeout: 246 seconds]
lovesegfault has quit [Quit: WeeChat 2.5]
<slabity> So turning everything off except DP1-1 still results in the CRTC issue?
qqlq has quit [Quit: ZNC 1.7.3 - https://znc.in]
<ris> ahem #63594
<{^_^}> https://github.com/NixOS/nixpkgs/pull/63594 (by risicle, 3 days ago, open): samba: 4.10.4 -> 4.10.5 (security fix)
zupo has joined #nixos
andreas303 has quit [Ping timeout: 260 seconds]
orivej has joined #nixos
andreas31 has joined #nixos
kvaster_ has quit [Ping timeout: 245 seconds]
waleee-cl has quit [Quit: Connection closed for inactivity]
zupo has quit [Ping timeout: 248 seconds]
<elvishjerricco> What is `extraOutputsToInstall` supposed to do with `buildFHSUserEnv`?
ThatDocsLady has joined #nixos
fendor_ has quit [Ping timeout: 244 seconds]
<monokrome> slabity: Yeah, but if I took the res down, disabled DP1-2, then bring the res of DP1-1 back up, it works?
day|flip has joined #nixos
zupo has joined #nixos
<monokrome> before I installed Linux, Windows seemed to run both monitors at full resolution fine - but maybe that's just something Windows does
detran has quit [Ping timeout: 245 seconds]
<monokrome> It says it's using i915
<monokrome> which I think is wrong unless that's what "intel" is?
<monokrome> (I thought i915 was an old intel one for some reason?)
linarcx has quit [Quit: WeeChat 2.5]
zupo_ has joined #nixos
zupo has quit [Ping timeout: 252 seconds]
<monokrome> ,locate glxsphers
<monokrome> ,locate glxspheres
justbeingglad has joined #nixos
justbeingglad has left #nixos [#nixos]
<Drakonis> ,locate glxsphere
<{^_^}> Found in packages: vogl, virtualgl, virtualglLib
<{^_^}> Couldn't find in any packages
<{^_^}> Found in packages: vogl, virtualgl, virtualglLib
<monokrome> hmmm
<monokrome> the autocorrect was cool there :o
<monokrome> (or it did it twice for another reason?)
Guest80637 has quit [Ping timeout: 258 seconds]
detran has joined #nixos
Guest80637 has joined #nixos
ThatDocsLady has quit [Ping timeout: 252 seconds]
is_null has joined #nixos
kvaster_ has joined #nixos
<day|flip> i think intel skylake and up it i965
o1lo01ol1o has quit [Remote host closed the connection]
lordcirth has quit [Remote host closed the connection]
<day|flip> just look at VIDEO_CARDS https://wiki.gentoo.org/wiki/Intel
<day|flip> basicly Gen 4 and up
<{^_^}> [nix] @edolstra pushed 2 commits to flakes: https://git.io/fjrLt
selfsymmetric-pa has joined #nixos
<{^_^}> [nixpkgs] @florianjacob opened pull request #63742 → journalwatch: fix pytest checks → https://git.io/fjrLq
<monokrome> day|flip: Yeah, I think you're right >.<
lordcirth has joined #nixos
is_null has quit [Ping timeout: 246 seconds]
psyanticy has quit [Quit: Connection closed for inactivity]
<ivegotasthma> hello, what's the preferred way of developing haskell on nixos?
<Ankhers> ,locate pdflatex
<{^_^}> Found in packages: tetex, texlive.combined.scheme-basic, texlive.combined.scheme-small, texlive.combined.scheme-medium, texlive.combined.scheme-minimal
ddellacosta has joined #nixos
<Ankhers> ivegotasthma: I personally so not use Haskell, but I believe https://github.com/Gabriel439/haskell-nix is a good start.
wfranzini has joined #nixos
selfsymmetric-pa has quit [Remote host closed the connection]
<{^_^}> [nix] @edolstra pushed 7 commits to master: https://git.io/fjrLX
arjen-jonathan has quit [Ping timeout: 258 seconds]
knupfer has joined #nixos
<{^_^}> [nixpkgs] @smaret opened pull request #63743 → gildas: 20190601_b -> 20190601_c → https://git.io/fjrL7
oida has quit [Remote host closed the connection]
oida has joined #nixos
zupo_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
dansho has quit [Ping timeout: 272 seconds]
selfsymmetric-pa has joined #nixos
<{^_^}> [nixpkgs] @samueldr merged pull request #63594 → samba: 4.10.4 -> 4.10.5 (security fix) → https://git.io/fjVA8
<{^_^}> [nixpkgs] @samueldr pushed 2 commits to master: https://git.io/fjrLb
<samueldr> thanks ris
<gchristensen> ris++
<{^_^}> ris's karma got increased to 1
<ris> well that's something... i didn't know about
<{^_^}> [nixpkgs] @flokli merged pull request #63532 → bazel: 0.26.1 -> 0.27.0 → https://git.io/fjVun
<{^_^}> [nixpkgs] @flokli pushed 5 commits to master: https://git.io/fjrLp
<simpson> The best t-shirt is the one not anticipated.
domogled has joined #nixos
knupfer has quit [Remote host closed the connection]
knupfer has joined #nixos
wfranzini has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @dywedir merged pull request #63682 → skim: 0.6.4 -> 0.6.8 → https://git.io/fjwwe
<{^_^}> [nixpkgs] @dywedir pushed 2 commits to master: https://git.io/fjrtv
wfranzini has joined #nixos
<{^_^}> nix#2952 (by jtojnar, 6 days ago, closed): error 9 while decompressing xz file
<gchristensen> party-parrot.gif !
andreas31 has quit [Remote host closed the connection]
selfsymmetric-pa has left #nixos ["gone to the land of dead hiccups and extinguished light bulbs"]
andreas31 has joined #nixos
noudle has joined #nixos
<noudle> is there any document describing the bootstrapping steps of nixos from a different system?
<noudle> want to get nixos running on my pi 3
<{^_^}> [nixpkgs] @q3k opened pull request #63744 → go-protobuf: 2018-01-04 -> 1.3.1 → https://git.io/fjrtI
MP2E has joined #nixos
<samueldr> the pi3 is aarch64, nixos has images built on hydra for aarch64
MP2E has quit [Client Quit]
<noudle> ty. i did download an aarch64 image and flashed it on a usb, did not boot. it does boot from a usb using raspbian tho.
<noudle> maybe the image was bad..
<noudle> or something went wrong while flashing
<gchristensen> how did you flash it exactly?
THFKA4_ is now known as THFKA4
<noudle> using dd
<samueldr> try the SD image, as u-boot has different requirements for usb
THFKA4 has joined #nixos
THFKA4 has quit [Changing host]
<samueldr> well, I mean, try using it on an SD card
<gchristensen> did you write it to /dev/sdX or /dev/sdX1?
<noudle> i dont have an sd
<noudle> gchristensen: to /dev/sdX
<gchristensen> ok, good
<samueldr> hm, couldn't say if it is because of u-boot failing, or something else, did you have output on screen from u-boot?
<samueldr> (or serial)
<samueldr> IIRC, the raspberry pi firmware would be loading u-boot from USB even when u-boot cannot continue with the same drive
<noudle> i had it plugged over hdmi, no output at all
ddellacosta has quit [Ping timeout: 245 seconds]
<samueldr> right, since you're booting from USB, is it a 3B+? I never used one so I cannot say for sure how it would act
<samueldr> though, with the 3B, after blowing the fuse for usb boot, usb boot was tested as working
<samueldr> (as long as u-boot liked the drive)
<samueldr> (as both the pi firmware and u-boot*)
<noudle> ive set the usb boot bit some time ago, so my pi 3 does boot from usb. (its not 3+)
<noudle> let me just test a few other things...
<noudle> i was just thinking if it is possible to "convert" to nixos from a running system, as rasbian does boot
knupfer has quit [Quit: knupfer]
<samueldr> it might, though I haven't done it myself
knupfer has joined #nixos
<samueldr> though, a big issue is how raspbian is 32 bit, so you probably would have to jump through a few more hoops
xantoz has quit [Quit: WeeChat 2.4]
MmeQuignon has quit [Ping timeout: 245 seconds]
<{^_^}> [nixpkgs] @arcnmx opened pull request #63745 → rust-bindgen: 0.49.0 -> 0.49.2 → https://git.io/fjrtn
xantoz has joined #nixos
<noudle> hmm
<{^_^}> [nixpkgs] @arcnmx opened pull request #63746 → cargo-expand: fix darwin build → https://git.io/fjrta
knupfer has quit [Read error: Connection reset by peer]
<simpson> I'm looking to update Helm (the Kubernetes one). It's a Go package, using glide for package management. Is there a glide2nix?
abathur has quit [Ping timeout: 248 seconds]
myskran has joined #nixos
<etu> ,locate svgo
<{^_^}> Found in packages: kibana5, kibana-oss, nodePackages.svgo
mexisme_ has quit [Ping timeout: 245 seconds]
ym555 has quit [Ping timeout: 246 seconds]
mexisme_ has joined #nixos
<noudle> okay samueldr gchristensen my problem is the following: booting from usb is no problem, but i dont want to have my os on a usb stick. booting from sd works too but my sd cards do not live long so thats also not an option. i have a sata to usb adaptor so i flashed the same image as i put on the usb (which worked) on the hdd, but its not booting from there
equivrel` has joined #nixos
<noudle> any ideas?
<samueldr> which image are you flashing?
<noudle> the raspbian one which worked from usb boot
<samueldr> sorry, which nixos image :)
<noudle> uhm sec
<samueldr> sd_image or iso-image?
sindrip has joined #nixos
equivrel has quit [Ping timeout: 258 seconds]
<noudle> its a .img file, need to look from where i got it
<noudle> i still have it on my pc
<samueldr> right, that should be the right one
<noudle> i did not test that one over usb, just from the hdd
<noudle> where it did not boot
<noudle> just like the rasbian did not boot from hdd
<noudle> what is the difference between an usb stick and a hdd connected over an usb adaptor
<samueldr> it's possible that the disk spins up too slowly for the raspberry pi firmware
<noudle> on the other side i would be happy to put the boot partition on the usb stick and the os on the hdd, guess that would work
<samueldr> in my experience, with a spinning hard drive, it was the case
<noudle> hmm
<samueldr> that would work too, I used a similar setup
kvaster_ has quit [Ping timeout: 246 seconds]
<samueldr> I had the read-only expendable firmwarey bits on an SD card, and that part booted the same usb hard drive that the raspberry pi firmware wouldn't
<samueldr> only by the fact that it took longer, so the disk would be ready
<noudle> thats kinda meh
<samueldr> (though it wasn't using sd_image, neither by using u-boot, but by using tianocore)
<samueldr> (it made the raspberry pi act like a standard uefi system)(
<noudle> hmm i gotta try all of that tomorrow
<samueldr> it worked well enough that that's my preferred way to boot a raspberry pi
<samueldr> grub shows up with graphical UI for selecting generations
<samueldr> it's basically a standard UEFI system
<gchristensen> nice
<samueldr> * but will add some headaches for device trees and device tree overlays as it is right now
Guest80637 has quit [Quit: WeeChat 2.4]
nurelin_ has quit [Ping timeout: 250 seconds]
<noudle> good night :)
noudle has quit []
civodul has quit [Quit: ERC (IRC client for Emacs 26.2)]
mexisme_ has quit [Ping timeout: 258 seconds]
Ariakenom has quit [Quit: Leaving]
eof has quit [Ping timeout: 245 seconds]
ym555 has joined #nixos
nurelin_ has joined #nixos
mexisme_ has joined #nixos
cjpbirkbeck has joined #nixos
is_null has joined #nixos
ym555 has quit [Quit: leaving...]
rfold has quit [Ping timeout: 248 seconds]
o1lo01ol1o has joined #nixos
Drakonis has quit [Ping timeout: 245 seconds]
o1lo01ol1o has quit [Ping timeout: 252 seconds]
Izorkin has quit [Quit: ZNC 1.7.3 - https://znc.in]
Izorkin has joined #nixos
xelxebar has quit [Remote host closed the connection]
xelxebar has joined #nixos
trevorriles has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
domogled has quit [Ping timeout: 252 seconds]
<{^_^}> [nixpkgs] @JohnAZoidberg opened pull request #63747 → acpilight: 1.1 -> 1.2 → https://git.io/fjrq6
day|flip has quit [Remote host closed the connection]
<{^_^}> [nixpkgs] @worldofpeace merged pull request #63742 → journalwatch: fix pytest checks → https://git.io/fjrLq
<{^_^}> [nixpkgs] @worldofpeace pushed 2 commits to release-19.03: https://git.io/fjrqi
thc202 has quit [Ping timeout: 250 seconds]
MmeQuignon has joined #nixos
ddellacosta has joined #nixos
MmeQuignon has quit [Read error: Connection reset by peer]
MmeQuignon has joined #nixos
day|flip has joined #nixos
qsd345 has joined #nixos
fendor has quit [Read error: Connection reset by peer]
<{^_^}> [nixpkgs] @maljub01 opened pull request #63748 → munin: Use `outPath` for packages in `makeFlags` → https://git.io/fjrmU
qsd345 has quit [Remote host closed the connection]
erasmas has quit [Quit: leaving]
myskran has quit [Quit: myskran]
ajs124 has quit [Quit: Gateway shutdown]
cantstanya has quit [Ping timeout: 260 seconds]
eof has joined #nixos
cantstanya has joined #nixos
ajs124 has joined #nixos
Ralith_ has quit [Quit: Lost terminal]
zachk has joined #nixos
jluttine has quit [Ping timeout: 248 seconds]
day|flip has quit [Remote host closed the connection]
Ralith_ has joined #nixos
day|flip has joined #nixos
is_null has quit [Ping timeout: 245 seconds]
ericsagnes has quit [Ping timeout: 245 seconds]
day|flip has quit [Remote host closed the connection]
raedah has quit [Ping timeout: 272 seconds]
day|flip has joined #nixos
day|flip has quit [Remote host closed the connection]
jeregrine has quit [Quit: Connection closed for inactivity]
day|flip has joined #nixos
<{^_^}> [nixpkgs] @marsam opened pull request #63749 → go-tools: 2019.1.1 -> 2019.2 → https://git.io/fjrYJ
ddellacosta has quit [Ping timeout: 244 seconds]
mbrgm_ has joined #nixos
<{^_^}> [nixpkgs] @marsam opened pull request #63750 → postgresqlPackages.timescaledb: 1.3.1 -> 1.3.2 → https://git.io/fjrYm
mbrgm has quit [Ping timeout: 258 seconds]
mbrgm_ is now known as mbrgm
jluttine has joined #nixos
Soo_Slow has quit [Remote host closed the connection]
jluttine has quit [Ping timeout: 244 seconds]
ericsagnes has joined #nixos
jluttine has joined #nixos
o1lo01ol1o has joined #nixos
m0rphism has quit [Ping timeout: 246 seconds]
Miyu-saki has joined #nixos
jeregrine has joined #nixos
<nh2> when on recent nixpkgs master (42602804) I run `gst-launch-1.0`, I get `printf: usage: printf [-v var] format [arguments]`
o1lo01ol1o has quit [Ping timeout: 245 seconds]
<nh2> It looks like the executable wrapper is wrong, it contains:
<nh2> export GST_PLUGIN_SYSTEM_PATH=$GST_PLUGIN_SYSTEM_PATH${GST_PLUGIN_SYSTEM_PATH:+:}$(unset _tmp; for profile in $NIX_PROFILES; do _tmp=$profile/lib/gstreamer-1.0${_tmp:+:}$_tmp; done; printf $_tmp)
orivej has quit [Ping timeout: 244 seconds]
orivej has joined #nixos