<ndowens08> it will complain if you are missing deps
estewei has joined #nixos
<yumbox> yeah, it does, but it doesnt correspond to the nixos package names
<ndowens08> use nox to search
<yumbox> on arch i just installed qt5-base and stuff
<ndowens08> to search for what you think it might be named
<yumbox> what's nox?
<ndowens08> searches for pkgs and lets you choose what to install
<yumbox> but what is it?
<ndowens08> it is an app availble in the repo
<yumbox> ah
MP2E has quit [(Ping timeout: 240 seconds)]
<yumbox> so i just install qt5.full?
<ndowens08> you can try base for minimum
Guest75297 is now known as CMCDragonkai
<yumbox> i'd rather just get it working :P
<clever> yumbox: are you using nix-shell?
<yumbox> dunno
<yumbox> no?
<clever> yumbox: you should always use nix-shell when you want to build things with nix
<yumbox> why?
<clever> yumbox: nix-shell -p gcc qt5.qtbase ...
<clever> yumbox: because nix is designed to skip build-time things when you try to install stuff
<clever> yumbox: so headers and link flags are lost if you just install it normally
<yumbox> it compiled fine
peterhoeg has joined #nixos
<yumbox> but i dont know how to install it
<clever> it must be compiled with nix-build if you want to install it
<clever> nix doesnt allow manualy built things to be installed
<yumbox> what if i install it to my home directory?
froglegs1 has quit [(Ping timeout: 240 seconds)]
DerGuteMoritz has quit [(Ping timeout: 258 seconds)]
<clever> then nix cant track the dependencies correctly, and will delete things you depend on
alx741 has quit [(Quit: alx741)]
<yumbox> it doesnt depend on anything
<clever> it depends on glibc, ld.so and a few others
<yumbox> ugh
erictapen has quit [(Ping timeout: 240 seconds)]
<clever> yumbox: its usualy very easy to just write a nix package for it
<yumbox> as easy as `make install`?
<ashkitten> How do I get an icon theme working? I've tried a bunch of stuff (lxappearance, setting the icon path, etc) but I can't seem to get it working. What am I doing wrong?
<clever> yumbox: almost
<spinus> ashkitten: how you install it?
<yumbox> ashkitten: I ran into the same problem. There's no documentation anywhere, but I did manage to find a workaround.
<ashkitten> yumbox: what did you do?
froglegs1 has joined #nixos
<yumbox> shit
<yumbox> i put the things in gtk.nix, but somehow nixos has deleted it
<clever> yumbox: which gtk.nix did you edit?
ebzzry has quit [(Ping timeout: 256 seconds)]
<yumbox> more readable: https://transfer.sh/zJS5x/gtk.txt
mizu_no_oto has joined #nixos
<yumbox> setting GTK_DATA_PREFIX to /run/current-system/sw seems to do the trick
ebzzry has joined #nixos
<ashkitten> oh okay
<yumbox> then they should show up in lxappearance
<ashkitten> wait i already did that but it didn't work?
<ashkitten> oh wait hangon
<yumbox> I also set `gtk-icon-theme-name="Arc"` in ~/.gtkrc-2.0
jensens has quit [(Ping timeout: 268 seconds)]
<yumbox> and `gtk-icon-theme-name=Arc` in ~/.config/gtk-3.0/settings.ini
<ashkitten> i have export GTK_DATA_PREFIX=${config.system.path} right now, though i'm not sure what it does lol
<yumbox> clever: do you have an example for cmake?
andrew[m] has joined #nixos
<clever> yumbox: just put cmake into the buildInputs, and it handles CMakeLists.txt for you
<Ralith> it'd be really nice to have this stuff documented
<ashkitten> yeah it would...
<yumbox> i only found these solutions via github issues and random forums :/
Wizek_ has quit [(Ping timeout: 246 seconds)]
mizu_no_oto has quit [(Quit: Computer has gone to sleep.)]
<yumbox> clever: do you have a git example?
mkoenig has quit [(Ping timeout: 258 seconds)]
<clever> yumbox: src = fetchFromGitHub { owner = "foo"; repo = "bar"; rev = "abcd"; sha256 = "...."; };
<yumbox> what about git (instead of github)?
<clever> fetchgit
<NixOS_GitHub> [nixpkgs] ndowens opened pull request #24459: sylpheed: 3.5.0 -> 3.5.1 (master...sylpheed) https://git.io/vSGVB
<yumbox> how do i build it?
<clever> nix-build -E 'with import <nixpkgs> {}; callPackage ./yourthing.nix {}'
<yumbox> nix-build thing.nix doesn't work?
<clever> correct
<yumbox> hmm
<yumbox> `make: *** No rule to make target 'install'. Stop.`
<clever> did you put cmake into the buildInputs ?
<yumbox> i put it at the top, after `stdenv, fetchgit`
<clever> it also has to go into the buildInputs
griff_ has quit [(Quit: griff_)]
<yumbox> it complains it can't find qt5
<clever> did you put qt5.qtbase into the buildInputs?
<ashkitten> yumbox: my problem is that the icons "show up" in lxappearance but are blank default icons
<yumbox> clever: undefined variable qt5
<clever> yumbox: you need to also put qt5 into the arguments on line 1
<yumbox> ashkitten: yeah, i had that too. but after setting the GTK_DATA_PREFIX it was fixed
<ashkitten> hmm
<yumbox> clever: how?
<clever> yumbox: what is currently on line 1 of the file?
<yumbox> { stdenv, fetchgit, cmake, qt5.qtbase }:
<clever> { stdenv, fetchgit, cmake, qt5 }:
eacameron has quit [(Remote host closed the connection)]
<yumbox> oh
<yumbox> okay, it builds now
<ashkitten> i'm so confused...
<yumbox> why?
<ashkitten> it's not working
<yumbox> just copy the gtk.nix file to /etc/nixos/gtk.nix
<ashkitten> I put it in my configuration.nix and it should work if that's the bit that made it work
<ashkitten> are you sure it's that line that was making it work?
<yumbox> did you do nixos-rebuild?
<ashkitten> yes
<yumbox> what line? the GTK_...
<ashkitten> yes
<yumbox> no, im not sure
<yumbox> that's why i said to copy the whole .nix file :P
<ashkitten> oh
<yumbox> maybe it's the pathToLink thing
<yumbox> or maybe the services.xserver thing, i dunno
<ashkitten> it must be the last line then, i tried the pathsToLink
<yumbox> also try rebooting
<yumbox> it helped for me
<yumbox> clever: file cannot create directory: /nix/store/qdx31dqi4fxvx1bzyhvxs0389ihxrlby-qtbase-5.8.0/lib/qt5/plugins/styles
<ashkitten> i should think that just restarting the display manager would work but i'll try that
georges-duperon has quit [(Ping timeout: 240 seconds)]
<justanotheruser> When I run nix-build -A python3.pkgs.tensorflowWithCuda' I get error: attribute ‘python3’ in selection path ‘python3.pkgs.tensorflowWithCuda’ not found. So, I ran this command: https://hastebin.com/raw/ewohuxoleh and replaced python3.pkgs.tensorflowWithCuda with nixos.python35Packages.tensorflowWithCuda bit it gives me the same error. How do I determine which selection path to use?
crzyp3ck has quit [(Changing host)]
crzyp3ck has joined #nixos
<clever> yumbox: it may also need qt5.qmakeHook in the buildInputs
<justanotheruser> this is in a specific env
<yumbox> what if i just need to run it as root?
<clever> yumbox: it wont help
<clever> yumbox: nix always builds things as a non-root user, that cant modify things it shouldnt modify
<yumbox> ill try anyway
<yumbox> okay, it didnt work
<ashkitten> yumbox: okay holy crap it worked, the last line. but only for some of the icon themes (breeze, specifically) and NOT numix-square
<ndowens08> justanotheruser: use nox it is easier to find and install pkgs
<yumbox> clever: okay, ill try
<ashkitten> i'm even more confused now because it's only working for the icon themes i don't want
<justanotheruser> ndowens08: I'm trying to find out where a package lives
<justanotheruser> so I can run nix-store -qR $(nix-build -A python3.pkgs.tensorflowWithCuda)
bennylb has joined #nixos
<ndowens08> it is easier to use nox to find and install. Seems like you've had this issue for days now?
<yumbox> clever: same error
<justanotheruser> I'll try it
<ashkitten> why is system.defaultChannel not documented?
<yumbox> ashkitten: it works for all icon themes for me
<ashkitten> yumbox: can you try installing numix-square and see if it works for that? just as a test
<yumbox> whats the pkg name?
<ashkitten> numix-icon-theme-square
crzyp3ck has quit [(Ping timeout: 268 seconds)]
<bennylb> ?
<yumbox> hmm
<yumbox> it doesn't work
<yumbox> it works for all other icon themes for me though
<ashkitten> hmm
<ashkitten> that's really odd
crzyp3ck has joined #nixos
<yumbox> numix-icon-theme works
<bennylb> Hello all
<ashkitten> huh
<ashkitten> well
<ashkitten> :/
<bennylb> Can anyone help me out with nix string concatination?
<gchristensen> I'm sure, just ask
<bennylb> Ok cool
Supersonic112 has quit [(Disconnected by services)]
Supersonic112_ has joined #nixos
Supersonic112_ is now known as Supersonic112
<bennylb> I'm trying to append a string to security.pam.services.lightdm.text
<bennylb> Essentially I want to preserve the original value of the text
jmsb has joined #nixos
<bennylb> Imperitively it would look something like this: stringvar = stringvar + "some other string"
<c74d> I looked up that option with <https://nixos.org/nixos/options.html#pam+services+text>, read the source of linked module, and saw that the option has the type `nullOr lines`
<c74d> so it can be either null or "lines"
<NixOS_GitHub> [nixpkgs] vbgl pushed 2 new commits to master: https://git.io/vSGrj
<NixOS_GitHub> nixpkgs/master 24c616c Matthew Maurer: ctypes: 0.4.1 -> 0.11.2
<NixOS_GitHub> nixpkgs/master 401c284 Matthew Maurer: ocaml-async_ssl: 112.24.03 -> 113.33.07
eacameron has joined #nixos
<bennylb> How would I do that to security.pam.services.lightdm.text?
<c74d> bennylb: "lines" means that it can be set from multiple modules, and each module's setting for it will be appended
yumbox has quit [(Remote host closed the connection)]
<c74d> bennylb: so if you set it in your configuration.nix module, that value will be appended to whatever other values have been set for it
<c74d> bennylb: in conclusion, try just `security.pam.services.lightdm.text = "some other string"`
<bennylb> Thanks c74d that's what I thought, it's just that when I do that the new string is overriding it completely
<c74d> hm
scott has joined #nixos
<bennylb> I'll take another look at it. Appreciate the help
<c74d> oh, I see, all the other security.pam.services.<name>.* options are only used in the default value of `text`
<c74d> bennylb: my only thought now is to try `security.pam.services.lightdm.text = lib.mkDefault "some other string"`
crzyp3ck has quit [(Ping timeout: 240 seconds)]
alx741 has joined #nixos
edvorg has joined #nixos
<bennylb> I'm not yet familiar with lib.mkDefault but I'll take a look now.
<c74d> bennylb: without lib.mkDefault, your option setting has higher priority than the default setting and so overrides it rather than being concatenated with it
<c74d> with lib.mkDefault, it should have the same priority-- wait no
<c74d> bennylb: with lib.mkOptionDefault (not lib.mkDefault), it should have the same priority as the default setting, and *may* no longer override it, instead being concatenated
<NixOS_GitHub> [nixpkgs] vbgl pushed 4 new commits to master: https://git.io/vSGo5
<NixOS_GitHub> nixpkgs/master 2f020cf regnat: ocamlPackages.ocf: init at 0.5.0
<NixOS_GitHub> nixpkgs/master 4015813 regnat: ocamlPackages.xtmpl: init at 0.16.0
<NixOS_GitHub> nixpkgs/master 89e5963 regnat: ocamlPackages.higlo: init at 0.6
WilliButz has joined #nixos
RchrdB has quit [(Ping timeout: 260 seconds)]
YellowOnion has joined #nixos
eacameron has quit [(Remote host closed the connection)]
<NixOS_GitHub> [nixpkgs] vbgl closed pull request #24241: stog: init at 0.17.0 (master...stog) https://git.io/vSvgQ
mkoenig has joined #nixos
YellowOnion__ has quit [(Ping timeout: 258 seconds)]
oida_ has joined #nixos
elninja44 has joined #nixos
mkoenig has quit [(Ping timeout: 256 seconds)]
mkoenig has joined #nixos
endformationage has quit [(Quit: WeeChat 1.6)]
bfrog has quit [(Ping timeout: 246 seconds)]
mbrgm has quit [(Ping timeout: 260 seconds)]
<ashkitten> ok i'm back
<ashkitten> crisis averted
mbrgm has joined #nixos
derjohn_mob has quit [(Ping timeout: 258 seconds)]
stepcut has quit [(Remote host closed the connection)]
zeus_ has quit [(Read error: Connection reset by peer)]
ndowens08 has quit [(Ping timeout: 240 seconds)]
zeus_ has joined #nixos
<benley> anyone know what's up with ZFS not actually mounting datasets that have a mountpoint set on boot?
rimmington has joined #nixos
<benley> surely I don't need to spell out each of these individually in configuration.nix...?
stepcut has joined #nixos
derjohn_mob has joined #nixos
<NixOS_GitHub> [nixpkgs] peterhoeg opened pull request #24460: qsyncthingtray: fix program paths (master...f/qst) https://git.io/vSG6F
gbbrt_ has joined #nixos
gbbrt has quit [(Ping timeout: 256 seconds)]
<NixOS_GitHub> [nixpkgs] peterhoeg opened pull request #24461: gcalcli: fix notifications on linux (master...f/gcalcli) https://git.io/vSGiz
hexagoxel has quit [(Ping timeout: 260 seconds)]
eacameron has joined #nixos
zeus_ has quit [(Remote host closed the connection)]
hexagoxel has joined #nixos
eacameron has quit [(Ping timeout: 240 seconds)]
eacameron has joined #nixos
<spacekitteh[m]> error: while setting up the build environment: unable to make filesystem ‘/home/spacekitteh/code’ private: No such file or directory
<spacekitteh[m]> i fucked up my nfs mount and now i can't switch configurations :(
<spacekitteh[m]> oh, fix that, nevermind. :B
eacameron has quit [(Remote host closed the connection)]
<spacekitteh[m]> now to figure out how to cd into it while an ordinary user .-.
zeus_ has joined #nixos
spinus has quit [(Ping timeout: 258 seconds)]
ryanartecona has joined #nixos
crzyp3ck has joined #nixos
<crzyp3ck> hello
<crzyp3ck> I want to add two or tree param at the end on linux line in grub. What should i do?
mguentner2 has quit [(Quit: WeeChat 1.7)]
<ashkitten> Is anyone running NixOS on Ryzen? Can you give me some info about stability?
estewei has quit [(Quit: Quit)]
mguentner has joined #nixos
ryanartecona has quit [(Quit: ryanartecona)]
nckx has quit [(Read error: Connection reset by peer)]
nckx- has joined #nixos
nckx- is now known as nckx
<rimmington> crzyp3ck: I think you can add them to boot.kernelParams in configuration.nix
nckx has quit [(Ping timeout: 240 seconds)]
nckx has joined #nixos
<crzyp3ck> rimmington: I did and rebuid the switch. should I see anything changed in /boot/grun/grub.cfg?
<ashkitten> has anyone come across this error?
<ashkitten> ** (hdajackretask:10435): WARNING **: Error retrieving accessibility bus address: org.freedesktop.DBus.Error.ServiceUnknown: The name org.a11y.Bus was not provided by any .service files
<ashkitten> i get that with a lot of applications (hdajackretask, pa-applet, etc)
isidore has joined #nixos
<NixOS_GitHub> [nixpkgs] peterhoeg pushed 1 new commit to master: https://git.io/vSGMc
<NixOS_GitHub> nixpkgs/master 5bb5ce0 Peter Hoeg: dynamic-colors: 0.2.1 -> 0.2.2
<rimmington> crzyp3ck: you should see a new entry
Piece_Maker has joined #nixos
bennylb has quit [(Ping timeout: 260 seconds)]
Acou_Bass has quit [(Ping timeout: 264 seconds)]
Piece_Maker is now known as Acou_Bass
odi_ has joined #nixos
mguentner2 has joined #nixos
isidore has quit [(Quit: WeeChat 1.7)]
jmeredith has quit [(Quit: Connection closed for inactivity)]
mguentner has quit [(Ping timeout: 240 seconds)]
<crzyp3ck> rimmington: nothing
takle has quit [(Remote host closed the connection)]
<NixOS_GitHub> [nixpkgs] peterhoeg pushed 1 new commit to master: https://git.io/vSGyG
<NixOS_GitHub> nixpkgs/master 0843ad1 Peter Hoeg: dynamic-colors: 0.2.2 -> 0.2.2.1
mkoenig has quit [(Remote host closed the connection)]
rimmington has quit [(Quit: Leaving.)]
mizu_no_oto has joined #nixos
justan0theruser has joined #nixos
justanotheruser has quit [(Ping timeout: 246 seconds)]
odi__ has joined #nixos
odi_ has quit [(Ping timeout: 240 seconds)]
froglegs1 has quit [(Ping timeout: 240 seconds)]
takle has joined #nixos
froglegs1 has joined #nixos
takle has quit [(Ping timeout: 256 seconds)]
AllanEspinosa has quit [(Ping timeout: 258 seconds)]
<NixOS_GitHub> [nixpkgs] benley pushed 1 new commit to release-17.03: https://git.io/vSGSC
<NixOS_GitHub> nixpkgs/release-17.03 c15756b NWDD: add xnwdd <Guillermo NWDD> as a maintainer...
odi__ has quit [(Remote host closed the connection)]
mizu_no_oto has quit [(Quit: Computer has gone to sleep.)]
eacameron has joined #nixos
odi has joined #nixos
takle has joined #nixos
estewei has joined #nixos
takle has quit [(Ping timeout: 256 seconds)]
rodgort has quit [(Quit: Leaving)]
DerGuteMoritz has joined #nixos
pie___ has joined #nixos
rodgort has joined #nixos
pie__ has quit [(Read error: Connection reset by peer)]
mbdb92 has quit [(Ping timeout: 246 seconds)]
pie_ has quit [(Read error: Connection reset by peer)]
pie_ has joined #nixos
elninja44 has quit [(Remote host closed the connection)]
mbdb92 has joined #nixos
zeus_ has quit [(Remote host closed the connection)]
uwap has quit [(Ping timeout: 246 seconds)]
uwap has joined #nixos
takle has joined #nixos
takle has quit [(Ping timeout: 240 seconds)]
takle has joined #nixos
nslqqq has quit [(Quit: Leaving.)]
takle has quit [(Ping timeout: 256 seconds)]
nslqqq has joined #nixos
MP2E has joined #nixos
odi_ has joined #nixos
odi has quit [(Ping timeout: 268 seconds)]
elninja44 has joined #nixos
acowley_away has quit [(Ping timeout: 240 seconds)]
acowley_away has joined #nixos
odi_ has quit [(Ping timeout: 240 seconds)]
contrapumpkin has quit [(Ping timeout: 268 seconds)]
jsgrant-_ has quit [(Quit: Peace Peeps. o/ If you need me asap, message me at msg[at]jsgrant.io & I'll try to get back to you within 24 hours.)]
proteusguy has quit [(Remote host closed the connection)]
jsgrant has quit [(Quit: Peace Peeps. o/ If you need me asap, message me at msg[at]jsgrant.io & I'll try to get back to you within 24 hours.)]
contrapumpkin has joined #nixos
takle has joined #nixos
takle has quit [(Ping timeout: 258 seconds)]
stew has quit [(Ping timeout: 256 seconds)]
odi_ has joined #nixos
stew has joined #nixos
takle has joined #nixos
MercurialAlchemi has joined #nixos
takle has quit [(Ping timeout: 268 seconds)]
takle has joined #nixos
takle has quit [(Ping timeout: 258 seconds)]
alx741 has quit [(Ping timeout: 240 seconds)]
zeus_ has joined #nixos
<peterhoeg> ashkitten: yes, you're not running gnome I presume.
<peterhoeg> It's not really an error. Some applications expect the accessibility daemon to be at that dbus address but under !gnome, it's not there.
reinzelmann has joined #nixos
takle has joined #nixos
freusque has joined #nixos
edvorg has quit [(Remote host closed the connection)]
takle has quit [(Ping timeout: 240 seconds)]
griff_ has joined #nixos
griff_ has quit [(Client Quit)]
d762b440__ has quit [(Ping timeout: 256 seconds)]
takle has joined #nixos
ebzzry has quit [(Ping timeout: 260 seconds)]
proteusguy has joined #nixos
takle has quit [(Ping timeout: 264 seconds)]
takle has joined #nixos
d762b440__ has joined #nixos
Filystyn has joined #nixos
Filystyn has quit [(Changing host)]
Filystyn has joined #nixos
takle has quit [(Ping timeout: 240 seconds)]
<NixOS_GitHub> [nixpkgs] kamilchm opened pull request #24463: vim-elixir: 2017-02-21 -> 2017-03-29 (master...vim-elixir) https://git.io/vSGdp
eacameron has quit [(Remote host closed the connection)]
d762b440__ has quit [(Ping timeout: 258 seconds)]
DutchWolfie has joined #nixos
takle has joined #nixos
reinzelmann has quit [(Quit: Leaving)]
reinzelmann has joined #nixos
jsgrant has joined #nixos
takle has quit [(Ping timeout: 260 seconds)]
<hyper_ch> kdevelop doesn't build anymore on unstable :(
takle has joined #nixos
takle has quit [(Ping timeout: 240 seconds)]
takle has joined #nixos
thc202 has joined #nixos
<Filystyn> can someone with nixos stable tell me does tor browser work for him?
takle has quit [(Ping timeout: 260 seconds)]
catch22 has joined #nixos
pie___ has quit [(Ping timeout: 240 seconds)]
<hyper_ch> (or her)
<Filystyn> hue
<NixOS_GitHub> [nixpkgs] Ericson2314 opened pull request #24465: Get rid of all `with { inherit... }` and just used `let inherit...` (master...no-with-literal) https://git.io/vSGN9
<NixOS_GitHub> [nixpkgs] mogria opened pull request #24466: projectlibre: init at 1.6.2 (master...project-libre) https://git.io/vSGN7
<hyper_ch> hue?
<Filystyn> yes, hue
<hyper_ch> philips hue?
marsel has joined #nixos
<Filystyn> more like single hue
<hyper_ch> I don't understand :(
<Filystyn> well hue is like a single laught i guess
eacameron has joined #nixos
<hyper_ch> I only know hue from photoshop/gimp and Philips lights
<Filystyn> well now you know Filystyn hue
Itkovian has joined #nixos
<hyper_ch> :)
ixxie has joined #nixos
eacameron has quit [(Ping timeout: 240 seconds)]
nschoe has joined #nixos
eacameron has joined #nixos
zeus_ has quit [(Remote host closed the connection)]
jonafato has quit [(Ping timeout: 240 seconds)]
byteflam1 has joined #nixos
byteflame has quit [(Ping timeout: 256 seconds)]
<NixOS_GitHub> [nixpkgs] kamilchm opened pull request #24467: vim-go: 2017-02-19 -> 1.12 (master...vim-go) https://git.io/vSGAN
<NixOS_GitHub> [nixpkgs] jagajaga closed pull request #24463: vim-elixir: 2017-02-21 -> 2017-03-29 (master...vim-elixir) https://git.io/vSGdp
eacameron has quit [(Ping timeout: 240 seconds)]
<NixOS_GitHub> [nixpkgs] jagajaga pushed 2 new commits to master: https://git.io/vSGAx
<NixOS_GitHub> nixpkgs/master 835a692 Kamil Chmielewski: vim-elixir: 2017-02-21 -> 2017-03-29
<NixOS_GitHub> nixpkgs/master a2a152c Arseniy Seroka: Merge pull request #24463 from kamilchm/vim-elixir...
alx741 has joined #nixos
<NixOS_GitHub> [nixpkgs] cstrahan pushed 1 new commit to master: https://git.io/vSGxc
<NixOS_GitHub> nixpkgs/master 2a3cd13 Charles Strahan: slang: 2.3.0 -> 2.3.1a
jonafato has joined #nixos
ThatDocsLady has joined #nixos
jgertm has joined #nixos
jmsb has quit [(Ping timeout: 246 seconds)]
takle has joined #nixos
katyucha is now known as Guest37235
Guest37235 has quit [(Killed (verne.freenode.net (Nickname regained by services)))]
Guest24297 is now known as katyucha
katyucha_ has joined #nixos
takle has quit [(Ping timeout: 246 seconds)]
akaWolf has quit [(Ping timeout: 260 seconds)]
MarcelineVQ has quit [(Ping timeout: 256 seconds)]
takle has joined #nixos
erictapen has joined #nixos
ertes has joined #nixos
jgertm has quit [(Ping timeout: 260 seconds)]
tranquilloX has joined #nixos
takle has quit [(Ping timeout: 246 seconds)]
takle has joined #nixos
hyphon81 has joined #nixos
Itkovian has quit [(Read error: Connection reset by peer)]
derjohn_mob has quit [(Ping timeout: 256 seconds)]
MarcelineVQ has joined #nixos
<NixOS_GitHub> [nixpkgs] Ericson2314 closed pull request #24465: Get rid of all `with { inherit... }` and just used `let inherit...` (master...no-with-literal) https://git.io/vSGN9
eacameron has joined #nixos
takle has quit [(Ping timeout: 256 seconds)]
goibhniu has joined #nixos
eacameron has quit [(Ping timeout: 268 seconds)]
takle has joined #nixos
<Filystyn> '/join glibc
Itkovian has joined #nixos
Sonarpulse has quit [(Ping timeout: 256 seconds)]
tranquilloX has quit [(Ping timeout: 258 seconds)]
civodul has joined #nixos
<ertes> can i unquote arbitrary expressions in a ''string''?
<ertes> or just variables?
<ertes> apparently i can use arbitrary expressions
<ertes> nix-repl> ''test ${toString (1 + 1)} test''
<ertes> "test 2 test"
__Sander__ has joined #nixos
tranquilloX has joined #nixos
<NixOS_GitHub> [nixpkgs] Mic92 pushed 2 new commits to master: https://git.io/vSZe6
<NixOS_GitHub> nixpkgs/master c916e2c Kamil Chmielewski: vim-go: 2017-02-19 -> 1.12
<NixOS_GitHub> nixpkgs/master ded2876 Jörg Thalheim: Merge pull request #24467 from kamilchm/vim-go...
jekor has joined #nixos
ixxie has quit [(Ping timeout: 260 seconds)]
<hyper_ch> is there a point reporting compilation fails on current unstable?
derjohn_mob has joined #nixos
erictapen has quit [(Ping timeout: 240 seconds)]
filterfish has joined #nixos
<NixOS_GitHub> [nixpkgs] Mic92 pushed 3 new commits to master: https://git.io/vSZfL
<NixOS_GitHub> nixpkgs/master b083a37 c74d: rustRegistry: 2017-03-22 -> 2017-03-29...
<NixOS_GitHub> nixpkgs/master eb6a1f1 c74d: rustfmt: 0.8 -> 0.8.1...
<NixOS_GitHub> nixpkgs/master 79f70e6 Jörg Thalheim: Merge pull request #24455 from 8573/8573/pkg/update/rustfmt/0.8.1/1...
derjohn_mob has quit [(Remote host closed the connection)]
<NixOS_GitHub> [nixpkgs] Mic92 closed pull request #24454: bitlbee-facebook: 2015-08-27 → 1.1.0 (master...bitlbee-facebook) https://git.io/vSGcj
derjohn_mob has joined #nixos
Wizek_ has joined #nixos
takle has quit [(Remote host closed the connection)]
<NixOS_GitHub> [nixpkgs] Mic92 pushed 3 new commits to master: https://git.io/vSZJs
<NixOS_GitHub> nixpkgs/master 5030faf Aleksey Zhukov: pycharm-community: 2016.3.2 -> 2017.1
<NixOS_GitHub> nixpkgs/master 43dc760 Aleksey Zhukov: pycharm-professional: 2016.3.2 -> 2017.1
<NixOS_GitHub> nixpkgs/master 9e43965 Jörg Thalheim: Merge pull request #24449 from drdaeman/pycharm-2017.1...
erictapen has joined #nixos
georges-duperon has joined #nixos
jgertm has joined #nixos
<NixOS_GitHub> [nixpkgs] Mic92 pushed 2 new commits to master: https://git.io/vSZJ7
<NixOS_GitHub> nixpkgs/master 97941b5 Vasiliy Solovey: webstorm: 2016.3.3 -> 2017.1
<NixOS_GitHub> nixpkgs/master 7a3da51 Jörg Thalheim: Merge pull request #24452 from miltador/webstorm...
<NixOS_GitHub> [nixpkgs] Mic92 closed pull request #24452: webstorm: 2016.3.3 -> 2017.1 (master...webstorm) https://git.io/vSGmw
takle has joined #nixos
<NixOS_GitHub> [nixpkgs] peterhoeg closed pull request #24461: gcalcli: fix notifications on linux (master...f/gcalcli) https://git.io/vSGiz
<7JTAAV6VL> [nixpkgs] peterhoeg pushed 2 new commits to master: https://git.io/vSZU3
<7JTAAV6VL> nixpkgs/master f67ec45 Peter Hoeg: gcalcli: fix notifications on linux...
<7JTAAV6VL> nixpkgs/master 029c57f Peter Hoeg: Merge pull request #24461 from peterhoeg/f/gcalcli...
jophish has joined #nixos
reinhardt has joined #nixos
goibhniu1 has joined #nixos
goibhniu has quit [(Ping timeout: 240 seconds)]
reinzelmann has quit [(Ping timeout: 246 seconds)]
goibhniu1 is now known as goibhniu
chakerbenhamed has joined #nixos
<ertes> in a nix-built container some programs (like postgresql) complain that my locales like de_DE.UTF-8 are invalid, if i set LANG
<ertes> would do i need to add to or run in the container?
<ertes> *what do i
<goibhniu> is that a nixos-container ertes?
<unlmtd[m]> im trying to build a customized neovim using master, but Im missing the trick
<unlmtd[m]> the override is in ~/.config/nixpkgs
<unlmtd[m]> it works with ```nix-env -iA nixos.my_nvim```
<unlmtd[m]> but then I go ```NIX_PATH=nixpkgs=/my/nixpkgs nix-env -f '<nixpkgs>' -iA nixos.my_nvim``` and I get 'not found'
<ertes> goibhniu: no, it's built via dockerTools.buildImage
<ertes> i already tried adding glibcLocales
ebzzry has joined #nixos
fuzzy-id has joined #nixos
pie___ has joined #nixos
FRidh has joined #nixos
<Filystyn> you should throw out -Wunused-result from -Wall -Wextra -Wpedantic no diea which one has it
<Filystyn> irritating crap.
<Filystyn> or this is glibc to blame duno did not have it earlier
guest475 has quit [(Ping timeout: 260 seconds)]
ebzzry has quit [(Ping timeout: 240 seconds)]
<FRidh> justan0theruser: nix-build requires a .nix file. Therefore, either you point to the folder with the default.nix (e.g. a checkout of the Nixpkgs repo) or you use a channel nix-build -A python '<nixpkgs>'
<__Sander__> nix is mentioned in the above blog post
<unlmtd[m]> ```nix-env -iA nixos.my_nvim -I nixpkgs=/my/nixpkgs``` gets me a bit farther, but I still get the knownPlugin error
<unlmtd[m]> which is supposedly fixed https://github.com/NixOS/nixpkgs/pull/24353/files
spacekitteh[m] has quit [(Remote host closed the connection)]
dtz has quit [(Remote host closed the connection)]
xj9[m] has quit [(Remote host closed the connection)]
jyp[m] has quit [(Remote host closed the connection)]
bendlas has quit [(Remote host closed the connection)]
M-liberdiko has quit [(Remote host closed the connection)]
timclassic has quit [(Remote host closed the connection)]
offlinehacker[m] has quit [(Remote host closed the connection)]
hexkey[m] has quit [(Read error: Connection reset by peer)]
lfont[m] has quit [(Read error: Connection reset by peer)]
copumpkin has quit [(Read error: Connection reset by peer)]
primeos[m] has quit [(Write error: Connection reset by peer)]
cornu[m] has quit [(Write error: Connection reset by peer)]
indefini has quit [(Remote host closed the connection)]
sziszi[m] has quit [(Read error: Connection reset by peer)]
shanemikel[m] has quit [(Write error: Connection reset by peer)]
Exee7uvo[m] has quit [(Write error: Connection reset by peer)]
corngood has quit [(Write error: Connection reset by peer)]
Criena[m] has quit [(Write error: Connection reset by peer)]
danielrf has quit [(Write error: Broken pipe)]
Yaniel has quit [(Write error: Broken pipe)]
hendrik[m] has quit [(Write error: Connection reset by peer)]
regnat[m] has quit [(Write error: Connection reset by peer)]
jack[m]1 has quit [(Write error: Connection reset by peer)]
scott2 has quit [(Write error: Connection reset by peer)]
icetan has quit [(Remote host closed the connection)]
ArdaXi[m] has quit [(Write error: Connection reset by peer)]
zimbatm[m] has quit [(Write error: Connection reset by peer)]
Magnap has quit [(Read error: Connection reset by peer)]
eqyiel[m] has quit [(Remote host closed the connection)]
moonarch has quit [(Read error: Connection reset by peer)]
philipp[m] has quit [(Read error: Connection reset by peer)]
SyrupThinker[m] has quit [(Read error: Connection reset by peer)]
aspiwack[m] has quit [(Remote host closed the connection)]
Dezgeg[m] has quit [(Remote host closed the connection)]
andrew[m] has quit [(Read error: Connection reset by peer)]
sargon[m] has quit [(Remote host closed the connection)]
davidar has quit [(Remote host closed the connection)]
herzmeister[m] has quit [(Remote host closed the connection)]
bachp has quit [(Remote host closed the connection)]
musicmatze[m] has quit [(Remote host closed the connection)]
spawnthink[m] has quit [(Remote host closed the connection)]
MrAxilus[m] has quit [(Read error: Connection reset by peer)]
Ralith has quit [(Write error: Connection reset by peer)]
saintaquinas[m] has quit [(Remote host closed the connection)]
M-Rym has quit [(Remote host closed the connection)]
rycee[m] has quit [(Read error: Connection reset by peer)]
jascot[m] has quit [(Write error: Connection reset by peer)]
mythmon- has quit [(Write error: Connection reset by peer)]
Shell has quit [(Remote host closed the connection)]
unlmtd[m] has quit [(Remote host closed the connection)]
rdesfo[m] has quit [(Read error: Connection reset by peer)]
prose[m] has quit [(Read error: Connection reset by peer)]
jlle[m] has quit [(Read error: Connection reset by peer)]
qrilka[m] has quit [(Read error: Connection reset by peer)]
teh[m] has quit [(Read error: Connection reset by peer)]
unlmtd[m] has joined #nixos
<unlmtd[m]> so I still get 'not found'
<unlmtd[m]> ahh I forgot -f
<unlmtd[m]> so if I do ```nix-env -f '<nixpkgs>'``` then my overrides in ~/.config/nixpkgs/config.nix are ignored?
hexkey[m] has joined #nixos
<ertes> i solved it: you need to point the LOCALE_ARCHIVE env-var to glibcLocales
<ertes> thanks anyway!
proteusguy has quit [(Remote host closed the connection)]
MP2E has quit [(Quit: sleep)]
nico202 has joined #nixos
demax has joined #nixos
<demax> Hey guys!
<demax> I'm trying to run NixOS on RPi 2. Downloaded image from wiki https://nixos.org/wiki/Raspberry_Pi_2, but booting stuck at nice colorfull gradient
mudri has quit [(Ping timeout: 260 seconds)]
teh[m] has joined #nixos
herzmeister[m] has joined #nixos
xj9[m] has joined #nixos
indefini has joined #nixos
moonarch has joined #nixos
cornu[m] has joined #nixos
spacekitteh[m] has joined #nixos
Yaniel has joined #nixos
primeos[m] has joined #nixos
bachp has joined #nixos
jack[m]1 has joined #nixos
philipp[m] has joined #nixos
Exee7uvo[m] has joined #nixos
M-liberdiko has joined #nixos
MrAxilus[m] has joined #nixos
M-Rym has joined #nixos
sargon[m] has joined #nixos
hendrik[m] has joined #nixos
aspiwack[m] has joined #nixos
ArdaXi[m] has joined #nixos
jascot[m] has joined #nixos
copumpkin has joined #nixos
bendlas has joined #nixos
offlinehacker[m] has joined #nixos
prose[m] has joined #nixos
jyp[m] has joined #nixos
mythmon- has joined #nixos
spawnthink[m] has joined #nixos
davidar has joined #nixos
timclassic has joined #nixos
sziszi[m] has joined #nixos
Shell has joined #nixos
zimbatm[m] has joined #nixos
saintaquinas[m] has joined #nixos
dtz has joined #nixos
scott2 has joined #nixos
shanemikel[m] has joined #nixos
musicmatze[m] has joined #nixos
rdesfo[m] has joined #nixos
Magnap has joined #nixos
Ralith has joined #nixos
eqyiel[m] has joined #nixos
rycee[m] has joined #nixos
Dezgeg[m] has joined #nixos
SyrupThinker[m] has joined #nixos
icetan has joined #nixos
jlle[m] has joined #nixos
qrilka[m] has joined #nixos
corngood has joined #nixos
regnat[m] has joined #nixos
Criena[m] has joined #nixos
andrew[m] has joined #nixos
danielrf has joined #nixos
lfont[m] has joined #nixos
<demax> can I do something to fix it without accesing UART tty?
erictapen has quit [(Ping timeout: 256 seconds)]
<nico202> Hi, my nox command died yesterday, is it broken for everyone? error: undefined variable ‘xnwdd’ at /nix/store/w68y6y7vn1pgizr10xhxwz79i7nplqlf-nixos-17.03beta773.38b2e27/nixos/pkgs/applications/version-management/gitkraken/default.nix:74:39
<nico202> E
erictapen has joined #nixos
pie_ has quit [(Ping timeout: 268 seconds)]
jophish has quit [(Remote host closed the connection)]
ixxie has joined #nixos
<Dezgeg> demax: follow this page instead: https://nixos.org/wiki/NixOS_on_ARM
jophish has joined #nixos
bennofs has joined #nixos
<demax> Dezgeg, thanks! But... the page says "Note that Raspberry Pi 2 is not yet supported by these images". Is it still true?
<Dezgeg> ah no, that part is outdated :)
JagaJaga has joined #nixos
<demax> Cool, i'll give it a try
<NixOS_GitHub> [nixpkgs] globin pushed 6 new commits to master: https://git.io/vSZGv
<NixOS_GitHub> nixpkgs/master db32925 Robin Gloster: guileLint: mark as broken
<NixOS_GitHub> nixpkgs/master b5ad5c3 Robin Gloster: hawkthorne: mark as broken
<NixOS_GitHub> nixpkgs/master 2b71288 Robin Gloster: jclasslib: remove
<Dezgeg> it's the sd-image-armv7l-linux.img one that is relevant to pi2
<NixOS_GitHub> [nixpkgs] 7c6f434c pushed 1 new commit to master: https://git.io/vSZGk
<NixOS_GitHub> nixpkgs/master 8641a0a Michael Raskin: quicklisp-to-nix: support / in the system name...
<demax> yeah, figured it out.
<ashkitten> has anyone had success using either numix-circle or numix-square?
JagaJaga has quit [(Ping timeout: 240 seconds)]
mudri has joined #nixos
bennofs has quit [(Ping timeout: 258 seconds)]
<NixOS_GitHub> [nixpkgs] globin pushed 8 new commits to release-17.03: https://git.io/vSZG5
<NixOS_GitHub> nixpkgs/release-17.03 8672679 Aleksey Zhukov: pycharm-community: 2016.3.2 -> 2017.1...
<NixOS_GitHub> nixpkgs/release-17.03 202cc67 Aleksey Zhukov: pycharm-professional: 2016.3.2 -> 2017.1...
<NixOS_GitHub> nixpkgs/release-17.03 335c15e Vasiliy Solovey: webstorm: 2016.3.3 -> 2017.1...
ixxie_ has joined #nixos
ixxie has quit [(Ping timeout: 246 seconds)]
CMCDragonkai has quit [(Ping timeout: 260 seconds)]
bennofs has joined #nixos
bennofs has quit [(Ping timeout: 260 seconds)]
JagaJaga has joined #nixos
jophish has quit [(Remote host closed the connection)]
ixxie_ has quit [(Ping timeout: 264 seconds)]
<unlmtd[m]> im trying to use the fix for knownPlugins in vim-plugins master:
catch22 has quit [(Quit: Leaving)]
jophish has joined #nixos
<nico202> ashkitten: I used it on an i3wm system. I think the relevant part of my config is export GTK2_RC_FILES=${pkgs.writeText "iconrc" ''gtk-icon-theme-name="Numix-Circle"''}
<ashkitten> THANK YOU
<nico202> ashkitten: in environment.shellInit
erictapen has quit [(Ping timeout: 246 seconds)]
jophish has quit [(Remote host closed the connection)]
[0x4A6F] has quit [(Ping timeout: 268 seconds)]
<nico202> ashkitten: else you might want to check https://gist.github.com/Pitometsu/6db6ec921e19a7b37472
ixxie has joined #nixos
bennofs has joined #nixos
<ashkitten> thank you so much i'm trying that right now
erictapen has joined #nixos
[0x4A6F] has joined #nixos
<ashkitten> it doesn't seem to work for me but i'll try something else
ebzzry has joined #nixos
<qknight> i want to backport (cherry-pick) a security patch for wordpress and i don't know which branch 17.03 is: origin/release-17.03 or origin/staging-17.03?
RchrdB has joined #nixos
<jascot[m]> Dezgeg: what's the binary cache like for ARM?
<Dezgeg> you get vim but no emacs
<NixOS_GitHub> [nixpkgs] 7c6f434c pushed 3 new commits to master: https://git.io/vSZC6
<NixOS_GitHub> nixpkgs/master c1f922b Michael Raskin: asdf: add pinned versions 2.26, 3.1; provide quicklispPackages with ASDF 3.1
<NixOS_GitHub> nixpkgs/master 953fc6c Michael Raskin: clwrapper: better support for ensuring noninteractive execution
<NixOS_GitHub> nixpkgs/master 5d83ef6 Michael Raskin: quicklispPackages.iolib: try loading the system
drdaeman has joined #nixos
erictapen has quit [(Ping timeout: 258 seconds)]
ThatDocsLady has quit [(Quit: Arma-geddin-outta-here!)]
kwork has joined #nixos
tranquilloX has quit [(Ping timeout: 260 seconds)]
jophish has joined #nixos
DutchWolfie has quit [(Quit: Konversation terminated!)]
erictapen has joined #nixos
scott has quit [()]
<NixOS_GitHub> [nixpkgs] joachifm pushed 6 new commits to release-17.03: https://git.io/vSZ8A
<NixOS_GitHub> nixpkgs/release-17.03 e8515db Joachim Fasting: nixos/dnscrypt-proxy docs: reword section on forwarding...
<NixOS_GitHub> nixpkgs/release-17.03 4bce01f Joachim Fasting: nixos/dnscrypt-proxy: grant daemon access to load plugins...
<NixOS_GitHub> nixpkgs/release-17.03 5762103 Joachim Fasting: nixos/dnscrypt-proxy: replace unimportant options with extraArgs...
<NixOS_GitHub> [nixpkgs] mdorman opened pull request #24470: Automated Emacs package updates (master...emacs-updates) https://git.io/vSZ4k
<NixOS_GitHub> [nixpkgs] joachifm pushed 2 new commits to master: https://git.io/vSZ44
<NixOS_GitHub> nixpkgs/master 543f526 Joachim Fasting: nixos/dnscrypt-proxy test: exercise plugin loading
<NixOS_GitHub> nixpkgs/master c504e14 Joachim Fasting: rl-notes 17.03: add notes about changes to the dnscrypt-proxy interface...
<NixOS_GitHub> [nixpkgs] joachifm pushed 1 new commit to release-17.03: https://git.io/vSZ4R
<NixOS_GitHub> nixpkgs/release-17.03 9d3ef69 Joachim Fasting: nixos/dnscrypt-proxy test: exercise plugin loading...
jgertm- has quit [(Quit: https://fnordserver.eu)]
andymandias has quit [(Quit: ZNC 1.6.5 - http://znc.in)]
bennofs has quit [(Ping timeout: 240 seconds)]
<hyphon81> Could I use Hydra with MariaDB on NixOS?
bennofs has joined #nixos
proteusguy has joined #nixos
filterfish has quit [(Ping timeout: 258 seconds)]
bkchr has joined #nixos
<hyphon81> I attempted to use Hydra with MariaDB but I hadn't been able it.
<fpletz> hyphon81: iirc hydra only supports postgresql
<hyphon81> Perhaps, does NixOS dislike MySQL/MariaDB? There were a similar situation when using OpenStack packages.
<NixOS_GitHub> [nixpkgs] joachifm pushed 1 new commit to master: https://git.io/vSZRO
<NixOS_GitHub> nixpkgs/master ad902fb Joachim Fasting: aliceml: mark as broken...
JagaJaga has quit [(Ping timeout: 240 seconds)]
nwspk has quit [(Ping timeout: 240 seconds)]
nwspk has joined #nixos
<hyphon81> fpletz: I thought if I build Hydra with DBMmysql perl package, maybe, then I will be able to use Hydra with MariaDB. However, I failed.
bkchr has quit [(Ping timeout: 240 seconds)]
filterfish has joined #nixos
takle has quit [(Remote host closed the connection)]
<NixOS_GitHub> [nixpkgs] ttuegel closed pull request #24470: Automated Emacs package updates (master...emacs-updates) https://git.io/vSZ4k
mudri has quit [(Ping timeout: 260 seconds)]
jgertm- has joined #nixos
eacameron has joined #nixos
takle has joined #nixos
<shlevy> $ ./inst/bin/nix-instantiate --eval -E 'builtins.exec { program = "/usr/bin/env"; arguments = [ "bash" "-c" "echo true" ]; }' --option allow-unsafe-native-code-during-evaluation true
<shlevy> true
<shlevy> :o this is gonna be huge
RchrdB has quit [(Ping timeout: 240 seconds)]
eacameron has quit [(Ping timeout: 240 seconds)]
drdaeman has quit [(Remote host closed the connection)]
elninja44 has quit [(Remote host closed the connection)]
bennofs has quit [(Ping timeout: 246 seconds)]
<domenkozar> shlevy: nooo :D
ebzzry has quit [(Ping timeout: 240 seconds)]
<NixOS_GitHub> [nix] shlevy opened pull request #1295: Add exec primop behind allow-unsafe-native-code-during-evaluation. (master...builtins.exec) https://git.io/vSZEB
<shlevy> domenkozar: It *is* horrible, but for what it's worth we can already do strictly more powerful things (see commit message in PR)
pie_ has joined #nixos
<crzyp3ck> guys
<crzyp3ck> a question.
<crzyp3ck> Why killall returns "command not ound"
<goibhniu> hi crzyp3ck, because you don't have it installed in your profile
<domenkozar> shlevy: before I comment I need to sleep at least once
CMCDragonkai has joined #nixos
CMCDragonkai is now known as Guest91589
<NixOS_GitHub> [nixpkgs] joachifm pushed 2 new commits to release-17.03: https://git.io/vSZEA
<NixOS_GitHub> nixpkgs/release-17.03 1052886 Joachim Fasting: rl-notes 17.03: notes about changes to torbrowser user state
<NixOS_GitHub> nixpkgs/release-17.03 fb614a2 Joachim Fasting: aliceml: mark as broken...
<crzyp3ck> goibhniu: I thought I came with the linux. (how silly of me). Like always it goes without SAYING. thank you
<clever> shlevy: :O
<goibhniu> crzyp3ck: glad to help ... does nix tell you how to install it? (command-not-found should do that)
<hyphon81> Why dose Hydra and OpenStack packages on NixOS 16.09 avoid to use MySQL/MariaDB? Are there some resons?
<crzyp3ck> warning: The option `services.xserver.desktopManager.kde5' defined in `/etc/nixos/services.nix' has been renamed to `services.xserver.desktopManager.plasma5'.
<goibhniu> hyphon81: I'm pretty sure it's because nobody bothered to add support yet
olejorgenb has quit [(Ping timeout: 260 seconds)]
<domenkozar> clever: thanks, much better now
<crzyp3ck> goibhniu: 1. is there I could find out what packages are currently installed on my system (also which are used and which are garbage?) 2.Is there a way that I could find out the difference in my system before and after nixos-rebuild (i.e view the changes. i.e what happened? )
ixxie has quit [(Ping timeout: 260 seconds)]
<goibhniu> crzyp3ck: there are some tools like that alright, but I'm not familiar with them myself
<crzyp3ck> goibhniu: at least could you tell me what should I ask here. What I am looking for?
<hyphon81> goibhniu: So, a reason is lackage of maintainers...
<goibhniu> crzyp3ck: https://github.com/matthiasbeyer/nixos-scripts has some nice tools like that
<NixOS_GitHub> [nixpkgs] joachifm closed pull request #24397: mate: update packages to version 1.18.0 (master...upd.mate) https://git.io/vSmTQ
<NixOS_GitHub> [nixpkgs] joachifm pushed 2 new commits to master: https://git.io/vSZuy
<NixOS_GitHub> nixpkgs/master 7fadcf3 Jens Grunert: pidginsipe: 1.20.0 -> 1.22.0
<NixOS_GitHub> nixpkgs/master 346fdd6 Joachim F: Merge pull request #24413 from jensbin/pidginsipe...
bennofs has joined #nixos
olejorgenb has joined #nixos
dtzWill has quit [(Ping timeout: 268 seconds)]
nico202 has quit [(Ping timeout: 240 seconds)]
eacameron has joined #nixos
<hyphon81> I'm making codes for OpenStack Newton with NixOS. https://github.com/hyphon81/Nixtack I'm sure everybody wouldn't like to maintain OpenStack packages in nix... Of course me too...
<hyphon81> Because, there are many dependencies of python packages for OpenStack. It is complex.
<domenkozar> hyphon81: I packaged openstack in Nix a while ago
<domenkozar> but not everything is upstream
eacameron has quit [(Ping timeout: 260 seconds)]
tranquilloX has joined #nixos
pie_ has quit [(Ping timeout: 258 seconds)]
<hyphon81> domenkozar: Oh. There isn't name of maintainer in the package's nix file of OpenStack apps. And those are old. So, it isn't maintained now. I thought.
bennofs has quit [(Ping timeout: 246 seconds)]
<domenkozar> well they're not
<domenkozar> lagging one release behin
<domenkozar> d
teknico has joined #nixos
FRidh has quit [(Quit: Konversation terminated!)]
FRidh has joined #nixos
FRidh has quit [(Client Quit)]
<hyphon81> In addition, I would like to use GPU passthrough by Nvidia Geforce with OpenStack. So, I decided making it myself.
RchrdB has joined #nixos
ixxie has joined #nixos
Guest91589 has quit [(Ping timeout: 268 seconds)]
drasich has quit [(Ping timeout: 246 seconds)]
<globin> niksnut, ikwildrpepper: There are a few packages on hydra that fail due to this check https://github.com/daemontools/daemontools/blob/master/src/chkshsgr.c, I cannot reproduce that locally, any idea?
<globin> niksnut, ikwildrpepper: example build log http://cache.nixos.org/log/mqqpvwjhx1ynfsjzbdq9bh03fw7xm8hr-runit-2.1.2.drv
jmaki has joined #nixos
cpennington has joined #nixos
eacameron has joined #nixos
<hyphon81> In the moment, my code for OpenStack is executable. However, I didn't wrote detail usages. So, everyone don't know how to use it...
<crzyp3ck> What channel am I using? there is no ~/.nix-channel in my system
odi_ has quit [(Ping timeout: 240 seconds)]
eacameron has quit [(Ping timeout: 268 seconds)]
<crzyp3ck> ?????
<goibhniu> crzyp3ck: if you want to use a nix-channel for a user, you need to add one
stepcut has quit [(Remote host closed the connection)]
ThatDocsLady has joined #nixos
ThatDocsLady has quit [(Client Quit)]
<NixOS_GitHub> [nixpkgs] joachifm pushed 2 new commits to master: https://git.io/vSZ26
<NixOS_GitHub> nixpkgs/master da16238 ndowens: sylpheed: 3.5.0 -> 3.5.1
<NixOS_GitHub> nixpkgs/master e7fdb09 Joachim F: Merge pull request #24459 from ndowens/sylpheed...
<NixOS_GitHub> [nixpkgs] joachifm pushed 2 new commits to master: https://git.io/vSZ2X
<NixOS_GitHub> nixpkgs/master 3e2335b Benjamin Smith: opera: 43.0.2442.991 -> 44.0.2510.857
<NixOS_GitHub> nixpkgs/master eaddcd8 Joachim F: Merge pull request #24447 from polynomial/update_opera...
<NixOS_GitHub> [nixpkgs] joachifm pushed 2 new commits to master: https://git.io/vSZ21
<NixOS_GitHub> nixpkgs/master bccc5ae Will Dietz: swift: remove i686-linux from platforms, limit to x86-64-linux...
<NixOS_GitHub> nixpkgs/master 20bf944 Joachim F: Merge pull request #24441 from dtzWill/fix/swift-64bit-only...
ThatDocsLady has joined #nixos
<NixOS_GitHub> [nixpkgs] joachifm closed pull request #24416: redprl: 2016-09-22 -> 2017-03-28 (master...redprl-2017-03-28) https://git.io/vSOYD
cpennington has quit [(Ping timeout: 240 seconds)]
bkchr has joined #nixos
<NixOS_GitHub> [nixpkgs] ckauhaus opened pull request #24471: Rust: Remove "warning: file ... may be generated" (master...rust-nowarning-file-may-be-generated) https://git.io/vSZ2j
mudri has joined #nixos
dtzWill has joined #nixos
vaibhavsagar has joined #nixos
<vaibhavsagar> hi, does anyone have an example of applying a patch to a cabal file that they can point me to?
itorres has joined #nixos
deepfire has joined #nixos
<hyphon81> domenkozar: How does your snabb-openstack-testing build OpenStack environments?
eacameron has joined #nixos
eacameron has quit [(Remote host closed the connection)]
<NixOS_GitHub> [nixpkgs] globin closed pull request #24471: Rust: Remove "warning: file ... may be generated" (master...rust-nowarning-file-may-be-generated) https://git.io/vSZ2j
<NixOS_GitHub> [nixpkgs] joachifm closed pull request #24272: ppsspp: 1.1.0 -> 1.3 (master...ppsspp) https://git.io/vSUfl
eacameron has joined #nixos
cpennington has joined #nixos
gilligan_ has joined #nixos
<hyphon81> domenkozar: Sorry, I can't understand how does your program download OpenStack apps such as keystone, neutron... Do I misunderstand something?
<domenkozar> hyphon81: from README:
<domenkozar> $ git clone -b nixos/openstack --single-branch https://github.com/domenkozar/nixpkgs.git
erictapen has quit [(Remote host closed the connection)]
erictapen has joined #nixos
<hyphon81> domenkozar: So, you mean, does it use OpenStack app packages those are in nixpkgs?
jsgrant-_ has joined #nixos
<domenkozar> hyphon81: yeah, they were upstreamed
<domenkozar> but not all nixos modules were upstreamed
ebzzry has joined #nixos
erictapen has quit [(Read error: Connection reset by peer)]
erictapen has joined #nixos
pie_ has joined #nixos
<hyphon81> domenkozar: Oh, I made modules for OpenStack apps such as keystone-options.enable. However there are projects for it in official.
pie___ has quit [(Ping timeout: 260 seconds)]
reinhardt has quit [(Quit: Leaving)]
ryanartecona has joined #nixos
<aristid> domenkozar: do you happen to know if the foundation ever made any kind of statements about contributions and how it spends them?
<socksy> wth
yumbox has joined #nixos
<gilligan_> hi domenkozar
ocmylife has joined #nixos
<socksy> if i call pastebin, it runs a wrapper script that claims no such file or directory
<socksy> if i run what's in that wrapper script, it works
<socksy> very bizarre
<gilligan_> hrm.. i am having some problems using google-cloud-sdk on a ubuntu machine that has an /etc/boto.cfg file which sets some python path. I'm using google-cloud-sdk as a buildInput for a nix-shell command. Any ideas how I could manage to ignore this system file? ;/
<domenkozar> aristid: it does say what it's spent on
<domenkozar> gilligan_: hey!
<aristid> domenkozar: where can i find that info?
<domenkozar> The infrastructure for NixOS and related projects is maintained by a nonprofit organization, the NixOS Foundation. To ensure the continuity and expansion of the NixOS infrastructure, we are looking for donations to our organization.
<hyphon81> domenkozar: But, nixpkgs use old version OpenStack apps. Will are those maintained? Or, do those stay old?
<domenkozar> hyphon81: they are old until someone updates them
<domenkozar> tw
<domenkozar> meh :)
<aristid> domenkozar: i've been donating for a while and been hoping to get some statement about the details :) i think you were involved with that stuff at some point, so i asked you
<domenkozar> aristid: what details are you interested in? spending report?
<crzyp3ck> there was an addon for firefox called cleanlink (till yesterday). now it is removed.
<ikwildrpepper> aristid: domenkozar was busy creating a page for that, but I need to provide the data for the expenses
<domenkozar> aristid: best to subscribe to https://github.com/NixOS/nixos-foundation/issues/1
<crzyp3ck> Do anyone have it?
stepcut has joined #nixos
<aristid> domenkozar: yup, and amount of contributions :)
<ikwildrpepper> unfortunately, I got distracted by the installation of the new mac mini;s for hydra.nixos.org
<domenkozar> aristid: yeah I started on the report
<domenkozar> so it's all WIP
<ikwildrpepper> any day now :D
<domenkozar> if that helps :)
<globin> niksnut: you around?
<aristid> domenkozar, ikwildrpepper thx looking forward to it :)
<domenkozar> aristid: thanks for bringing it up :)
bfrog has joined #nixos
bkchr has quit [(Ping timeout: 240 seconds)]
ebzzry has quit [(Ping timeout: 240 seconds)]
<aristid> ikwildrpepper: i guess the foundation is small enough not to have to do double-entry accounting? :D
peterhoeg has quit [(Remote host closed the connection)]
<hyphon81> I made codes for using new OpenStack apps. So, I know how build new versions with nix. However, I wouldn't like to maintain official nixpkgs's OpenStack apps. Because, there are many complex dependencies of python packages. XD
<domenkozar> yes :)
<gilligan_> folks: is there any somewhat sane way that I could hide `/etc` in a nix-shell environment?
deepfire has quit [(Ping timeout: 268 seconds)]
<ikwildrpepper> aristid: hehe, yeah
MercurialAlchemi has quit [(Ping timeout: 240 seconds)]
<domenkozar> one day we could just pay an accountant from donations
<domenkozar> to make ikwildrpeppers life easier
<ikwildrpepper> domenkozar: will do when we get a lot of money :p
<domenkozar> do it before you leave for hawaii please
<ikwildrpepper> the data you mean? or hire an accountant? :p
<aristid> like, at the latest at the airport while waiting for the plane to hawaii to depart :D
<domenkozar> any, ideally both
<domenkozar> well second implies first
<hyphon81> OpenStack apps have many dependency, so, if make new version package, when many python applications need to update. There are big impact in Nix.
ryanartecona has quit [(Quit: ryanartecona)]
pi3r has joined #nixos
erasmas has joined #nixos
<globin> ikwildrpepper, domenkozar: can one of you deploy stuff and how long are you available today?
erictapen has quit [(Ping timeout: 246 seconds)]
<domenkozar> globin: I don't have access to nixos.org
<ikwildrpepper> globin: niksnuts handles nixos.org deploys
<ikwildrpepper> globin: what kind of deploy do you need
<domenkozar> globin: just to be sure, are you following https://nixos.org/nixos/manual/#before-the-final-release
<globin> ikwildrpepper: releasing 17.03 in a bit :)
<globin> domenkozar: yes, but not quite ready yet
<globin> domenkozar: still marking some stuff as broken
ryanartecona has joined #nixos
<domenkozar> awesome :) yeah you need niksnut for website updates
<globin> ok fine :)
<hyphon81> I think, It is easy and small impact to make nix codes for "import" at a configuration file such as configuration.nix.
mck has joined #nixos
<hyphon81> So, I made Nixtack so.
<domenkozar> hyphon81: makes sense :)
bkchr has joined #nixos
<NixOS_GitHub> [nixpkgs] jgertm opened pull request #24473: xsv: init at 0.11.0 (master...tj/xsv) https://git.io/vSZDC
<__Sander__> ikwildrpepper: are you still having this node2nix generation issue?
<__Sander__> or haven't you tried the development version yet?
<ashkitten> in my packageOverrides I want to make the preFixup for pasystray null, but it doesn't seem to be working
<NixOS_GitHub> [nixpkgs] globin pushed 18 new commits to master: https://git.io/vSZy2
<NixOS_GitHub> nixpkgs/master ce953d0 Robin Gloster: panomatic: remove
<NixOS_GitHub> nixpkgs/master 8a18e1f Robin Gloster: quagga service: disable
<NixOS_GitHub> nixpkgs/master 877aaef Robin Gloster: boomerang: mark as broken
<NixOS_GitHub> [nixpkgs] globin pushed 18 new commits to release-17.03: https://git.io/vSZyi
<NixOS_GitHub> nixpkgs/release-17.03 34f34f1 Robin Gloster: panomatic: remove...
<NixOS_GitHub> nixpkgs/release-17.03 1327728 Robin Gloster: quagga service: disable...
<NixOS_GitHub> nixpkgs/release-17.03 f8d7f40 Robin Gloster: boomerang: mark as broken...
<hyphon81> Actually, is it minority who want to build OpenStack environment with NixOS?
<ikwildrpepper> __Sander__: sorry, got distracted by all sorts of production stuff, so haven't been able to get around to it yet
<__Sander__> ah ok
<vegai_> hyphon81: sounds like something that would be interesting at $work
<__Sander__> well I intend to release a new version of node2nix very soon
<ikwildrpepper> __Sander__: will it be compatible with 16.09?
<__Sander__> yes
<__Sander__> I still use it with 16.09
<ikwildrpepper> great
<__Sander__> its accuracy has improved a lot for NPM 3.x installations
<ikwildrpepper> well, nothing is great with npm, but still, thanks ;)
<manveru> i'm using yarn2nix now :P
<__Sander__> but I was curious to see if you had any issues
<__Sander__> all my stuff works
<manveru> it works, but i don't have 5 minutes every time i want to add a package
<NixOS_GitHub> [nixpkgs] joachifm pushed 1 new commit to master: https://git.io/vSZSI
<NixOS_GitHub> nixpkgs/master 4d4488e Joachim Fasting: grsecurity: 4.9.18-201703261106 -> 4.9.19-201703300917
<__Sander__> yes that's the price you have to pay if you properly want to simulate npm's quirks
<__Sander__> and bad design choices
<__Sander__> well bad design choices
<manveru> :)
<__Sander__> I think it's more lack of design :p
<__Sander__> and ignoring "well known lessons learned"
<__Sander__> such as permitting cyclic dependencies
<manveru> js: reinventing the last 20 years
<__Sander__> but yeah I have written already too much about the crazy implications of some choices in NPM
<manveru> well, i convinced my team to go with yarn instead of npm, so far everyone's been happy with it
<manveru> but of course that's not a choice for simply packaging existing stuff
pi3r has quit [(Ping timeout: 264 seconds)]
<__Sander__> nope
<__Sander__> I happen to work with people for whom switching to something else is a no-go
<manveru> exactly
<zetok> is nixos supposed to kill everything when fs mount options are invalid?
ok2 has quit [(Ping timeout: 246 seconds)]
tranquilloX has quit [(Ping timeout: 264 seconds)]
Wizek_ has quit [(Ping timeout: 268 seconds)]
<vegai_> I'm a bit weirded out on how I'm supposed to develop arbitrary C software
<vegai_> especially on how to make it see all the libs and includes in weird places
takle has quit [(Remote host closed the connection)]
<goibhniu> have you seen nix-shell vegai_?
<vegai_> goibhniu: no and thanks, I'll take a look :)
<goibhniu> that's probably what you're looking for then :D you're welcome!
<globin> domenkozar: do you know who is responsible for EC2 AMIs and Azure BLOBs?
ok2 has joined #nixos
<copumpkin> What does nix-shell do when your default.nix doesn't evaluate to a derivation?
<domenkozar> globin: that's ikwildrpepper :-)
<vegai_> hmm
<vegai_> so I tried with nix-shell -p ncurses. That should give me an env with ncurses, right?
gilligan_ has quit [(Ping timeout: 240 seconds)]
<globin> ikwildrpepper: are you going th regenerate AMIs (and azure images) in the next few days?
<vegai_> but cc -lncurses derp.c fails: cc doesn't find libncurses
<Unode> If I want to disable the "useEncumberedCode" option from pkgs/development/libraries/freetype/default.nix globally, do I need to use a package override? And does this package override means that anything depending on this package will have to be recompiled if no matching cached version is available?
thc202 has quit [(Ping timeout: 240 seconds)]
<HappyEnte_> copumpkin, error: expression does not evaluate to a derivation (or a set or list of those) :)
gilligan_ has joined #nixos
ixxie has quit [(Ping timeout: 240 seconds)]
spinus has joined #nixos
marsam has joined #nixos
seanz has joined #nixos
cpennington has quit [(Ping timeout: 268 seconds)]
jgertm has quit [(Quit: WeeChat 1.7)]
MercurialAlchemi has joined #nixos
fuzzy-id has quit [(Ping timeout: 240 seconds)]
<NixOS_GitHub> [nixpkgs] copumpkin pushed 1 new commit to master: https://git.io/vSZbF
<NixOS_GitHub> nixpkgs/master 409fe12 Dan Peebles: qt4: fix to work on clang 4...
jgertm has joined #nixos
<hyphon81> OpenStack with NixOS is easy to modify for special purpose and enviroments for executing is seperated from other applications. It's useful for me.
<hyphon81> So, I'm making nix codes for enabling OpenStack apps. https://github.com/hyphon81/Nixtack Those are executable in the moment. However, I have not write good usages and documents.
<NixOS_GitHub> [nixpkgs] hemihydrate opened pull request #24474: plan9port: 2016-04-18 -> 2017-02-10 (master...plan9port) https://git.io/vSZxP
takle has joined #nixos
cpennington has joined #nixos
<NixOS_GitHub> [nixpkgs] hemihydrate closed pull request #24474: plan9port: 2016-04-18 -> 2017-02-10 (master...plan9port) https://git.io/vSZxP
<goibhniu> nice hyphon81!
<hyphon81> goibhniu: Thanks!
thc202 has joined #nixos
froglegs1 has quit [(Ping timeout: 240 seconds)]
froglegs1 has joined #nixos
<Unode> is there any way to know which settings can be overriden in a package? I'm trying "systemPackages = with pkgs [ (freetype.override { useEncumberedCode = false; }) ];" but I'm getting 'assertion failed'.
Itkovian has quit [(Quit: My MacBook has gone to sleep. ZZZzzz…)]
ryanartecona has quit [(Quit: ryanartecona)]
bkchr has quit [(Ping timeout: 256 seconds)]
<hyphon81> nixpkgs's OpenStack apps are old version and few types. However, maintaining those apps is too difficult. And it will be spent many time. Everyone(me too) avoid it. XD I think so.
crzyp3ck has quit [(Ping timeout: 256 seconds)]
marsel has quit [(Ping timeout: 246 seconds)]
<HappyEnte_> Unode, are you on stable release?
<Unode> I currently have http://dpaste.com/212X96J
<Unode> HappyEnte_: yes
<Unode> oh
<Unode> don't tell me... doh
<HappyEnte_> Unode, :) yeah just add useInfinality = false and it should work
ThatDocsLady has quit [(Quit: Arma-geddin-outta-here!)]
<Unode> seems like they both map to the same thing
<Unode> HappyEnte_: but for the sake of completion (and my own learning), if I was with unstable, how should I override it?
vegai_ has left #nixos []
johnsonav has quit [(Ping timeout: 246 seconds)]
<HappyEnte_> Unode, should be exactly right they way you have done it before :)
<jsgrant> Is 17.03 still planned for tomorrow?
crzyp3ck has joined #nixos
deepfire has joined #nixos
<Unode> HappyEnte_: and the error is due to? I don't quite understand why useInfinality = false works. Both variables/attributes are listed on the stable channel.
<HappyEnte_> Unode, the problem is that the newest module which only has the useEncumberedCode argument is avaiable in the unstable channels, but hasn't been backported to stable. In the old module there is an assertion that the two arguments you have now, need to have the same value
<Unode> HappyEnte_: yeah I saw that... I guess my question is more, how can I tell what can be overriden and what cannot.
<HappyEnte_> Unode, Using `override` you generally can override all arguments of the derivation -> the stuff that is written in the curly braces on the top
<Unode> HappyEnte_: thanks that was the answer I was looking for.
<globin> jsgrant: no still for today %)
<NixOS_GitHub> [nixpkgs] copumpkin pushed 1 new commit to master: https://git.io/vSnfh
<NixOS_GitHub> nixpkgs/master 8636ce2 Dan Peebles: caf: fix on clang4...
<NixOS_GitHub> [nixpkgs] globin pushed 1 new commit to master: https://git.io/vSnJl
<NixOS_GitHub> nixpkgs/master f0512f4 Robin Gloster: wxmupen64plus: fix eval
<hyphon81> I'm wondering using Hydra for CI to my Nixtack codes is interesting. However I failed to use Hydra with MariaDB. I thought, if I build Hydra with DBDmysql, then I will be able to use MariaDB on Hydra. Was it too optimismal?
<disasm> I enabled dnsmasq on my laptop and now my containers have 127.0.0.1 in resolv.conf and can't resolve anything. I tried overriding with networking.nameservers = [ "8.8.8.8" ] but that didin't work.
<NixOS_GitHub> [nixpkgs] globin pushed 1 new commit to release-17.03: https://git.io/vSnJj
<NixOS_GitHub> nixpkgs/release-17.03 d94e373 Robin Gloster: wxmupen64plus: fix eval...
ZoomZoomZoom has joined #nixos
Itkovian has joined #nixos
<hyphon81> disasm: For example, I use networking.extraResolvconfConf to generate resolv.conf.
jmeredith has joined #nixos
ryanartecona has joined #nixos
Itkovian has quit [(Read error: Connection reset by peer)]
stepcut has quit [(Remote host closed the connection)]
stepcut has joined #nixos
vaibhavsagar has quit [(Ping timeout: 256 seconds)]
stepcut has quit [(Ping timeout: 240 seconds)]
bfrog has quit [(Ping timeout: 264 seconds)]
jgertm has quit [(Ping timeout: 260 seconds)]
civodul has quit [(Quit: ERC (IRC client for Emacs 25.1.1))]
freusque has quit [(Quit: WeeChat 1.7)]
stepcut has joined #nixos
b123400 has joined #nixos
teknico has left #nixos []
MercurialAlchemi has quit [(Ping timeout: 256 seconds)]
<NixOS_GitHub> [nixpkgs] globin pushed 2 new commits to master: https://git.io/vSnLW
<NixOS_GitHub> nixpkgs/master 80c916b Robin Gloster: docs: 16.09 -> 17.03
<NixOS_GitHub> nixpkgs/master f9a1060 Robin Gloster: qt-gstreamer: fix build and do not mark wrong pkgs as broken
<NixOS_GitHub> [nixpkgs] Mic92 pushed 1 new commit to release-17.03: https://git.io/vSnLj
<NixOS_GitHub> nixpkgs/release-17.03 23fdea4 Michal Rus: bitlbee-facebook: 2015-08-27 → 1.1.0...
<schoppenhauer> hi. https://pastebin.com/hpmHweT5 is part of my ~/.nixpkgs/config.nix, and when I do nix-env -iA unstable.keepass_, it is correctly installed with the plugin. However, when I run nix-env --upgrade --fallback --leq -k, it overwrites this with the default keepass, probably because the name is the same, and the version too. what can I do about it?
Itkovian has joined #nixos
johnsonav has joined #nixos
ixxie has joined #nixos
derjohn_mob has quit [(Ping timeout: 240 seconds)]
ixxie has quit [(Ping timeout: 260 seconds)]
batdog has quit [(Remote host closed the connection)]
Itkovian has quit [(Ping timeout: 260 seconds)]
<unlmtd[m]> Came across this pearl while reading the manual: "the Nix language is all about creating derivations, which are really just sets of attributes to be passed to build scripts."
<gchristensen> unlmtd[m]: yeah :)
batdog has joined #nixos
__Sander__ has quit [(Quit: Konversation terminated!)]
<dash> this is _mostly_ true. :)
<NixOS_GitHub> [nixpkgs] globin pushed 4 new commits to release-17.03: https://git.io/vSnOS
<NixOS_GitHub> nixpkgs/release-17.03 569d45d Robin Gloster: Release Notes 17.03: update
<NixOS_GitHub> nixpkgs/release-17.03 47d7580 Robin Gloster: docs: 16.09 -> 17.03...
<NixOS_GitHub> nixpkgs/release-17.03 e005c15 Robin Gloster: qt-gstreamer: fix build and do not mark wrong pkgs as broken...
nevermind has joined #nixos
<globin> domenkozar: next channel update after a new eval will be stable \o/
zeus_ has joined #nixos
ybit has joined #nixos
akaWolf has joined #nixos
ybit has quit [(Client Quit)]
<NixOS_GitHub> [nixpkgs] dtzWill opened pull request #24475: boomerang: update to latest git, un-mark broken (master...fix/boomerang) https://git.io/vSnGn
stepcut has quit [(Remote host closed the connection)]
stepcut has joined #nixos
ixxie has joined #nixos
ambro718 has joined #nixos
gilligan_ has quit [(Ping timeout: 240 seconds)]
ndowens08 has joined #nixos
<NixOS_GitHub> [nixpkgs] fpletz opened pull request #24476: nginx service: reload instead of restart (master...feature/nginx-reload) https://git.io/vSnGj
<ndowens08> Man they got done with my areas inventory and I am missing like 1300ish 20oz, 600+ of another and 700ish. Geez
* jsgrant-_ plans on getting a pinebook during the 17.03 & trying to compile NixOS on it. :^)
<ndowens08> What's a pine book?
<jsgrant-_> ndowens08: It's a Pine A64 (arm chip) in a cheap 100usb laptop rig.
<ndowens08> Never heard it
<ndowens08> Hmm
<ndowens08> Looks nice
<jsgrant-_> Based of allwinner stuff, so ... meh; But still, for the price that I can feel relatively guilt-free dipping full-in to NixOS non-vm (and not trying to convert all my boxes asap like a bit of a spaz) -- hard to beat.
<ndowens08> And cheap
mudri has quit [(Ping timeout: 258 seconds)]
<ndowens08> Yup be nice to try
afldcr has joined #nixos
<jsgrant-_> Already have a 200gb (usable 180gb) miniSD card I have set aside for it even. :^)
hexanode has joined #nixos
<ndowens08> Dang. Lol biggest storage not including HD I have is like 32gb or so I think
<jsgrant-_> A bit worried for compiling most of the toolchain locally -- which it seems I may have to do though; Oh well if-so.
ryanartecona has quit [(Quit: ryanartecona)]
hexanode has quit [(Remote host closed the connection)]
zeus_ has quit [(Read error: Connection reset by peer)]
<jsgrant-_> ndowens08: Got it for like 65usd on-sale awhile back; Haven't done much with it. Was going to put it in my RPi3 for a HTPC, but only need like 30gb there -- have everything else on my homeserver.
zeus_ has joined #nixos
<ndowens08> Ah. I got mine flash drive for game backup since it tended to get corrupted
<jsgrant-_> Been ripping all my family videos to a 3tb hdd; Was running out of space on 1. Storage is getting so cheap, it's crazy.
<ndowens08> But good for buyers
Kendos-Kenlen has joined #nixos
<Dezgeg> you don't need to compile much since there is one aarch64 in hydra
gilligan_ has joined #nixos
Kendos-Kenlen has quit [(Client Quit)]
<ndowens08> I want a SSD at some point, probably whenever my HD goes out
Kendos-Kenlen has joined #nixos
<Kendos-Kenlen> Hi ! :)
<jsgrant-_> Dezgeg_: Oh, there is? I just remember awhile back that someone said they had to compile a bunch for a RPi3; Didn't look into it beyond that thusfar.
stepcut has quit [(Remote host closed the connection)]
<Kendos-Kenlen> I have a little problem with package installed on my user profile. While software installed system-wide use the correct KDE theme, software installed user-wide use another theme (plastic maybe) which look very ugly.
<Kendos-Kenlen> I know someone else had the problem one month ago but I have no idea how he solved this ...
jgertm has joined #nixos
<ndowens08> If you install for one user instead through root it won't be used by others
<dash> ndowens08: sounds like his problem is the other direction
<jsgrant-_> ndowens08: I'm gonna get 500gb one by the end of the year for my desktop. This box I'm on now, an "ultraportable laptop" I just bought in Feburary was the first SSD I've had & am still shocked (even though I knew it would be significantly better) just how much better it is.
<jsgrant-_> Switching to swap for example, doesn't freeze my whole box on a regular basis.
<ndowens08> jsgrant: yup heard it's faster
<ndowens08> I don't use swap got like 16gb ram
* jsgrant-_ was going to switch to btrfs, but is still shocked it doesn't support swap.
<ndowens08> For what I do it is enough
<jsgrant-_> ndowens08: Eventually upgrading desktop to that ... 5gb now, less than this ultraportable laptop @ 8gb. :^U
<disasm> jsgrant-_: swap files are evil, just partition off a bit of the disk for dedicated swap.
<Kendos-Kenlen> +1 disasm
<ndowens08> Could do that
<jsgrant-_> At this point, I'm just running xfs with a dedicated swap under lvm; Via Fedora.
<jsgrant-_> Just think it looks uglier.
<disasm> btrfs here... root in a subvol so I can switch back and forth between arch and nixos, but I seldomly boot into arch anymore.
<joko> Hello, any hints for making Hydra work on a new install?
Itkovian has joined #nixos
jmsb has joined #nixos
<NixOS_GitHub> [hydra] shlevy pushed 2 new commits to master: https://git.io/vSnCz
<NixOS_GitHub> hydra/master 3b5fd2d Shea Levy: hydra-eval-jobs: Disable the build hook....
<NixOS_GitHub> hydra/master ec1c8ef Shea Levy: Merge branch 'eval-no-build-hook'
<dtzWill> joko: dunno but have you tried the hydra manual? http://nixos.org/hydra/manual/#chap-installation
goibhniu has quit [(Ping timeout: 264 seconds)]
<NixOS_GitHub> [nixpkgs] fpletz closed pull request #24410: 2bwm: init at 0.2 (master...2bwm) https://git.io/vSYiu
nschoe has quit [(Quit: Program. Terminated.)]
<dtzWill> although it's strange the manual doesn't have you use configuration.nix for any of it
Kendos-Kenlen has quit [(Quit: Konversation terminated!)]
<joko> dtzWill: no, I haven't, I was hoping for sth easier with NixOS... Let's try it then
<joko> I see in IRC logs gchristensen reporting that Hydra is not working in new 16.09 setups :/
<gchristensen> I was disproven
<jsgrant-_> Either or, want to mess with it a lot more as-well as zfs(or even 'tfs').
<joko> It's not that things are not being installed, jobs are scheduled to be built like forever
tsmeets has joined #nixos
<copumpkin> ttuegel: you around?
acowley_away is now known as acowley
<copumpkin> I can't tell if folks are online from the iOS riot client :)
<deepfire> gchristensen: globin: nixbot seems deprecated in favor of hercules, right?
ryanartecona has joined #nixos
ndowens08 has quit [(Quit: Mutter: www.mutterirc.com)]
nevermind has quit [(Quit: Textual IRC Client: www.textualapp.com)]
<globin> deepfire: I'm still going to continue until there is something which can replace it..
<gchristensen> deepfire: hercules is a long way away
<deepfire> domen offered me to work on it
<deepfire> and it's a bit.. alluring
tranquilloX has joined #nixos
<NixOS_GitHub> [nixpkgs] peti pushed 1 new commit to master: https://git.io/vSnlz
<NixOS_GitHub> nixpkgs/master b6c9317 Peter Simons: hackage-packages.nix: automatic Haskell package set update...
chakerbenhamed has quit [(Ping timeout: 246 seconds)]
derjohn_mob has joined #nixos
Wizek_ has joined #nixos
stepcut has joined #nixos
<NixOS_GitHub> [nixpkgs] romildo opened pull request #24477: gworkspace: 0.9.3 -> 0.9.4 (master...upd.gworkspace) https://git.io/vSn4O
ocmylife has quit [(Quit: Connection closed for inactivity)]
endformationage has joined #nixos
ambro718 has quit [(Ping timeout: 260 seconds)]
stepcut has quit [(Remote host closed the connection)]
stepcut has joined #nixos
ocmylife has joined #nixos
b123400 has quit [(Remote host closed the connection)]
stepcut_ has joined #nixos
stepcut has quit [(Read error: Connection reset by peer)]
sjanssen_ has joined #nixos
vdemeester_ has joined #nixos
mpickering_ has joined #nixos
stepcut_ has quit [(Remote host closed the connection)]
modafinil_ has joined #nixos
stig_ has joined #nixos
philips_ has joined #nixos
dvim_ has joined #nixos
ixxie has quit [(Ping timeout: 240 seconds)]
r0bby_ has joined #nixos
ocharles_ has joined #nixos
aristid_ has joined #nixos
Gowilla has joined #nixos
canndrew_ has joined #nixos
sivteck has joined #nixos
Nazral_ has joined #nixos
stepcut has joined #nixos
Itkovian has quit [(Quit: My MacBook has gone to sleep. ZZZzzz…)]
dvim has quit [(Ping timeout: 276 seconds)]
vdemeester has quit [(Ping timeout: 276 seconds)]
mpickering has quit [(Ping timeout: 276 seconds)]
r0bby has quit [(Ping timeout: 276 seconds)]
hexkey[m] has quit [(Ping timeout: 276 seconds)]
ArdaXi[m] has quit [(Ping timeout: 276 seconds)]
Shell has quit [(Ping timeout: 276 seconds)]
saintaquinas[m] has quit [(Ping timeout: 276 seconds)]
angerman has quit [(Ping timeout: 276 seconds)]
ocharles has quit [(Ping timeout: 276 seconds)]
philips has quit [(Ping timeout: 276 seconds)]
sjanssen has quit [(Ping timeout: 276 seconds)]
canndrew has quit [(Ping timeout: 276 seconds)]
ragge has quit [(Ping timeout: 276 seconds)]
martijn923 has quit [(Ping timeout: 276 seconds)]
domenkozar has quit [(Ping timeout: 276 seconds)]
elasticdog has quit [(Ping timeout: 276 seconds)]
Heffalump has quit [(Ping timeout: 276 seconds)]
SkeThuVe has quit [(Ping timeout: 276 seconds)]
icetan has quit [(Ping timeout: 276 seconds)]
rycee[m] has quit [(Ping timeout: 276 seconds)]
shanemikel[m] has quit [(Ping timeout: 276 seconds)]
M-liberdiko has quit [(Ping timeout: 276 seconds)]
bendlas has quit [(Ping timeout: 276 seconds)]
modafinil has quit [(Ping timeout: 276 seconds)]
stig has quit [(Ping timeout: 276 seconds)]
aristid has quit [(Ping timeout: 276 seconds)]
voidrays has quit [(Ping timeout: 276 seconds)]
Nazral has quit [(Ping timeout: 276 seconds)]
vdemeester_ is now known as vdemeester
sivan has joined #nixos
dvim_ is now known as dvim
sjanssen_ is now known as sjanssen
mpickering_ is now known as mpickering
domenkozar has joined #nixos
martijn923 has joined #nixos
SkeThuVe has joined #nixos
hexkey[m] has joined #nixos
sivteck__ has joined #nixos
stig_ is now known as stig
shanemikel[m] has joined #nixos
philips_ is now known as philips
ArdaXi[m] has joined #nixos
voidrays has joined #nixos
flyx has joined #nixos
rycee[m] has joined #nixos
Shell has joined #nixos
M-liberdiko has joined #nixos
icetan has joined #nixos
bendlas has joined #nixos
r0bby_ is now known as r0bby
modafinil_ is now known as modafinil
ma9e has joined #nixos
elasticdog has joined #nixos
<ma9e> how do we install ruby gems? i get a write permissions error
aristid_ is now known as aristid
sivteck__ has quit [(Client Quit)]
saintaquinas[m] has joined #nixos
sivan has quit [(Client Quit)]
sivteck has quit [(Quit: Leaving)]
ocharles_ is now known as ocharles
ma9e has quit [(Client Quit)]
<copumpkin> Staging eval is broken.
romildo has joined #nixos
marsam has quit [(Remote host closed the connection)]
stepcut has quit [(Remote host closed the connection)]
b123400 has joined #nixos
deepfire has quit [(Ping timeout: 260 seconds)]
Gowilla is now known as Heffalump
ertesx has joined #nixos
<romildo> Where is there documentation on how to specify a font, including for instance the family name, size, style, etc.
jensens has joined #nixos
b123400 has quit [(Ping timeout: 240 seconds)]
jsgrant-_ has quit [(Read error: Connection reset by peer)]
ertes has quit [(Ping timeout: 240 seconds)]
ertesx is now known as ertes
simendsjo has joined #nixos
stepcut has joined #nixos
<ashkitten> yo I really like domhnall gleeson, no hetero tho
<NixOS_GitHub> [nixpkgs] kamilchm opened pull request #24478: ponyc: 0.11.4 -> 0.12.1 (master...ponyc) https://git.io/vSnug
<ashkitten> oops wrong channel
stepcut has quit [(Remote host closed the connection)]
<demax> Dezgeg, nope, your images doesn't work either. Same gradient on bootup. Raspbian works though. I still have about a day before I'll try bootstrapping from raspbian. Meanwhile, maybe you have some tricks to debug to debug your images on real hardware? Except UART
JagaJaga has joined #nixos
Wizek has joined #nixos
ok2 has quit [(Ping timeout: 268 seconds)]
<Dezgeg> maybe tweaking the config.txt, in case something is wrong there
<NixOS_GitHub> [nixpkgs] Mic92 pushed 1 new commit to master: https://git.io/vSnzY
<NixOS_GitHub> nixpkgs/master 3d5e451 Jörg Thalheim: luaPackages.vicious 2.1.3 -> 2.2.0...
<Dezgeg> maybe enable_uart=1 needs to be in the [pi2] section as well
<ericnoan> is there a place to share config files?
<ericnoan> i would like to see a full-fledged config
lucasOfBesaid has left #nixos []
deepfire has joined #nixos
<ericnoan> i found some on github
marsam has joined #nixos
twopoint718 has joined #nixos
twopoint718 has quit [(Client Quit)]
marsel has joined #nixos
deepfire has quit [(Ping timeout: 240 seconds)]
romildo has left #nixos ["Leaving"]
chakerbenhamed has joined #nixos
nckx has quit [(Quit: restarting my ZNC)]
jensens has quit [(Ping timeout: 260 seconds)]
<ericnoan> are there nix presets available anywhere? like for desktops
nckx has joined #nixos
deepfire has joined #nixos
jgertm has quit [(Ping timeout: 246 seconds)]
thc202 has quit [(Ping timeout: 256 seconds)]
<nixy> ericnoan: What do you mean by presets? Just enabling a desktop environment should give you a "preset"
ryanartecona has quit [(Quit: ryanartecona)]
<NixOS_GitHub> [nixpkgs] Ma27 opened pull request #24479: lambda-mod-zsh-theme: init at eceee68cf46bba9f7f42887c2128b48e8861e31b (master...init/lambda-mod-zsh-theme) https://git.io/vSnav
<ericnoan> nixy: yes, but what about small stuff like fonts and power management?
<nixy> ericnoan: I don't think there is any sort of example nix.config for what your looking for, there are default values for all the options if you inspect them though
stepcut has joined #nixos
MichaelRaskin has joined #nixos
<demax> Guys, where did nixos wiki moved? There is no wiki on https://github.com/NixOS/nixpkgs so I'm puzzled
kuznero has joined #nixos
<kuznero> Hi All!
<nixy> ericnoan: There is also a collection of some peoples configurations on the old wiki that might help https://nixos.org/wiki/Real_World_NixOS_Dotfiles
<kuznero> When new version of NixOS will be release (if not already) how should one proceed with upgrading?
<clever> kuznero: add the new channel with "nix-channel --add URL nixos" and then nixos-rebuild boot and reboot
<clever> kuznero: nix-channel should be ran as root
jensens has joined #nixos
yumbox has quit [(Remote host closed the connection)]
<kuznero> clever: currently there are now channels registered (there is probably one that is used implicitly)... is adding a new channel an official way of upgrading to 17.03? Can I just change nixos version to 17.03 in *.nix configuration file?
<clever> kuznero: it can only be changed by running nix-channel, no config in configuration.nix can control what channel it uses
<clever> kuznero: and it is the channel that is responsible for loading configuration.nix, so its too late to change things by the time its parsing
tranquilloX has left #nixos []
Itkovian has joined #nixos
angerman has joined #nixos
Itkovian has quit [(Client Quit)]
<kuznero> clever: thanks! Is this command precise? `nix-channel --add https://github.com/NixOS/nixpkgs-channels/archive/nixos-17.03.tar.gz nixpkgs && nix-channel --update`
seanz has quit [(Quit: Leaving.)]
<clever> kuznero: the channel name must be nixos, and the channel url doesnt end in .tar.gz
jensens has quit [(Ping timeout: 246 seconds)]
<clever> nix-channel --add https://nixos.org/channels/nixos-17.03 nixos
seanz has joined #nixos
Itkovian has joined #nixos
bkchr has joined #nixos
<kuznero> clever: so, `nix-channel --add https://nixos.org/channels/nixos-17.03 nixos && nix-channel --update`. Thanks!
<clever> yep
<kuznero> thanks!
deepfire has quit [(Ping timeout: 260 seconds)]
seanz1 has joined #nixos
<kuznero> Is krgn: user here now?
seanz has quit [(Ping timeout: 246 seconds)]
Nazral_ is now known as Nazral
<kuznero> I am trying to figure out the details about how F# compiler package was upgraded last time... As new version has many more dependencies that need to be converted into nix packages. And I would really like to get some help in understanding the basics of it. (I have a strong .net background, just need to catch up on nix packaging)...
seanz1 has quit [(Ping timeout: 246 seconds)]
<ericnoan> what is a NAR file?
<dash> ericnoan: an archive like tar, but in a deterministic order (for stable hashes)
<clever> and it cant store uid or timestamps
<ericnoan> dash: oh so it is what is served from the binary cache?
<dash> right
<ericnoan> i have been reading haha
<dash> i think the salient property is: nar files with the same file contents will have the same hash
tsmeets has quit [(Quit: leaving)]
<demax> wow, I didn't know tar was non-deterministic
<dash> demax: files can be in different orders, have different timestamps/uids, etc
AllanEspinosa has joined #nixos
<clever> i think tar just leaves them in the same order they where in on-disk
<clever> which can vary from filesystem to filesystem, and the order they where made in
<clever> ls sorts by name by default, so its hard to notice (ls -U disables all sorting)
<NixOS_GitHub> [nixpkgs] NeQuissimus closed pull request #24389: google-cloud-sdk: 138.0.0 -> 148.0.1 (master...gcloud_148) https://git.io/vStbw
<demax> it was created for archiving from/to with magnetic types so making it read files continusolsy makes sense
<kuznero> clever: I can see that when I added 17.03 channel that it still downloads from beta channel. Will that be switched to released soon?
<demax> *tapes
<gchristensen> demax: true :)
<gchristensen> demax: that is a good point
civodul has joined #nixos
seanz has joined #nixos
<clever> kuznero: that will probably change when 17.03 becomes official
bkchr has quit [(Ping timeout: 260 seconds)]
<kuznero> clever: I thought it was planned for today
seanz1 has joined #nixos
seanz1 has quit [(Client Quit)]
bkchr has joined #nixos
b123400 has joined #nixos
b123400_ has joined #nixos
b123400 has quit [(Read error: Connection reset by peer)]
b123400_ has quit [(Remote host closed the connection)]
seanz has quit [(Ping timeout: 246 seconds)]
b123400 has joined #nixos
<kuznero> Is here anybody who can help figure out how to connect new packages done with `fetchNuGet` with new dotnet packages that depend on these "fetched" packages?
goibhniu has joined #nixos
goibhniu has quit [(Changing host)]
goibhniu has joined #nixos
katyucha has quit [(Killed (card.freenode.net (Nickname regained by services)))]
katyucha_ is now known as katyucha
katyucha_ has joined #nixos
b123400_ has joined #nixos
<spinus> kuznero: are you trying to "copy few packages into one directory" approach?
b123400 has quit [(Ping timeout: 240 seconds)]
<demax> seems like my question got ignored, but still, if old wiki is deprecated, where is the new wiki?
<clever> demax: everything is being moved to documentation on the site, which is stored witnin the git repos
<MichaelRaskin> There is no new Wiki
<kuznero> spinus: not exactly. my plan is to bring new version of F# compiler (4.1.1, previos is 4.0.1.1). This new version depends on some new NuGet packages and also new versions of packages that are already available in nix.
ugjka is now known as xyk
xyk is now known as ugjka
stepcut has quit [(Remote host closed the connection)]
sivteck has joined #nixos
stepcut has joined #nixos
<demax> clever, jeez, that wasn't obvious. I thinks it would be beeter to emphasise the disclaimer on old wiki in red rectangle and give some more explanation/link to page in old wiki that describes rationale behind this and steps taken.
<makefu> clever: but there is also https://github.com/NixOS/nixpkgs/issues/22599
<MichaelRaskin> The rationale is trivial, actually: the spammers have won
<makefu> clahaha
<kuznero> spinus: thus, I need to bring some new packages that are done with `fetchNuGet` function. My problem really at this moment is that I cannot understand how to get access to existing nix packages (created with `fetchNuGet`) from the F# package that is building it from sources (normally, NuGet dependencies need to be found under the same project folder in `./packages`, but they are only in nix store). So, should I just try to
<kuznero> create symlinks to simulate that I have local `./packages` folder or what? This is where I got stuck currently.
<clever> lol
<spinus> kuznero: looks for packages overriding, you can override dependencies and other stuff in existing packages
<clever> spinus: one neat override ive done before, wireshark = pkgs.wireshark.override { gtk = pkgs.enableDebugging pkgs.gtk; libnl = pkgs.enableDebugging pkgs.libnl; };
<kuznero> spinus: tricky part is that these packages-dependencies need to be available at the time I build F#-package as if it is placed under `./packages` folder of F# project.
<clever> spinus: this rebuilds gtk and libnl with debug symbols, then builds a non-debug wireshark against the debug gtk+libnl
deepfire has joined #nixos
<clever> spinus: so now the debug info in gdb is targeting only the area of the backtrace that has a segfault
<spinus> kuznero: there is no trick there, if you follow the procedure the packages will be overriden in the build time
stepcut has quit [(Ping timeout: 246 seconds)]
chakerbenhamed has quit [(Ping timeout: 240 seconds)]
<spinus> clever: hmm
<spinus> so, hard way, clone nixpkgs and modify stuff :)
<spinus> ?
<clever> spinus: thats usualy the easyer way, but it gives you more work in the long-term, to maintain the change
<demax> Dezgeg, added enable_uart=1, nothing. removed free space before boot partition - still no luck.
<demax> I saw uboot-xxx-bananapi.bin and I do have BananaPi. Can you please exaplin/point to guides how to enable that.
<kuznero> spinus: I have started it already. Here is how it looks now: https://github.com/kuznero/nixpkgs/blob/master/pkgs/development/compilers/fsharp/default.nix
<spinus> kuznero: clever: overlay?
<Dezgeg> banana pi should work exactly like the linksprite one in https://nixos.org/wiki/NixOS_on_ARM but you take the banana pi u-boot
<spinus> should be doable with overlays
<clever> spinus: yeah, an override or overlay will stick long term and have little maintaince cost
stepcut has joined #nixos
<spinus> clever: live is just a set of hard decisions, isn't it :-) I started maintain my own packages as "kind of" overlay, I fixed version of <nixpkgs> in a script, and other are placed in pkgs directory, I wouldn't say it's too much work for me, especially when you write few "update" scripts to generate you nix expressions (like garbas started doing for firefox I think in nixpkgs repo)
<kuznero> clever: ok, will try that. Even though I cannot understand currently how to make packages available in nix store available in build time under ./packages/ folder.
<spinus> kuznero: you just need to overide buildInput or add buildPhase script to link it somehow, no?
<spinus> if not, probably I'm not in the right context
<kuznero> spinus: yep, that what I had in mind, just wanted to ask if it is good aproach.
<clever> kuznero: here is how i solved a git submodule a few months ago: https://github.com/NixOS/nixpkgs/blob/master/pkgs/games/multimc/default.nix#L23-L24
<spinus> kuznero: I think so, I use that with some packages to add dependencies when never version requires that and works for me
bkchr has quit [(Ping timeout: 240 seconds)]
<kuznero> ok, thanks! will try it.
kuznero has quit [(Quit: Leaving)]
<NixOS_GitHub> [nixpkgs] globin tagged 17.03 at 40e0226: https://git.io/vSnX4
<globin> \o/
<MichaelRaskin> Congratulations
<gchristensen> hot diggity dog, globin!!
stepcut has quit [(Remote host closed the connection)]
<globin> Just have to wait for niksnut to update the website to announce it properly %)
<gchristensen> anyone know how to debug this error from cmake? "configure: error: Could not find a version of the library!" right after lines: "checking for boostlib >= 1.51.0... yes\nchecking whether the Boost::Context library is available... yes" and no other information about what was missing.
<gchristensen> while compiling: https://github.com/facebook/folly
<globin> gchristensen: is there a config.log in the build directory?
<spinus> gchristensen: there should be logfile with more info
<demax> Dezgeg, yess, that worked! Thanks.
<gchristensen> last 3 lines are: #define HAVE_BOOST /**/ #define HAVE_BOOST_CONTEXT /**/ configure: exit 1
<globin> gchristensen: can you paste it into a gist?
<gchristensen> sure
yumbox has joined #nixos
simendsjo has quit [(Quit: ERC (IRC client for Emacs 24.5.2))]
<yumbox> how can I edit my environment variables?
zeus_ has quit [(Remote host closed the connection)]
acowley is now known as acowley_away
<dash> yumbox: _your_ environment variables?
bkchr has joined #nixos
<dash> like, the ones in your house? ;-)
<yumbox> the stuff that shows up when you execute printenv
ragge has joined #nixos
<gchristensen> globin: here is the default.nix (I copied it out of a larger default.nix, so it may have minor issues not present in my copy,) the build log, and the config.log https://gist.github.com/grahamc/ca054aa618078dad781cc45e4f16ade5 (spinus)
Itkovian has quit [(Quit: My MacBook has gone to sleep. ZZZzzz…)]
<yumbox> I set environment.variables in my config.nix, but only some of them work.
<yumbox> `GTK_DATA_PREFIX` gets set, but `XCURSOR_PATH` doesn't get set
<NixOS_GitHub> [nixpkgs] Ma27 opened pull request #24480: geogebra: 5-0-346-0 -> 5-0-350-0 (master...update/geogebra) https://git.io/vSn1g
<NixOS_GitHub> [nixpkgs] pmahoney opened pull request #24481: wrk: use packaged openssl, luajit (master...wrk-no-vendored-luajit) https://git.io/vSn1r
<yumbox> I suspect environment.nix overrides some of my stuff.
<globin> gchristensen: really weird one
<globin> never seen anything like that
<globin> i'll see if I can debug further
<disasm> I love nixos on my laptop!!! I think writing nix files is finally starting to click! Amazing what two days of forcing yourself to learn will accomplish!
<gchristensen> disasm: nice! :D
<schoppenhauer> *push* hi. https://pastebin.com/hpmHweT5 is part of my ~/.nixpkgs/config.nix, and when I do nix-env -iA unstable.keepass_, it is correctly installed with the plugin. However, when I run nix-env --upgrade --fallback --leq -k, it overwrites this with the default keepass, probably because the name is the same, and the version too. what can I do about it?
<dash> disasm: it's a steep hill to climb but not a tall one :)
<spinus> gchristensen: you may try to add boost.dev to buildInputs
<spinus> maybe "boost" only contains bins
<gchristensen> I ~believe~ I tried that, but I'll give it a go :)
<spinus> :(
<globin> spinus, gchristensen: buildInputs handles that
<gchristensen> ah I thought that was the case, and adding `.dev` didn't help
yumbox has quit [(Read error: Connection reset by peer)]
<spinus> globin: wow, magic, how that works, how it knows which output has sources?
<globin> spinus: vcunat is the magician \o/
marsam has quit [(Read error: Connection reset by peer)]
<spinus> :)
<spinus> I'll look there that sounds interesting
Itkovian has joined #nixos
marsam has joined #nixos
stepcut has joined #nixos
jgertm has joined #nixos
lamby has joined #nixos
<globin> gchristensen: configure looks weird at lines 18367-18381
yumbox has joined #nixos
yumbox has quit [(Remote host closed the connection)]
hotfuzz_ has quit [(Ping timeout: 260 seconds)]
stepcut has quit [(Remote host closed the connection)]
<copumpkin> Anyone know how to unscrew staging? It looks like just a patch reference that needs to be removed but I don't really know
yumbox has joined #nixos
<NixOS_GitHub> [nixpkgs] Profpatsch opened pull request #24482: /lib/default.nix: Add file docstring & unit test hint (master...lib-main-docstring) https://git.io/vSnD2
<NixOS_GitHub> [nixpkgs] benley opened pull request #24483: latte-dock: init at 0.5.98 (master...latte-dock) https://git.io/vSnDi
steveeJ has quit [(Ping timeout: 255 seconds)]
yumbox has quit [(Remote host closed the connection)]
<Dezgeg> I guess ttuegel needs to actually commit the patch :)
<Dezgeg> or maybe that patch needs to be brought back actually
kuznero has joined #nixos
<kuznero> After upgrading to 17.03 channel I start getting this error when calling `sudo nixos-rebuild switch`: ln: failed to create symbolic link '/nix/store/zj0s1zbbiq0k6cd3xps3jvqqvn05xm6l-user-units/gnome-terminal-server.service': File exists
<kuznero> Should I just try to remove existing link, or something more fundamental is wrong here?
thc202 has joined #nixos
bkchr has quit [(Ping timeout: 260 seconds)]
yumbox has joined #nixos
yumbox_ has joined #nixos
<ashkitten> does anyone else use pasystray and have an issue with it not using the icon theme?
yumbox_ has left #nixos []
stepcut has joined #nixos
bkchr has joined #nixos
<globin> kuznero: could you paste your configuration.nix to gist.github.com or similar?
yumbox has quit [(Remote host closed the connection)]
<NixOS_GitHub> [nixpkgs] dezgeg pushed 1 new commit to staging: https://git.io/vSnSw
<NixOS_GitHub> nixpkgs/staging 4df59be Tuomas Tynkkynen: fontconfig_210: Remove reference to obsolete patch...
<kuznero> Did anybody see this problem when rebuilding from 17.03 channel? https://pastebin.com/HDFn9Bnx
bkchr has quit [(Ping timeout: 258 seconds)]
yumbox has joined #nixos
zeus_ has joined #nixos
<globin> kuznero: yeah could you paste us your (redacted) configuration.nix?
<kuznero> sec
bkchr has joined #nixos
<fpletz> kuznero: specifically, do you maybe add gnome-terminal-server manually to systemd.packages in your nixos configuration?
steveeJ_ has joined #nixos
<kuznero> yep
<kuznero> fpletz: yes, I did that when I wanted to use gnome-terminal from Xfce at some point. Should I remove it now? (I moved to Gnome anyway)
<fpletz> kuznero: yeah, please try removing that :)
<yumbox> how can I set my environment variables?
<yumbox> this is my config.nix: https://transfer.sh/oL1xJ/configuration.txt
<yumbox> but it doesn't set XDG_CURSOR
<ashkitten> is XDG_CURSOR set somewhere else, yumbox?
<kuznero> fpletz: just a moment... :)
<fpletz> kuznero: services.gnome3.gnome-terminal-server already sets that for you
<ashkitten> or by something else...
<yumbox> ashkitten: i dont think so
<fpletz> you probably have that enabled, too
<yumbox> oh, sorry, meant XCURSOR_PATH instead of XDG_CURSOR
<ashkitten> yumbox: you're sure it's not set?
<yumbox> no
faffolter has joined #nixos
<yumbox> `printenv | grep XCUR` returns nothing
<kuznero> fpletz: it worked! thanks!!!
<ashkitten> yumbox: try echo $XCURSOR_PATH?
<yumbox> empty
<ashkitten> hmm
__Sander__ has joined #nixos
<ashkitten> try from a TTY
<yumbox> `printenv GTK_DATA_PREFIX` returns `/run/current-system/sw`
<yumbox> ashkitten: it works from a TTY
<ashkitten> that's what i thought... something is unsetting your environment variable
<yumbox> hmm
<ashkitten> what do you use in your X environment?
<yumbox> i3
<ashkitten> and your DM?
mudri has joined #nixos
pie__ has joined #nixos
<niksnut> globin: thanks, will do that tomorrow
<yumbox> ashkitten: i3
<yumbox> oh
<disasm> ah yes, the age old question, what WM do you use :)
<ashkitten> yumbox: your display manager
<yumbox> uhm, SLiM
<yumbox> i dunno actually
<yumbox> the thing that comes default with NixOS
<globin> niksnut: ok, the rest is done, channel with stableBranch=true is published
<ashkitten> I have no idea actually, i have to go for a bit
<yumbox> yeah, i think it's slim
<yumbox> oh, okay
<gchristensen> globin, spinus: fwiw: https://github.com/facebook/folly/issues/570
<yumbox> when I do printenv, I see it's full of shit I didn't put in
<gchristensen> !m globin
<[0__0]> You're doing good work, globin!
<yumbox> how can I track what's setting it?
<dash> yumbox: look at environment for parent processes
<yumbox> how do I do that?
Drakonis has joined #nixos
<dash> yumbox: look at /proc/<somepid>/environ
Drakonis_ has joined #nixos
<NixOS_GitHub> [nixpkgs] 7c6f434c pushed 4 new commits to master: https://git.io/vSn7C
<NixOS_GitHub> nixpkgs/master 7a46312 Michael Raskin: xorg-rgb: init at 1.0.6
<NixOS_GitHub> nixpkgs/master 6f904bd Michael Raskin: clwrapper: setup-hook: correctly handle multiple additions to registry
<NixOS_GitHub> nixpkgs/master 5032d47 Michael Raskin: quicklisp-to-nix: check that the package is loadable
<copumpkin> So staging has been broken for 3 days :)
Mateon1 has quit [(Ping timeout: 260 seconds)]
<copumpkin> Oh did someone fix it
<copumpkin> Dezgeg: <3
<copumpkin> I hate being on mobile
<yumbox> now what do I do?
<dash> yumbox: ?
<NixOS_GitHub> [nixpkgs] joachifm pushed 1 new commit to master: https://git.io/vSn7A
<NixOS_GitHub> nixpkgs/master f9cb877 Joachim Fasting: linux_4_9: 4.9.18 -> 4.9.19
<yumbox> `find /proc/ -name environ | xargs grep XCURSOR_PATH > bla.txt`
<yumbox> pid 735 is `3h6afsmsgynw1vr` and 749 is `dbus-launch`
<NixOS_GitHub> [nixpkgs] globin pushed 1 new commit to release-17.03: https://git.io/vSn5T
<NixOS_GitHub> nixpkgs/release-17.03 5c6490e Joachim Fasting: linux_4_9: 4.9.18 -> 4.9.19...
<NixOS_GitHub> [nixpkgs] globin pushed 1 new commit to master: https://git.io/vSn5I
<NixOS_GitHub> nixpkgs/master 163668f Robin Gloster: Release Notes 17.03: update on master
hotfuzz has joined #nixos
<yumbox> slim is pid 715, login is 716, X is 720
<NixOS_GitHub> [nixpkgs] joachifm pushed 1 new commit to release-17.03: https://git.io/vSn5l
<NixOS_GitHub> nixpkgs/release-17.03 78ec18c Joachim Fasting: grsecurity: 4.9.18-201703261106 -> 4.9.19-201703300917...
pie__ has quit [(Ping timeout: 260 seconds)]
<yumbox> could that mean that X started before 3h6afsmsgynw1vr and dbus-launch, so it couldn't have the right environment?
cpennington has quit [(Remote host closed the connection)]
chakerbenhamed has joined #nixos
faffolter has quit [(Ping timeout: 260 seconds)]
goibhniu has quit [(Ping timeout: 260 seconds)]
<NixOS_GitHub> [nixpkgs] edolstra pushed 1 new commit to release-17.03: https://git.io/vSn55
<NixOS_GitHub> nixpkgs/release-17.03 830cfc0 Eelco Dolstra: Revert "update-users-groups.pl: Keep track of deallocated UIDs/GIDs"...
Mateon2 has joined #nixos
abrar has joined #nixos
<globin> niksnut: ok ¯\_(ツ)_/¯
Mateon2 is now known as Mateon1
Drakonis has quit [(Quit: Leaving)]
gilligan_ has quit [(Ping timeout: 240 seconds)]
Drakonis_ is now known as Drakonis
kuznero has quit [(Quit: Leaving)]
pie__ has joined #nixos
bkchr has quit [(Ping timeout: 268 seconds)]
crzyp3ck has quit [(Ping timeout: 268 seconds)]
mck has quit [(Ping timeout: 260 seconds)]
justbeingglad has joined #nixos
kori has quit [(Ping timeout: 240 seconds)]
justbeingglad has left #nixos []
Mateon3 has joined #nixos
Mateon1 has quit [(Ping timeout: 258 seconds)]
spinus has quit [(Ping timeout: 258 seconds)]
Mateon3 is now known as Mateon1
bkchr has joined #nixos
bkchr has quit [(Ping timeout: 240 seconds)]
pie__ has quit [(Quit: Leaving)]
kori has joined #nixos
kori has quit [(Changing host)]
kori has joined #nixos
chakerbenhamed has quit [(Ping timeout: 246 seconds)]
bfrog has joined #nixos
marsam has quit [(Remote host closed the connection)]
ambro718 has joined #nixos
takle has quit [(Remote host closed the connection)]
sivteck has quit [(Quit: Leaving)]
<NixOS_GitHub> [nixpkgs] srp opened pull request #24486: slock needs suid privileges (master...master) https://git.io/vSnxo
ejlo has joined #nixos
ndowens08 has joined #nixos
<ndowens08> Is github down?>
<Drakonis> no only you
<simpson> ndowens08: https://status.github.com/
zeus_ has quit [(Read error: Connection reset by peer)]
<ndowens08> weird
<ndowens08> cant even access gitlab
<ndowens08> there we go, restarted browser
zeus_ has joined #nixos
ejlo has quit [(Remote host closed the connection)]
justbeingglad has joined #nixos
justbeingglad has left #nixos []
numbdewd has joined #nixos
marsel has quit [(Ping timeout: 256 seconds)]
hiratara has quit [(Ping timeout: 246 seconds)]
marsam has joined #nixos
ambro718 has quit [(Ping timeout: 256 seconds)]
stepcut has quit [(Remote host closed the connection)]
hiratara has joined #nixos
stepcut has joined #nixos
georges-duperon has quit [(Ping timeout: 240 seconds)]
pie_ has quit [(Ping timeout: 268 seconds)]
jgertm has quit [(Ping timeout: 240 seconds)]
stepcut has quit [(Remote host closed the connection)]
jgertm has joined #nixos
civodul has quit [(Quit: ERC (IRC client for Emacs 25.1.1))]
bfrog has quit [(Quit: WeeChat 1.7)]
<NixOS_GitHub> [nixpkgs] ndowens closed pull request #24369: hdparm: 9.48 -> 9.51 (master...hdparm) https://git.io/vSLCl
takle has joined #nixos
ryanartecona has joined #nixos
realfake has quit [(Ping timeout: 258 seconds)]
takle has quit [(Ping timeout: 256 seconds)]
jgertm has quit [(Ping timeout: 264 seconds)]
takle has joined #nixos
AllanEspinosa has quit [(Ping timeout: 260 seconds)]
<NixOS_GitHub> [nixpkgs] zimbatm pushed 1 new commit to master: https://git.io/vScv5
<NixOS_GitHub> nixpkgs/master ae696ba pmahoney: wrk: use packaged openssl, luajit (#24481)...
realfake has joined #nixos
Drakonis has quit [(Quit: Leaving)]
<NixOS_GitHub> [nixpkgs] ndowens opened pull request #24488: hdparm: 9.48 -> 9.51 (master...hdparm) https://git.io/vScff
qknight has quit [(Remote host closed the connection)]
<ndowens08> ok what is the best way to update a branch so a fast-forward merge can happen; seems git pull --rebase still causes issues; adds extra pkgs and commit history
qknight has joined #nixos
<fpletz> ndowens08: I always do: git fetch origin; git rebase origin/master
__Sander__ has quit [(Quit: Konversation terminated!)]
<ndowens08> even if it is a "feature branch"?
<fpletz> yes
<ndowens08> ah ok, will try that
<ndowens08> i hate pull
<fpletz> you need to rebase it on top of the current master branch ;)
<ndowens08> fpletz: srry messed up origional hdparm PR, tried rebasing to leave origional and fix it
<ndowens08> but it ended up removing everything and closing it
<ndowens08> i hate seeing merge commit logs, reason i want always fast-forward
<fpletz> I don't understand why you need to reopen a new PR, why can't you update the old branch when you're able to produce the right commit in another branch?
<NixOS_GitHub> [nixpkgs] takikawa opened pull request #24490: nfdump: init at 1.6.15 (master...add-nfdump) https://git.io/vScf1
<fpletz> yeah, that's what rebase does!
<ndowens08> yup tried that, i looked at reflog to find history that wouldnt cause that issue and well idk lol
<ndowens08> issue meaning extra files/commits
<fpletz> but you just need to push the commit of your new PR to the branch your old PR?
<ndowens08> i tried that, it didnt reopen
<fpletz> no, you need to reopen yourself
<fpletz> or rather, not close it
<fpletz> oh, I see you pull requested the new branch
<fpletz> ah, the old branch
<ndowens08> weird, i used the same branch
<fpletz> sorry, I'm getting sleepy :)
<ndowens08> so i thought it would reopen it, it has done that before for me, but not this time
sigmundv_ has joined #nixos
<ndowens08> me too, tomorrow i wil have around 60 hrs this week :\
<ndowens08> I created two gitlab accounts to play with git more as having seperate accounts/repo somehow messed with one of my open PRs once, so yea lol; no way can gitlab mess up PRs now :)
<ndowens08> just wish I had activity on one of them so I can learn to work around a sorta busy repo
thc202 has quit [(Ping timeout: 240 seconds)]
<fpletz> just push nixpkgs into a repo in your gitlab? :)
qknight has quit [(Remote host closed the connection)]
pmahoney has joined #nixos
<ndowens08> hmm maybe :)
qknight has joined #nixos
fuzzy-id has joined #nixos
sigmundv_ has quit [(Ping timeout: 240 seconds)]
<pmahoney> when i "sign in with google" on hydra.nixos.org, nothing apparently happens (at least there's nothing to indicate i'm signed-in) (i used to have an account through Persona)
hiratara has quit [(Quit: ZNC - http://znc.in)]
johnsonav has quit [(Ping timeout: 246 seconds)]
sigmundv_ has joined #nixos
b123400_ has quit [()]
hiratara has joined #nixos
<Dezgeg> works for me
griff_ has joined #nixos
<pmahoney> you're able to sign in with google? does my google email need to match something in maintainers.nix? (it does not)
uralbash has joined #nixos
<pmahoney> hm, works in chromium but not firefox
Sonarpulse has joined #nixos
<ashkitten> hey what are cool things i can actually do with nixos? i'm bored as hell
<ashkitten> and tired of trying to get my stupid icon theme to work
Filystyn has quit [(Quit: Konversation terminated!)]
<NixOS_GitHub> [nixpkgs] primeos opened pull request #24491: gpgme: 1.8.0 -> 1.9.0 (master...gpgme) https://git.io/vScUj
<NixOS_GitHub> [nixpkgs] ndowens opened pull request #24492: parcellite: 1.1.9 -> 1.2.1 (master...parcellite) https://git.io/vScTZ
Itkovian has quit [(Quit: My MacBook has gone to sleep. ZZZzzz…)]
JagaJaga has quit [(Ping timeout: 256 seconds)]
Itkovian has joined #nixos
drasich has joined #nixos
erasmas has quit [(Quit: leaving)]
MP2E has joined #nixos
eacameron has quit [(Remote host closed the connection)]
chakerbenhamed has joined #nixos
erictapen has joined #nixos
georges-duperon has joined #nixos
<NixOS_GitHub> [nixpkgs] ndowens opened pull request #24493: i3lock-color: 2.7-2016-09-17 -> 2.8; Closes #24450 (master...i3lock) https://git.io/vScLh
deepfire has quit [(Ping timeout: 240 seconds)]
ryanartecona has quit [(Quit: ryanartecona)]
fuzzy-id has quit [(Ping timeout: 240 seconds)]
jsgrant has left #nixos []
Itkovian has quit [(Quit: My MacBook has gone to sleep. ZZZzzz…)]
luigy has joined #nixos
eacameron has joined #nixos
eacameron has quit [(Ping timeout: 258 seconds)]
markus1189 has joined #nixos
markus1199 has joined #nixos
crzyp3ck has joined #nixos
eacameron has joined #nixos
ebzzry has joined #nixos
markus1209 has quit [(Ping timeout: 260 seconds)]
markus1219 has quit [(Ping timeout: 264 seconds)]
crzyp3ck has quit [(Changing host)]
crzyp3ck has joined #nixos
chakerbenhamed has quit [(Ping timeout: 258 seconds)]
<crzyp3ck> hello
AllanEspinosa has joined #nixos
marsam has quit [(Remote host closed the connection)]
sigmundv_ has quit [(Quit: Leaving)]
<ashkitten> does anyone think they can help me with any of the #TODOs in my configuration.nix? https://ptpb.pw/PbsF
AllanEspinosa has quit [(Ping timeout: 240 seconds)]
justin_ has joined #nixos
<MichaelRaskin> ashkitten: re: openssh: did you check that the sshd process is running (ps -ef should help)? That it is listening something (ss -nlp | grep 22)?
<MichaelRaskin> That the firewall rules are not obviously blocking it? (iptables -L)?
erictapen has quit [(Ping timeout: 260 seconds)]
<c74d> NixOS doesn't open the firewall for SSHd when SSHd is enabled?
<ashkitten> MichaelRaskin: https://ptpb.pw/iA9N
<MichaelRaskin> In general NixOS doesn't open the firewall for services.
<MichaelRaskin> For OpenSSH there might be exceptions
<MichaelRaskin> Don't remember how the last discussion ended
<MichaelRaskin> I'm not using stock NixOS, so cannot check quickly
Guest91589 has joined #nixos
<MichaelRaskin> Hm, seems fine, and does nc 127.0.0.1 22 print ssh banner?
AllanEspinosa has joined #nixos
ocmylife has quit [(Quit: Connection closed for inactivity)]
<MichaelRaskin> (one-line version summary)_
<ashkitten> Yeah it does
<MichaelRaskin> Can you ssh 127.0.0.1 ?
<MichaelRaskin> (Also, are both devices on WiFi when you cannot ssh from another device, and is AP Client Isolation switched on in the WiFi AP/router)…
<ashkitten> they're both on wifi yes
<MichaelRaskin> It looks like you don't even have NixOS firewall
<MichaelRaskin> (i.e. it is in all-permissive state)
<ashkitten> that might be it actually, the AP Client Isolation
<MichaelRaskin> Can you change the WiFi situation?
<ashkitten> My dad can when he gets home
<MichaelRaskin> Well, you could be able to try to connect something with a Ethernet
<ashkitten> I got it working via hamachi since I already use that on both machines
justin_ has quit [(Ping timeout: 260 seconds)]
<MichaelRaskin> Oh well, default SSH encryption is good enough for the privacy leak to be limited
<MichaelRaskin> (Data flow rate patterns do show that this is SSH and a bit more, of course)
<ashkitten> do you know anything about the other issues?
AllanEspinosa has quit [(Ping timeout: 260 seconds)]
<MichaelRaskin> Did you try, say, caps_toggle?
<ashkitten> I'll try that now
<MichaelRaskin> Just to check if you have a problem with a single option
leothrix has quit [(Ping timeout: 240 seconds)]
<MichaelRaskin> Or shift_caps without caps-compose
<ashkitten> yeah true
<MichaelRaskin> Themes are something you avoid
<MichaelRaskin> If you value simplicity of tiling
<ashkitten> I tried this configuration because I know it to work on Arch Linux using localectl
<MichaelRaskin> You-not-rhetorical, you the person, do not values the simplicity of tiling, so none of my experience is useful
<yumbox> "#TODO: this doesn't work for some reason"
<yumbox> i was trying to get mouse cursor themes to work too
sigmundv has joined #nixos
<yumbox> i figured out that XCURSOR_PATH does get set in TTY
<yumbox> but that it gets unset for some reason in X