<ashkitten> MichaelRaskin: lol I don't know what you mean I don't value the simplicity
<yumbox> do you know more about that, ashkitten?
<ashkitten> yumbox: do what I did in my windowManager.i3.extraSessionCommands
<yumbox> yeah, i saw that
<MichaelRaskin> Let's just say my cusor sometimes take the black-X-cross form
<Exee7uvo[m]> disasm: How did you create the db and added the user? My problem is that I even cannot login as user postres to do that.
<yumbox> i was hoping i could just set XCURSOR_PATH
<MichaelRaskin> Because that is the default X cursor shape before you start configuring it
leothrix has joined #nixos
<ashkitten> yumbox: The reason I'm trying to set XCURSOR_PATH is because I want my cursor theme in lightdm as well
<yumbox> hmm
<yumbox> I found that it gets unset in X
<yumbox> but i don't know why tet
<yumbox> yet*
<NixOS_GitHub> [nixpkgs] benley pushed 2 new commits to master: https://git.io/vSc3f
<NixOS_GitHub> nixpkgs/master 09e4ece Benjamin Staffin: latte-dock: init at 0.5.98
<NixOS_GitHub> nixpkgs/master 5c28f26 Benjamin Staffin: Merge pull request #24483 from benley/latte-dock...
<NixOS_GitHub> [nixpkgs] volth closed pull request #21599: Systemd: enable systemd-importd (master...systemd-importd) https://git.io/vMmzp
<MichaelRaskin> Re: compose — you can also experiment with setxkbmap without rebuilding and restarting X
georges-duperon has quit [(Ping timeout: 240 seconds)]
<MichaelRaskin> About your theme struggles — you do know you can read process environment in /proc, right?
<ashkitten> yeah
<ashkitten> Yeah the XCURSOR_PATH and XCURSOR_THEME variables are set properly but the display manager doesn't pick them up
<ashkitten> maybe lightdm doesn't actually use xcursor
mudri has quit [(Quit: WeeChat 1.7)]
<ashkitten> How do I get a command to evaluate in bash from my configuration.nix?
<ashkitten> I have a line that reads ''GDK_PIXBUF_MODULE_FILE = "$(echo ${pkgs.librsvg.out}/lib/gdk-pixbuf-2.0/*/loaders.cache)";''
<ashkitten> but it doesn't evaluate the bash
mkoenig has joined #nixos
johnsonav has joined #nixos
edef[m] has joined #nixos
vaibhavsagar has joined #nixos
<edef> is there any automation for packaging Python stuff?
<ndowens08> nope
<edef> bummer
<edef> oh well, boilerplate time
<ndowens08> it generally isnt too hard to pkg them
<simpson> There's pypi2nix.
<simpson> But honestly doing it by hand is faster and easier. :c
<edef> I'm familiar with the process, but I have to package some random shit and I'm tiired
<edef> I guess I can virtualenv for now
ebzzry has quit [(Ping timeout: 260 seconds)]
<c74d> uhh, NixOS, why are you building i3lock for the Google Compute Engine image
<ashkitten> is there a nix expression for finding a file in a path?
<c74d> and xscreensaver
AllanEspinosa has joined #nixos
<edef> venv totally worked for the purpose of figuring out that that program doesn't work with my particular setup
<edef> so, saved myself some effort I guess
ebzzry has joined #nixos
zeus_ has quit [(Read error: Connection reset by peer)]
bhipple has quit [(Quit: WeeChat 1.7)]
zeus_ has joined #nixos
<ashkitten> How can I do something similar in Nix to this bash script: $(echo ${pkgs.librsvg.out}/lib/gdk-pixbuf-2.0/*/loaders.cache) ?
<ashkitten> specifically the * bit
<pmahoney> ashkitten: builtins.readDir? not exactly what you want, but could be used to build something http://nixos.org/nix/manual/
Supersonic112 has quit [(Disconnected by services)]
Supersonic112_ has joined #nixos
edvorg has joined #nixos
<ashkitten> hmm
ebzzry has quit [(Ping timeout: 260 seconds)]
Supersonic112_ is now known as Supersonic112
ebzzry has joined #nixos
SovereignBleak has joined #nixos
<ashkitten> pmahoney: how can I convert the directory listing to a string?
<ashkitten> I want the first key in the set it seems
<pmahoney> ashkitten: (builtins.attrNames (builtins.readDir "./somedir"))
<pmahoney> browsing through nixpkgs/lib/*.nix is a good way to learn stuff you can do, or see what's already implemented
bhipple has joined #nixos
<ashkitten> yeah, i'm reading the nix language manual rn for that
<c74d> the language manual is good to read but it doesn't document the library functions
<ashkitten> now here's a question, pmahoney: how do I coerce the resulting list into a string?
elninja44 has joined #nixos
<pmahoney> like, separated by spaces? builtins.concatStringsSep " " theList (see lib/strings.nix for variations)
edvorg has quit [(Ping timeout: 264 seconds)]
cpennington has joined #nixos
<ashkitten> HECKIN HECK YEAH
<ashkitten> I DID IT
<ashkitten> GDK_PIXBUF_MODULE_FILE = "${pkgs.librsvg.out}/lib/gdk-pixbuf-2.0/${builtins.concatStringsSep " " (builtins.attrNames (builtins.readDir "${pkgs.librsvg.out}/lib/gdk-pixbuf-2.0"))}/loaders.cache";
filterfish_ has joined #nixos
yumbox has quit [(Remote host closed the connection)]
<c74d> ashkitten: won't that break if there are multiple directories in `gdk-pixbuf-2.0`?
edvorg has joined #nixos
<pmahoney> nice. is there only ever one file in that directory? "${pkgs.librsvg.out}/lib/gdk-pixbuf-2.0/${builtins.elemAt (builtins.attrNames (builtins.readDir "${pkgs.librsvg.out}/lib/gdk-pixbuf-2.0")) 0}/loaders.cache"
<ashkitten> yeah I'm pretty certain the path I'm searching will only contain one entry
<ashkitten> so yes, c74d, but it won't happen (probably)
<c74d> I'd add an assertion to be sure
filterfish has quit [(Remote host closed the connection)]
<ashkitten> how do I do that?
<c74d> hm, I forgot how to get the length of a list
<pmahoney> something like: let listOfFiles = (builtins.attrNames ...); in assert (builtins.length listOfFiles) == 1; "...${builtins.elemAt listOfFiles 0}/loaders.cache"
<c74d> let gdk-pixbuf-dirs = lib.attrNames (builtins.readDir "${pkgs.librsvg.out}/lib/gdk-pixbuf-2.0"); in assert lib.length gdk-pixbuf-dirs == 1; "${pkgs.librsvg.out}/lib/gdk-pixbuf-2.0/${lib.elemAt gtk-pixbuf-dirs 0}/loaders.cache"
<c74d> ah, I'm late
<ashkitten> so how would i apply that to my environment GDK_PIXBUF_MODULE_FILE?
demax has quit [(Quit: Leaving)]
ndowens08 has quit [(Ping timeout: 240 seconds)]
edvorg has quit [(Remote host closed the connection)]
<ashkitten> hello?
eacameron has quit [(Remote host closed the connection)]
edvorg has joined #nixos
Wizek_ has quit [(Ping timeout: 264 seconds)]
Wizek has quit [(Ping timeout: 268 seconds)]
<clever> pmahoney: i suspect thats also doing import from derivation, so it has to download (or build) librsvg before it can finish the nix eval
<clever> pmahoney: and thats relatively expensive, and forces thing to build in a weird order
eacameron has joined #nixos
mbrgm has quit [(Ping timeout: 240 seconds)]
derjohn_mob has quit [(Ping timeout: 256 seconds)]
<clever> pmahoney: about the only way to improve it, is to modify librsvg to store the path in a variable within $out/nix-support/setup-hook.sh, which will get sourced by anything with librsvg in buildInputs
mbrgm has joined #nixos
<clever> pmahoney: have a look at how things like cmake work in nix: https://github.com/NixOS/nixpkgs/blob/master/pkgs/development/tools/build-managers/cmake/setup-hook.sh
griff_ has quit [(Quit: griff_)]
<clever> pmahoney: simply adding cmake to the buildInputs causes this script to get sourced, which will mutate how the stdenv behaves, causing it to run cmake instead of ./configure
jsgrant has joined #nixos
sigmundv has quit [(Ping timeout: 260 seconds)]
derjohn_mob has joined #nixos
Drakonis has joined #nixos
<NixOS_GitHub> [nixpkgs] NeQuissimus pushed 2 new commits to master: https://git.io/vScWz
<NixOS_GitHub> nixpkgs/master 5eece28 ndowens: parcellite: 1.1.9 -> 1.2.1
<NixOS_GitHub> nixpkgs/master b625252 Tim Steinbach: Merge pull request #24492 from ndowens/parcellite...
gbbrt has joined #nixos
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.)]
<NixOS_GitHub> [nixpkgs] NeQuissimus pushed 2 new commits to master: https://git.io/vScWP
<NixOS_GitHub> nixpkgs/master 6b5193b Tim Steinbach: linux: 4.4.57 -> 4.4.58
<NixOS_GitHub> nixpkgs/master ecca152 Tim Steinbach: linux: 4.10.6 -> 4.10.7
<NixOS_GitHub> [nixpkgs] NeQuissimus pushed 2 new commits to release-16.09: https://git.io/vScWH
<NixOS_GitHub> nixpkgs/release-16.09 2582e56 Tim Steinbach: linux: 4.4.56 -> 4.4.57...
<NixOS_GitHub> nixpkgs/release-16.09 7149cd2 Tim Steinbach: linux: 4.4.57 -> 4.4.58...
gbbrt_ has quit [(Ping timeout: 268 seconds)]
<NixOS_GitHub> [nixpkgs] NeQuissimus pushed 1 new commit to release-17.03: https://git.io/vScWd
<NixOS_GitHub> nixpkgs/release-17.03 31b4482 Tim Steinbach: linux: 4.10.6 -> 4.10.7...
filterfish has joined #nixos
filterfish_ has quit [(Ping timeout: 260 seconds)]
hexagoxel has quit [(Ping timeout: 258 seconds)]
hexagoxel has joined #nixos
zeus_ has quit [(Remote host closed the connection)]
zeus_ has joined #nixos
zeus_ has quit [(Remote host closed the connection)]
zeus_ has joined #nixos
Piece_Maker has joined #nixos
jsgrant has joined #nixos
zeus_ has quit [(Ping timeout: 246 seconds)]
bennylb has joined #nixos
Acou_Bass has quit [(Ping timeout: 256 seconds)]
Piece_Maker is now known as Acou_Bass
<NixOS_GitHub> [nixpkgs] NeQuissimus closed pull request #24352: spark: 1.6.0 ->1.6.3 (master...spark-1_6_3) https://git.io/vSI7F
<NixOS_GitHub> [nixpkgs] NeQuissimus closed pull request #24260: keepalived: 1.3.4 -> 1.3.5 (master...upgrade-keepalived) https://git.io/vSJ6m
<adelbertc> can someone explain to me the reason for having profiles being separate from generations? afaict profiles just symlink 1-to-1 to generations - what does this give you over having profiles just be generations?
<Drakonis> because you can backtrack profile modifications
<Drakonis> go back to gen 30 where a specific profile was like that
<Drakonis> rather
<Drakonis> backtrack system state
<adelbertc> Drakonis: hmm.. sorry i dont quite follow
<adelbertc> is it not the case that a new profile is created for each generation ?
<Drakonis> each generation is mereley a snapshot of the system as of that generation
<adelbertc> as im reading the Nix manual i realize my phrasing may be off. when i said "generations" i meant the "user-environment" stuff and when i say "profiles" i mean the symlinks under /nix/var/nix/profiles
mguentner2 has quit [(Quit: WeeChat 1.7)]
<adelbertc> i probably need to re-read http://nixos.org/nix/manual/#sec-profiles
<Drakonis> that's what generations do
<Drakonis> they replace the symlinks in the profile
strobelight has joined #nixos
<adelbertc> so installing a package will cause the creation of a new <hash>-user-environment, but does not create a new profile in /nix/var/nix/profiles ?
<adelbertc> i just ls'd ls/nix/var/nix/profiles and it matches 1-to-1 with nix-env --list-generations despite me never touching my profiles
<Drakonis> hmm
<Drakonis> so no
<Drakonis> hmm
<Drakonis> rather
<Drakonis> alright so
mguentner has joined #nixos
<Drakonis> you install a pckage, it will pop up in nix-store, the given package will be symlinked into profiles
<Drakonis> when you make a new generation with nix-rebuild *
<Drakonis> i don't know if there's any other way to make new generations
<Drakonis> but
<Drakonis> once you do, it will create a copy of the existing generation, in this example "adelberc-2" that will have a copy of all symlinks at the time
<pmahoney> adelbertc: all the "myprofile" "myprofile-1-link" "myprofile-2-link" belong to the same logical profile, even if they are all just symlinks to various user-environment. there can be multiple profiles though, e.g. "yourprofile-1-link" and so on
<adelbertc> so there can be more profiles than generations, but not more generations than profiles
<adelbertc> er, s/generation/user environment
<pmahoney> can you restate that?
strobelight has quit [(Quit: gtg)]
<adelbertc> there can be more profiles than user environments since you can create a nix-profile yourself with `nix-env --switch-profile`
<adelbertc> but there can never be more user environments than profiles because user environments are only created when you (un)install a package, at which point a new profile would be created to correspond with it
<Drakonis> hm no you can have a unlimited amount of profiles and generations
<pmahoney> a profile has many generations; a generation points to one user-environment; a user-environment is a pile of symlinks to other nix packages
zeus_ has joined #nixos
<adelbertc> ok i think a lot of my problem is im using the wrong terminology, but i think i have it now
<adelbertc> is the purpose of a generation just to make it easier to do rollbacks and stuff? e.g. if your current generation is default-43-link, nix knows to rollback to default-42-link, versus if everything was just direct to user environments Nix would have no way of knowing what the "previous" one was
<pmahoney> maybe the confusion is that in the nix implementation, a profile and all its generations are both stored in the same directory (a profile might be viewed as the "current" generation, or the set of all generations of the same prefix)
<pmahoney> adelbertc: yes, that sounds right
bennylb has quit [(Ping timeout: 268 seconds)]
<adelbertc> pmahoney: alright cool, ill stick with that until i hit a contradiction
<adelbertc> i think a lot of my confusion earlier was using the wrong terminology - what you mentioned was probably among the factors
<adelbertc> thank you Drakonis , pmahoney !
mounty has quit [(Quit: Konversation terminated!)]
<Drakonis> i didn't give the best explanation
YellowOnion_ has joined #nixos
RchrdB has quit [(Ping timeout: 240 seconds)]
YellowOnion has quit [(Ping timeout: 260 seconds)]
eacameron has quit [(Remote host closed the connection)]
zeus_ has quit [(Remote host closed the connection)]
YellowOnion_ has quit [(Ping timeout: 240 seconds)]
eacameron has joined #nixos
eacameron has quit [(Ping timeout: 256 seconds)]
<NixOS_GitHub> [nixpkgs] volth closed pull request #23879: libvirt and friends: fix 32 bit build by removing dependency on xen (master...libvirt-32bit-remove-xen-dependency) https://git.io/vyPXh
mounty has joined #nixos
YellowOnion has joined #nixos
byteflam1 has quit [(Ping timeout: 256 seconds)]
mguentner2 has joined #nixos
mguentner has quit [(Ping timeout: 240 seconds)]
sellout- has joined #nixos
bennylb has joined #nixos
Sonarpulse has quit [(Ping timeout: 246 seconds)]
sellout- has quit [(Quit: Leaving.)]
<NixOS_GitHub> [nixpkgs] peterhoeg pushed 1 new commit to master: https://git.io/vScRL
<NixOS_GitHub> nixpkgs/master 2f73d5f Peter Hoeg: libguestfs: add missing libapparmor buildInput
<NixOS_GitHub> [nixpkgs] volth opened pull request #24498: openvswitch: 2.5.0 -> 2.5.2 (master...openvswitch-2.5.2) https://git.io/vScRO
mizu_no_oto has joined #nixos
mizu_no_oto has quit [(Quit: Computer has gone to sleep.)]
Drakonis has quit [(Quit: Leaving)]
eacameron has joined #nixos
AllanEspinosa has quit [(Ping timeout: 264 seconds)]
<pmahoney> didn't hydra have a way to list a maintainer's packages along with some indication if upstream had release a newer version?
uralbash has quit [(Ping timeout: 260 seconds)]
uralbash has joined #nixos
cpennington has quit [(Read error: Connection reset by peer)]
zeus_ has joined #nixos
zeus_ has quit [(Read error: Connection reset by peer)]
zeus_ has joined #nixos
bennylb has quit [(Ping timeout: 268 seconds)]
Sonarpulse has joined #nixos
stepcut has joined #nixos
uralbash has left #nixos []
jasom has joined #nixos
Mercuria1Alchemi has joined #nixos
<NixOS_GitHub> [nixpkgs] vbgl closed pull request #24114: gnuapl: 1.6 -> 1.7 (master...update_gnuapl) https://git.io/vyFs8
<jasom> I'm getting "symbol lookup error: /run/opengl-driver/lib/libEGL.so.1: undefined symbol: wl_proxy_marshal_constructor_versione" even after a nix-env -u
jsgrant has quit [(Ping timeout: 256 seconds)]
Mateon1 has quit [(Ping timeout: 268 seconds)]
Mateon1 has joined #nixos
pikajude has quit [(Quit: ZNC 1.6.5 - http://znc.in)]
pikajude has joined #nixos
matthewbauer has joined #nixos
faffolter has joined #nixos
edvorg has quit [(Remote host closed the connection)]
numbdewd has quit [(Quit: Death to Micro$oft ...Gewgle is the devil.. take cover !)]
zeus_ has quit [(Remote host closed the connection)]
eacameron has quit [(Remote host closed the connection)]
<Ralith> nix-env doesn't touch /run/opengl-driver
griff_ has joined #nixos
eacameron has joined #nixos
jmsb has quit [(Remote host closed the connection)]
jmsb has joined #nixos
griff_ has quit [(Ping timeout: 260 seconds)]
eacameron has quit [(Ping timeout: 258 seconds)]
stepcut has quit [(Remote host closed the connection)]
stepcut has joined #nixos
<NixOS_GitHub> [nixpkgs] vbgl pushed 1 new commit to master: https://git.io/vSc25
<NixOS_GitHub> nixpkgs/master caade79 Kamil Chmielewski: ponyc: 0.11.4 -> 0.12.2...
stepcut has quit [(Remote host closed the connection)]
stepcut has joined #nixos
<NixOS_GitHub> [nixpkgs] peterhoeg pushed 2 new commits to master: https://git.io/vScae
<NixOS_GitHub> nixpkgs/master fdd654a AndersonTorres: openshot-qt: 2.1.0 -> 2.2.0...
<NixOS_GitHub> nixpkgs/master 7b73936 Peter Hoeg: Merge pull request #22710 from AndersonTorres/openshot...
zeus_ has joined #nixos
eacameron has joined #nixos
stepcut has quit [(Remote host closed the connection)]
matthewbauer has quit [(Ping timeout: 260 seconds)]
eacameron has quit [(Ping timeout: 260 seconds)]
<NixOS_GitHub> [nixpkgs] peterhoeg opened pull request #24499: systemd: TPM and debug shell (master...f/systemd) https://git.io/vScaA
afics has quit [(Quit: WeeChat 1.7)]
MP2E has quit [(Quit: leaving)]
jmsb has quit [(Ping timeout: 256 seconds)]
<NixOS_GitHub> [nixpkgs] maurer closed pull request #24393: OCaml Package Updates (master...ocaml-updates) https://git.io/vSq6H
afics has joined #nixos
<NixOS_GitHub> [nixpkgs] maurer reopened pull request #24393: OCaml Package Updates (master...ocaml-updates) https://git.io/vSq6H
mt has quit [(Remote host closed the connection)]
eacameron has joined #nixos
<rycee[m]> pmahoney: Maybe you are thinking of monitor.nixos.org? It has been down for a while though.
vaibhavsagar has quit [(Ping timeout: 258 seconds)]
<NixOS_GitHub> [nixpkgs] maurer closed pull request #24393: OCaml Package Updates (master...ocaml-updates) https://git.io/vSq6H
eacameron has quit [(Ping timeout: 240 seconds)]
<NixOS_GitHub> [nixpkgs] LnL7 pushed 4 new commits to master: https://git.io/vScVi
<NixOS_GitHub> nixpkgs/master e58e681 Thomas Bach: haproxy: refactor...
<NixOS_GitHub> nixpkgs/master 45788ae Thomas Bach: haproxy: Provide LUA and PCRE support as configurable options...
<NixOS_GitHub> nixpkgs/master ea80cd1 Thomas Bach: haproxy: added fuzzy-id to the list of maintainers
mbrgm has quit [(Read error: Connection reset by peer)]
mbrgm has joined #nixos
gilligan has joined #nixos
<disasm> I'm getting a 502 error on *** Downloading ???https://cache.nixos.org/nar/1xzp8ics00yn6cxhsrmsp1dlab0v13rr8k4rr1dx6z58sgdk20gp.nar.xz??? (signed by ???cache.nixos.org-1???) to ???/nix/store/cgb5ah6m8ys6w3pp4v3zjqiqrm7mwy6m-libgudev-230???...
mbrgm has quit [(Ping timeout: 240 seconds)]
mbrgm has joined #nixos
filterfish_ has joined #nixos
jgertm has joined #nixos
akaWolf has quit [(Ping timeout: 240 seconds)]
filterfish has quit [(Remote host closed the connection)]
Itkovian has joined #nixos
RayNbow`TU has joined #nixos
hotfuzz_ has joined #nixos
hotfuzz has quit [(Ping timeout: 258 seconds)]
elninja44 has quit [(Remote host closed the connection)]
byteflame has joined #nixos
marsel has joined #nixos
gilligan has quit [(Quit: Leaving)]
bkchr has joined #nixos
nico202 has joined #nixos
derjohn_mob has quit [(Ping timeout: 260 seconds)]
thc202 has joined #nixos
<bkchr> Hi, Im trying to debug the following error "cannot coerce a function to a string", any ideas what I could try?
<makefu> bkchr: do you have the code which creates the error? it might mean that the function requires more arguments because a function with 2 arguments and 1 argument set will become a function with 1 argument
MichaelRaskin has quit [(Remote host closed the connection)]
Guest91589 has quit [(Ping timeout: 264 seconds)]
filterfish_ has quit [(Ping timeout: 260 seconds)]
ocmylife has joined #nixos
<bkchr> it says line 85, but I think it means line 86
teknico has joined #nixos
freusque has joined #nixos
<bkchr> My debug output states the following: https://pastebin.com/rmjAfhzM
<bkchr> so the first two values from my deps list are setup correctly
<bkchr> but the last value at i == 0 does not work :/
<makefu> bkchr: nix stacktraces are really bad, yes. one thing i was doing before is to remove code until it works again, then add back the code until i find the issue. i am pretty sure this IRC channel has better ideas to handle that kind of debugging
<bkchr> makefu: it never worked before, so :D
<bkchr> or let me correct, my additions never worked before^^
<bkchr> it think that the the first if branch is not taken
eacameron has joined #nixos
<bkchr> maybe my list construction is wrong in some way
filterfish has joined #nixos
eacameron has quit [(Ping timeout: 240 seconds)]
eacameron has joined #nixos
civodul has joined #nixos
crzyp3ck has quit [(Ping timeout: 268 seconds)]
ebzzry has quit [(Ping timeout: 260 seconds)]
derjohn_mob has joined #nixos
eacameron has quit [(Ping timeout: 258 seconds)]
mkoenig has quit [(Ping timeout: 240 seconds)]
<bkchr> ahh I found it :(
<makefu> yay
<bkchr> I missed brackets in the if branch
faffolter has quit [(Read error: Connection reset by peer)]
faffolter has joined #nixos
faffolter has quit [(Changing host)]
faffolter has joined #nixos
<bkchr> This [ fetchUrlFromDep d i ] needed to be [ (fetchUrlFromDep d i) ].
<makefu> nix is quite unforgiving with that
<makefu> ah yes, makes sense
pie_ has joined #nixos
<bkchr> yep, make sense
<bkchr> makefu: can I create a list with unique values?
froglegs1 has quit [(Remote host closed the connection)]
froglegs1 has joined #nixos
<makefu> i think there is a set function somewhere
<bkchr> ahh there is a builtins.unique function :)
<bkchr> for a list
<makefu> you were faster :)
nschoe has joined #nixos
Khetzal has quit [(Remote host closed the connection)]
hotfuzz_ is now known as hotfuzz
Khetzal has joined #nixos
endformationage has quit [(Quit: WeeChat 1.6)]
jgertm has quit [(Ping timeout: 268 seconds)]
elasticdog has quit [(Ping timeout: 264 seconds)]
filterfish_ has joined #nixos
__Sander__ has joined #nixos
filterfish has quit [(Read error: Connection reset by peer)]
justbeingglad has joined #nixos
goibhniu has joined #nixos
justin_ has joined #nixos
jgertm has joined #nixos
<__Sander__> so 17.03 has landed?
filterfish_ has quit [(Ping timeout: 260 seconds)]
georges-duperon has joined #nixos
<Ralith> it's not in the news feed yet
vaibhavsagar has joined #nixos
<__Sander__> hmm I'm sort of thorn of the fact whether I should put node2nix 1.2.0 in
<__Sander__> everything works
<__Sander__> but the corresponding patch's churn is crazy
jgrasser has quit [(Ping timeout: 246 seconds)]
jgertm has quit [(Ping timeout: 240 seconds)]
<bkchr> is there any map function for a list?
<makefu> builtins.map i think
mkoenig has joined #nixos
<makefu> in addition to that there is https://github.com/NixOS/nixpkgs/blob/master/lib/lists.nix in nixpkgs
jgrasser has joined #nixos
justbeingglad has quit [(Quit: Leaving.)]
zeus_ has quit [(Remote host closed the connection)]
<bkchr> makefu: thx! Can I use something like if something or somethingdifferent?
<bkchr> it always says unexpected eq
<ronny> hmm, tremulous chokes on wall, any idea how i can tell nix to disable it for a cmake project?
<bkchr> makefu: a solved it
<bkchr> How do I use functions of this file? https://github.com/NixOS/nixpkgs/blob/master/lib/lists.nix
<NixOS_GitHub> [nixpkgs] Mic92 opened pull request #24502: rtl8192su: init at unstable-2016-10-05 (master...rtl8192su-firmware) https://git.io/vSc1W
mkoenig has quit [(Read error: Connection reset by peer)]
layus has quit [(Ping timeout: 258 seconds)]
gilligan_ has joined #nixos
Guest91589 has joined #nixos
mkoenig has joined #nixos
<makefu> bkchr: these are part of the lib. namespace when you use nixpkgs
afldcr has quit [(Ping timeout: 240 seconds)]
<bkchr> makefu: so I need to write import lib.lists?
<bkchr> makefu: or can I just write lib.unique?
<bkchr> makefu: it says undefined variable "lib"
goibhniu1 has joined #nixos
goibhniu has quit [(Ping timeout: 240 seconds)]
<makefu> normally i do `with lib;` ...
<makefu> to use nixpkgs: with import <nixpkgs> {};
<makefu> or pkgs = import <nixpkgs> {}; pkgs.lib.unique
<makefu> nix-repl is quite suited for doing quick tests
afldcr has joined #nixos
<mkoenig> Two quick questions: 1. How can I override an option instead of letting it be merged (e.g. systemd.services.name.wantedBy)? 2. services.openssh.enable disables firewall for its port. How can I prevent this?
Guest91589 has quit [(Ping timeout: 260 seconds)]
layus has joined #nixos
<bkchr> makefu: ahh perfect! Thank you!
anelson has quit [(Ping timeout: 246 seconds)]
<NixOS_GitHub> [nixpkgs] 7c6f434c pushed 1 new commit to master: https://git.io/vScDa
<NixOS_GitHub> nixpkgs/master f10fc5a Michael Raskin: lispPackages.clwrapper: fix array expansion to produce no arguments when empty
eacameron has joined #nixos
Wizek has joined #nixos
Wizek_ has joined #nixos
<bkchr> makefu: Thanks again for your help! Now my pull request is finished :) (https://github.com/mozilla/nixpkgs-mozilla/pull/18)
pie_ has quit [(Ping timeout: 246 seconds)]
ixxie has joined #nixos
ZoomZoomZoom has quit [(Read error: Connection reset by peer)]
ZoomZoomZoom has joined #nixos
jgertm has joined #nixos
eacameron has quit [(Ping timeout: 260 seconds)]
<NixOS_GitHub> [nixpkgs] rickynils pushed 1 new commit to master: https://git.io/vScym
<NixOS_GitHub> nixpkgs/master 37847f2 Rickard Nilsson: haskellPackages.tailfile-hinotify: Disable test suite
<NixOS_GitHub> [nixpkgs] rickynils pushed 1 new commit to release-17.03: https://git.io/vScyV
<NixOS_GitHub> nixpkgs/release-17.03 e30ac6b Rickard Nilsson: haskellPackages.tailfile-hinotify: Disable test suite...
Filystyn has joined #nixos
mudri has joined #nixos
goibhniu1 is now known as goibhniu
<makefu> bkchr: very cool, i am glad i could help :)
<makefu> bkchr: having the mozilla nixpkgs as overlay is super cool. welcome to the future
fab has joined #nixos
fab is now known as Guest74296
faffolter has quit [(Read error: Connection reset by peer)]
<gilligan_> oh man.. google-cloud-sdk is driving me insane
<gilligan_> seems impossible to get the package from nix to work correctly when there is a .deb installed already on the same system..gnah
<ixxie> gchristensen, clever - do you know who to ask about nixops stuff?
deepfire has joined #nixos
<LnL> gilligan_: why is that?
<ixxie> LnL maybe you know? :)
<LnL> possibly, but I'm not super familiar with nixops
<gilligan_> LnL, so the very first problem is that there is some system installed /etc/boto.cfg which has some path to a system installed python libs. I can move that out of the way via export BOTO_CONFIG=/nothing - `gcloud auth ..` works fine but when I then try `gsutil ls ...` i get an error as if I wasn't authenticated
<ixxie> LnL - I have some deeper questions I think, at this point I am just wondering who are the experts on nixops who tend to hang out here on irc
<gilligan_> LnL, doing the same with the system installed glcoud/gsutil works just fine
takle has quit [(Remote host closed the connection)]
<LnL> gilligan_: oh :/ do you get the same behaviour on nixos?
<gilligan_> LnL, well no, it is working fine there
spinus has joined #nixos
<gilligan_> LnL, it has to be something about impurity/collision with system settings
crzyp3ck has joined #nixos
<crzyp3ck> Hi
<LnL> yeah what about if you move the config file
reinzelmann has joined #nixos
ndowens08 has joined #nixos
takle has joined #nixos
<NixOS_GitHub> [nixpkgs] 7c6f434c pushed 1 new commit to master: https://git.io/vScQF
<NixOS_GitHub> nixpkgs/master 02f5831 Michael Raskin: lispPackages: migrate to quicklispPackages where possible
<gilligan_> LnL, I can move /etc/boto.cfg but that alone doesn't help
<gilligan_> LnL, I *thought* that the only other config is created in the user home directory (after gcloud auth)
<gilligan_> but *something* else must be playing into this
<gilligan_> and I cannot figure out what it is
takle has quit [(Remote host closed the connection)]
takle has joined #nixos
<LnL> looks like it, you could strace it if you don't know what stuff it looks at
eacameron has joined #nixos
ndowens08 has quit [(Client Quit)]
ocmylife has quit [(Quit: Connection closed for inactivity)]
eacameron has quit [(Ping timeout: 240 seconds)]
eacameron has joined #nixos
mudri has quit [(Quit: WeeChat 1.7)]
eacameron has quit [(Ping timeout: 240 seconds)]
elasticdog has joined #nixos
DutchWolfie has joined #nixos
gilligan_ has quit [(Ping timeout: 240 seconds)]
NickHu has quit [(Read error: Connection reset by peer)]
<crzyp3ck> I need to get a uniform look from qt5 softwares and gtk
<crzyp3ck> at least a way to change kde apps
<goibhniu> you can use the gtk breeze theme
<crzyp3ck> lxappearance doesn't change the look of kde apps
<crzyp3ck> goibhniu: hi. I did. but it only changed & improved gtk apps
Itkovian has quit [(Quit: My MacBook has gone to sleep. ZZZzzz…)]
* goibhniu doesn't know how to change the theme of Qt apps outside of KDE
stepcut has joined #nixos
eacameron has joined #nixos
mudri has joined #nixos
stepcut has quit [(Ping timeout: 256 seconds)]
<NixOS_GitHub> [nixpkgs] rnhmjoj opened pull request #24503: gnuapl: 1.6 -> 1.7 (master...apl) https://git.io/vScd6
eacameron has quit [(Ping timeout: 260 seconds)]
<NixOS_GitHub> [nixpkgs] rnhmjoj closed pull request #24503: gnuapl: 1.6 -> 1.7 (master...apl) https://git.io/vScd6
<globin> goibhniu: :(
chakerbenhamed has joined #nixos
<globin> niksnut: Ping :)
[0x4A6F] has quit [(Ping timeout: 260 seconds)]
<jophish> What log files are written to /nix/var/nix/log?
<jophish> I can only find derivations there
<Dezgeg> they contain build logs of the derivations
mudri has quit [(Quit: WeeChat 1.7)]
[0x4A6F] has joined #nixos
<jophish> ah, I assumed it was a derivation file!
<jophish> thanks Dezgeg
mudri has joined #nixos
<Dezgeg> there is 'nix-store -l' to read them, you're not supposed to manually peek there
<goibhniu> globin: so sorry I can't make it tonight :/ ... there's another party I forgot about ... maybe I can swing by later and see if you're still partying ... there's plenty to celebrate! :D
<globin> goibhniu: Sure just ping me or fpletz here :)
Itkovian has joined #nixos
<Filystyn> anyone installed skype on nix?
<Filystyn> actualy is there something like dpkg on nixie?
<Filystyn> i see i have it not..
griff_ has joined #nixos
ocmylife has joined #nixos
anelson has joined #nixos
<NixOS_GitHub> [nixpkgs] joachifm pushed 3 new commits to master: https://git.io/vScNe
<NixOS_GitHub> nixpkgs/master 8765d1e romildo: gnustep.back: add runtime dependency on libXmu...
<NixOS_GitHub> nixpkgs/master 1f9e7f3 romildo: gworkspace: 0.9.3 -> 0.9.4
<NixOS_GitHub> nixpkgs/master 889f5d1 Joachim F: Merge pull request #24477 from romildo/upd.gworkspace...
<Filystyn> seems skype works nice
nico202 has quit [(Remote host closed the connection)]
<Filystyn> i see dpkg actualy is in rep O.o
<Filystyn> wf
<Filystyn> wtf
peterhoeg has joined #nixos
<crzyp3ck> I solved it by **XDG_CURRENT_DESKTOP=kde**. I just want to export it globally. How should I go about doing it?
* __Sander__ is suffering from an HFS depression
<avn> Filystyn: is an existing derivation for skype in nixpkgs, but is meaningless, beacuse it works only as text chat atm.
<avn> or you about atom-based new beta?
<crzyp3ck> ????????
jensens has joined #nixos
<Filystyn> i have skype working
<Filystyn> not sure video but i loge din
drasich has quit [(Ping timeout: 246 seconds)]
Guest74296 has quit [(Read error: Connection reset by peer)]
<LnL> __Sander__: did you expect hfs to keep track of your files?
<__Sander__> no, just a hydra mac build slave that got stuck
<__Sander__> because of too many files in the nix store
<crzyp3ck> I solved it by **XDG_CURRENT_DESKTOP=kde**. I just want to export it globally. How should I go about doing it?
<LnL> crzyp3ck: environment.variables.XDG_CURRENT_DESKTOP = "kde";
<ikwildrpepper> copumpkin: have you had such errors on OSX? curl: (56) SSL read: error:1408F119:SSL routines:SSL3_GET_RECORD:decryption failed or bad record mac, errno 0
sigmundv has joined #nixos
<LnL> there where a bunch of changes to openssl/cacert recently
<ikwildrpepper> (when download from cache.nixos.org)
<ikwildrpepper> SSL3 sounds very deprecated
<LnL> is this a new install or an older machine?
<ikwildrpepper> new install
<ikwildrpepper> but perhaps older ones also have it
<copumpkin> ikwildrpepper: not on macOS but I've been seeing lots of error 56 against the binary cache on Linux (NixOS) in the past day
<ikwildrpepper> anyway, the new macs are part of hydra.nixos.org now
<copumpkin> Or rather several people have asked me if I knew what was up with it
<copumpkin> Oh nice, thanks!!
<ikwildrpepper> copumpkin: wonder if something is up with cloudfront/s3
<copumpkin> Yeah it seems very coincidental that we'd see it happen in so many places
<qknight> is there something like builtins.trace which prints the whole trace instead of showing me <CODE>?
<qknight> nix-repl :p would be the equivalent
m0rphism has joined #nixos
sigmundv has quit [(Ping timeout: 246 seconds)]
<copumpkin> ikwildrpepper: it'd help if I knew what 56 meant :P
<NixOS_GitHub> [nixpkgs] fadenb opened pull request #24504: emby: 3.2.8 -> 3.2.10 (master...emby_3.2.10) https://git.io/vSchP
KarelWDingeldey[ has joined #nixos
KarelWDingeldey[ has left #nixos []
<crzyp3ck> LnL: what does it do? what does it add to what file?
<crzyp3ck> is it the only way?
<LnL> it will export the environment variables in /etc/bashrc or whatever shell you configured
eacameron has joined #nixos
<crzyp3ck> LnL: If I want to add an if else statement. then what should I use?
eacameron has quit [(Ping timeout: 240 seconds)]
<manveru> crzyp3ck: nix has if/else
<NixOS_GitHub> [nixpkgs] joachifm pushed 2 new commits to master: https://git.io/vScjd
<NixOS_GitHub> nixpkgs/master 1e29526 Maximilian Bosch: geogebra: 5-0-346-0 -> 5-0-350-0
<NixOS_GitHub> nixpkgs/master 05e5151 Joachim F: Merge pull request #24480 from Ma27/update/geogebra...
<LnL> depends on what kind of conditional you want
<NixOS_GitHub> [nixpkgs] globin pushed 1 new commit to release-17.03: https://git.io/vScjF
<NixOS_GitHub> nixpkgs/release-17.03 36547de Tim Steinbach: linux: 4.4.57 -> 4.4.58...
ThatDocsLady has joined #nixos
<crzyp3ck> manveru: What? I want to export some env variables in if else manager. LnL
<manveru> sorry, but i don't understand that sentence
<manveru> is "if else manager" the name of some application?
<crzyp3ck> LnL: what to say if the deskto isNOT KDE5 plasma then export **XDG_CURRENT_DESKTOP=kde**
<crzyp3ck> manveru: ^^
<NixOS_GitHub> [nixpkgs] zimbatm opened pull request #24505: terraform: 0.9.1 -> 0.9.2 (master...terraform-0.9.2) https://git.io/vSCe2
<LnL> so something like this? environment.variables = mkIf config.xserver.displayManager.plasma5.enable { XDG_CURRENT_DESKTOP = "kde"; };
k2s has joined #nixos
<NixOS_GitHub> [nixpkgs] globin pushed 1 new commit to master: https://git.io/vSCvO
<NixOS_GitHub> nixpkgs/master 00689b2 Tristan Helmich: emby: 3.2.8 -> 3.2.10
deepfire has quit [(Ping timeout: 260 seconds)]
k2s has quit [(Remote host closed the connection)]
<NixOS_GitHub> [nixpkgs] globin pushed 1 new commit to release-17.03: https://git.io/vSCv7
<NixOS_GitHub> nixpkgs/release-17.03 6986b0c Tristan Helmich: emby: 3.2.4 -> 3.2.10...
k2s has joined #nixos
k2s has quit [(Client Quit)]
eacameron has joined #nixos
gilligan has joined #nixos
crzyp3ck_ has joined #nixos
crzyp3ck has quit [(Ping timeout: 268 seconds)]
eacameron has quit [(Ping timeout: 240 seconds)]
gilligan has quit [(Ping timeout: 240 seconds)]
<taeradan> hi
crzyp3ck_ has quit [(Changing host)]
crzyp3ck_ has joined #nixos
crzyp3ck_ is now known as crzyp3ck
<ikwildrpepper> globin: the PR of 17.03 can be merged right?
<ikwildrpepper> and deployed?
<taeradan> I have tomcat8 and tomcat7 installed, how can I set which one is linked in /run/current-system/sw/ in case of conflict ?
<globin> ikwildrpepper: from my side yes
<taeradan> is there a simple way to have <some_stable_path>/tomcat7 and <some_stable-path>/tomcat8 somewhere without making manual "ln -s" ?
<taeradan> I've looked at pathsToLink but it doesn't do what I want
<ikwildrpepper> globin: change is deployed
gilligan has joined #nixos
ok2 has joined #nixos
<niksnut> ikwildrpepper: ehm
<niksnut> I wasn't finished yet
<niksnut> we don't have EC2 AMIs yet
<ikwildrpepper> oh didn't know we were waiting for you, I can revert
<domenkozar> which reminds me, we have to speed up that script
mojjo has joined #nixos
<domenkozar> generating EC2 images can be done way easier
<ikwildrpepper> niksnut: are you running the ec2 ami's now, or you want me to do it?
<NixOS_GitHub> [nixpkgs] laMudri opened pull request #24506: ibus-table: 1.9.14 -> 1.9.16 (master...ibus-table) https://git.io/vSCUZ
<mojjo> is it correct that nixops tends to be not the right thing when having a slow upstream internet connection and when dealing with 100mb builds..? Or am I missing something here? I'm having only one remote machine anyways. It looks to be better to just send a configuration.nix to the remote nix machine and let it buitld there...
<globin> niksnut: shall I announce with a note that AMIs are coming soon or wait for you?
gilligan has quit [(Ping timeout: 260 seconds)]
<domenkozar> mojjo: that's why I added following option to nixops 1.5
mudri has quit [(Ping timeout: 240 seconds)]
<mojjo> domenkozar: oh, perfect. I'm using 1.4 though. How would I upgrade to the 1.5 one?
<domenkozar> to use newer channel
<domenkozar> not sure how you install nixops
<domenkozar> it was released a few weeks ago
<ixxie> domenkozar: while speaking of nixops, I was looking at this article https://blog.wearewizards.io/how-to-use-nixops-in-a-team and wondering if somebody knowledgable about nixops can comment
<ikwildrpepper> I will release 1.5.1 this weekend btw
<mojjo> I'm on the stable channel, would I need to go to unstable then?
lamby has left #nixos []
<domenkozar> ixxie: comment on what?
<domenkozar> mojjo: use 17.03 which became stable today
katyucha is now known as Guest3015
Guest3015 has quit [(Killed (verne.freenode.net (Nickname regained by services)))]
katyucha_ is now known as katyucha
<ikwildrpepper> mojjo: 1.5 should also be in 16.09
katyucha_ has joined #nixos
deepfire has joined #nixos
<ixxie> domenkozar: well, they seem to argue nixops is currently designed for one adminstrator to deploy with; I was wondering if they are right, and if so whether their workaround is really the best way to use nixops as a team
<ikwildrpepper> ixxie: we use it in teams just fine
<ikwildrpepper> it just needs a central place where your teams works on the nixops deployments
<domenkozar> ixxie: we have one deployment box
<ikwildrpepper> e.g. we just use several deployment machines and users
<ikwildrpepper> and give access using normal unix way
<NixOS_GitHub> [nixpkgs] edolstra pushed 1 new commit to master: https://git.io/vSCTG
<NixOS_GitHub> nixpkgs/master e241fb8 Eelco Dolstra: Update 17.03 release notes
<domenkozar> but there is also https://github.com/NixOS/nixops/pull/624
<ixxie> I see
<ixxie> makes sense
<mojjo> I have system.autoUpgrade.channel = "https://nixos.org/channels/nixpkgs-stable"; and system.autoUpgrade.enable = true; in my config. And I installed 16.09. I'm wondering why I'm not having nixops 1.5 then. Would switching to 17.3 be a big thing to do?
<NixOS_GitHub> [nixpkgs] edolstra pushed 1 new commit to release-17.03: https://git.io/vSCT4
<NixOS_GitHub> nixpkgs/release-17.03 4f18dc4 Eelco Dolstra: Update 17.03 release notes...
<ikwildrpepper> gchristensen: is moretea on irc?
<ikwildrpepper> or perhaps domenkozar know
<ikwildrpepper> s
<domenkozar> he is
<domenkozar> not atm :)
<ikwildrpepper> ah :D
cpennington has joined #nixos
gilligan has joined #nixos
Itkovian_ has joined #nixos
<niksnut> AMIs are building now
Itkovian has quit [(Ping timeout: 260 seconds)]
Jackneillll has joined #nixos
<copumpkin> Ooh amis
<copumpkin> ikwildrpepper: I see the new Macs!! Yay thanks!
<copumpkin> But also mac1 seems to be dead?
<ikwildrpepper> yeah, don't know what is up with that one, but after a morning of installing the macs, I rather not look at it now, time to do some actual work ;)
<copumpkin> Hah no problem, thanks again
<NixOS_GitHub> [nixpkgs] NeQuissimus pushed 1 new commit to master: https://git.io/vSCkA
<NixOS_GitHub> nixpkgs/master 501429d Tim Steinbach: linux: 4.9.19 -> 4.9.20
<ikwildrpepper> copumpkin: hm: error: setting synchronous mode: disk I/O error
<ikwildrpepper> that might be related :D
<NixOS_GitHub> [nixpkgs] NeQuissimus pushed 1 new commit to release-17.03: https://git.io/vSCkp
<NixOS_GitHub> nixpkgs/release-17.03 64c7897 Tim Steinbach: linux: 4.9.19 -> 4.9.20...
fuzzy-id has joined #nixos
<NixOS_GitHub> [nixpkgs] NeQuissimus pushed 1 new commit to master: https://git.io/vSCIO
<NixOS_GitHub> nixpkgs/master bff456b Tim Steinbach: linux: 4.10.7 -> 4.10.8
<NixOS_GitHub> [nixpkgs] NeQuissimus pushed 1 new commit to release-17.03: https://git.io/vSCIs
<NixOS_GitHub> nixpkgs/release-17.03 8bb0789 Tim Steinbach: linux: 4.10.7 -> 4.10.8...
<NixOS_GitHub> [nixpkgs] NeQuissimus pushed 1 new commit to master: https://git.io/vSCI4
<NixOS_GitHub> nixpkgs/master cb79137 Tim Steinbach: linux: 4.4.58 -> 4.4.59
gilligan has quit [(Ping timeout: 268 seconds)]
<NixOS_GitHub> [nixpkgs] NeQuissimus pushed 1 new commit to release-17.03: https://git.io/vSCIE
<NixOS_GitHub> nixpkgs/release-17.03 dbdd033 Tim Steinbach: linux: 4.4.58 -> 4.4.59...
<NixOS_GitHub> [nixpkgs] NeQuissimus pushed 1 new commit to release-16.09: https://git.io/vSCIa
<NixOS_GitHub> nixpkgs/release-16.09 17d9e4d Tim Steinbach: linux: 4.4.58 -> 4.4.59...
<NixOS_GitHub> [nixpkgs] NeQuissimus pushed 1 new commit to master: https://git.io/vSCI5
<NixOS_GitHub> nixpkgs/master e872abe Tim Steinbach: oh-my-zsh: 2017-02-27 -> 2017-03-30
<NixOS_GitHub> [nixpkgs] NeQuissimus pushed 2 new commits to release-17.03: https://git.io/vSCLe
<NixOS_GitHub> nixpkgs/release-17.03 af9680f Tim Steinbach: oh-my-zsh: 2017-02-20 -> 2017-02-27...
<NixOS_GitHub> nixpkgs/release-17.03 94df466 Tim Steinbach: oh-my-zsh: 2017-02-27 -> 2017-03-30...
mudri has joined #nixos
deepfire has quit [(Ping timeout: 240 seconds)]
<NixOS_GitHub> [nix] edolstra pushed 6 new commits to master: https://git.io/vSCtT
<NixOS_GitHub> nix/master 418a837 Shea Levy: Remove perl dependency....
<NixOS_GitHub> nix/master f7b7df8 Shea Levy: Add nix-perl package for the perl bindings
<NixOS_GitHub> nix/master 2b4c24f Janus Troelsen: Remove Perl dependency listing in doc
<domenkozar> woot
<makefu> so, it has come to this!
<LnL> oh!
<domenkozar> 14 months, faster than elephant baby (22months)
<domenkozar> thanks niksnut & shlevy
<ashkitten> 17.03 is out? sweet
<globin> niksnut: do you have an ETA for when the AMIs are built?
gilligan has joined #nixos
* copumpkin has a WIP PR that makes AMIs and images in <a minute :D
<copumpkin> I should really finish that work
<domenkozar> copumpkin: yaaaay
<domenkozar> copumpkin: I give you one nixcoin if you do it
<copumpkin> Well the AMI part is constrained by AWS but I've done AMIs start to finish pretty quickly
RchrdB has joined #nixos
<domenkozar> copumpkin: oh makes AMIs, not uploads them
<copumpkin> Hah okay let me do a bit more Darwin stuff then I'll finish the image PR
<domenkozar> I might speed up the uploading one day
<domenkozar> within next month :)
<copumpkin> The fastest approach start to finish is with an EBS volume inside EC2
<domenkozar> yeah with import to EBS
<domenkozar> then ebs to image
<copumpkin> Since it's a dd invocation + a couple of API calls
<copumpkin> Yeah that's what I do at work
<copumpkin> The explicit import from S3 API is a bit slower in my experience
<domenkozar> it's really slow :)
<domenkozar> but it's faster than nixops redeploy with 100 nodes :-P
<copumpkin> But to do that well we need my PR because building Images inside an EC2 instance is super slow
<copumpkin> :)
<domenkozar> mhm :)
<domenkozar> anyone knows if elvishjerricco hangs around here?
<domenkozar> that is Will Fancher
ocmylife has quit [(Quit: Connection closed for inactivity)]
<NixOS_GitHub> [nix] edolstra pushed 1 new commit to master: https://git.io/vSCm3
<NixOS_GitHub> nix/master e1509ad Eelco Dolstra: Retry curl error 16
<NixOS_GitHub> [nixpkgs] globin pushed 1 new commit to master: https://git.io/vSCmz
<NixOS_GitHub> nixpkgs/master cbd6fb1 Robin Gloster: Release Notes: tracking UIDs/GIDs is in 17.09
<shlevy> Happy perl independence day!
<spinus> Is there any way to "rebind" service to different name (except copying the nix service file and renaming stuff inside)? I would like to have two separate postgrsql services
<NixOS_GitHub> [nix] edolstra pushed 1 new commit to master: https://git.io/vSCmM
<NixOS_GitHub> nix/master b9b8b8a Eelco Dolstra: Fix evaluation error
pallav is now known as qwerty
qwerty is now known as pallav
ryanartecona has joined #nixos
derjohn_mob has quit [(Ping timeout: 260 seconds)]
m0rphism1 has joined #nixos
<niksnut> NixOps fails in the 17.03 AMI
<niksnut> *on
m0rphism has quit [(Ping timeout: 260 seconds)]
reinzelmann has quit [(Quit: Leaving)]
gilligan is now known as gilligan_
<gilligan_> LnL, late answer on google-cloud-sdk : I tried strace to figure it out but failed to find anything obvious
ryanartecona has quit [(Quit: ryanartecona)]
<mudri> This is weird. I'm trying to do a version bump of ibus-table-others (pkgs/tools/inputmethods/ibus-engines/ibus-table-others/) up to 1.3.9, but nix-build (and any other Nix tools) are not fetching the new source.
<mudri> Even changing the hash to something completely wrong doesn't work.
ryanartecona has joined #nixos
deepfire has joined #nixos
<mudri> Okay, I got nix-build to work by prefetching the right URL and putting in that hash. nixos-rebuild still doesn't work, though.
<mudri> (Silent failure.)
<SovereignBleak> Does NixOS not support a NILFS2 root? I tried an install three times with various permutations in my config and finally set up root as EXT4, which worked. Nilfs-utils were explicitly installed by the config.
mojjo has quit [(Ping timeout: 256 seconds)]
* mudri rebooting...
mudri has quit [(Quit: WeeChat 1.7)]
<gchristensen> SovereignBleak: can you describe more about what happened when you tried?
<SovereignBleak> gchristensen: I took a picture of the error, one sec.
mudri has joined #nixos
<NixOS_GitHub> [nixpkgs] edolstra pushed 2 new commits to master: https://git.io/vSCsC
<NixOS_GitHub> nixpkgs/master 4e79b0b Eelco Dolstra: Revert "sshd: separate key generation into another service"...
<NixOS_GitHub> nixpkgs/master 80b40fd Eelco Dolstra: sshd.nix: Alternative fix for #19589...
<NixOS_GitHub> [nixpkgs] edolstra pushed 2 new commits to release-17.03: https://git.io/vSCs4
<NixOS_GitHub> nixpkgs/release-17.03 1847793 Eelco Dolstra: Revert "sshd: separate key generation into another service"...
<NixOS_GitHub> nixpkgs/release-17.03 1484e40 Eelco Dolstra: sshd.nix: Alternative fix for #19589...
<niksnut> globin: okay, AMIs will have to wait until the 17.03 channel has caught up with my sshd fixes
fuzzy-id has quit [(Ping timeout: 240 seconds)]
<niksnut> so maybe you should just send out the release announcement with a note that AMIs will be a bit later
<globin> niksnut: ok will do :)
ocmylife has joined #nixos
<gchristensen> niksnut: should aws users hold off on upgrading their instances until the channel catches up?
Mercuria1Alchemi has quit [(Ping timeout: 260 seconds)]
<niksnut> no, upgrading existing instances is fine
<SovereignBleak> gchristensen: I can’t find the photo. I’ll try and recall the boot error message as best I can: stage 1 fails and informs me nixos-root can’t be found and fsck.nilfs can’t be found.
<niksnut> creating new instances fails
<gchristensen> ok
<niksnut> to be precise, there are no 17.03 AMIs yet, so it can't fail...
<niksnut> currently new deployments will still use 16.09 AMIs
<gchristensen> just wanted to make sure :}
<globin> niksnut: and the vm tests are failing on kenny, not allowing a channel update
erasmas has joined #nixos
nevermind has joined #nixos
<ashkitten> Just wondering, off topic, are there any plans for having NixOS manage user directories as well?
<niksnut> globin: I've just upgraded that machine to 17.03, guess this is another regression...
eacameron has joined #nixos
<niksnut> ashkitten: yes, see https://github.com/NixOS/nixpkgs/pull/9250
derjohn_mob has joined #nixos
deepfire has quit [(Remote host closed the connection)]
deepfire has joined #nixos
<SovereignBleak> My only difference in the NILFS2 and EXT4 install was I mounted by label in the latter and mounted the straight /dev/sda mappings in the former. Could that be at fault?
ryanartecona has quit [(Quit: ryanartecona)]
<globin> niksnut: the website is showing 17.03 again
<niksnut> probably you're looking at a cached copy
<niksnut> I didn't revert the revert yet
Itkovian_ has quit [(Ping timeout: 256 seconds)]
<niksnut> now I have
<globin> niksnut: I just announced, it showed 17.03 earlier
Itkovian has joined #nixos
<unlmtd[m]> Iv been going down the nixos hole for a few days, after trying to fix some stuff on my workstation, and I really dont understand what nixos would limit its scope of application by marrying to an init system which has limited use! it might make sense for ubuntu, because ubuntu has lots of state problems, and by using the init which is popular on desktop, it might avoid some bugs, but nixos does not have that problem! so nixos
<unlmtd[m]> init system is limiting the use cases and offering no advantages (other than maybe a second less bootup time on a modern machine)
<goibhniu> you are welcome to add support for another init system unlmtd[m]
NickHu has joined #nixos
<unlmtd[m]> someone has already started
<unlmtd[m]> im trying to deviate the river instead of carrying buckets of wates
<unlmtd[m]> water*
<tilpner> Did anyone get bumblebee on 17.03 to work?
<niksnut> globin: the failure appears to be due to the host kernel upgrade
<unlmtd[m]> runit runs on all unix derivatives, so there is already a small effort to use it instead. It would render nixos much more versatile, lightweight, and runit services are easier to define and debug
<niksnut> apparently /dev/ptmx is broken in sandboxes on linux 4.9
<globin> niksnut: could that be the kmod blacklist update?
<unlmtd[m]> you can probably run runit on darwin, so nix could define services on osx even!
JagaJaga has joined #nixos
roundhouse has joined #nixos
<roundhouse> hi, anyone here using firejail? It seems to not work for me on 17.03
<unlmtd[m]> I watched franz pletz's presentation and it just hit me so hard
nevermind has quit [(Quit: My MacBook has gone to sleep. ZZZzzz…)]
<tilpner> roundhouse - Does it seem related to https://github.com/netblue30/firejail/issues/1098
<fpletz> unlmtd[m]: how did I hit you? :>
oida_ is now known as oida
<globin> fpletz: do you hate disabled people?
<unlmtd[m]> lol
<fpletz> datenwolfed? :)
<roundhouse> tipner: your google-foo is stronger than mine. I'll see if it is the same
<manveru> unlmtd[m]: well, i for one would love to use runit again :)
<SovereignBleak> Personally I love systemd.
<unlmtd[m]> it would mean a nixos port to bsd is closer, that runit a 10mb nixos container and running it on a router becomes possible
<SovereignBleak> This untoward hate is reaching truly ridiculous proportions.
<fpletz> there's some traction and support in developing a service abstraction layer and I would love to have it in nixos if it is maintainable, but no results as of yet
<LnL> unlmtd[m]: fyi, I created a project with modules for launchd services and etc.
<manveru> unlmtd[m]: but to be honest, it might be easier to start implementing it on top of void linux
<unlmtd[m]> lol
<unlmtd[m]> I was in their irc talking about it
<manveru> i used void for a few months before switching to nixos
<unlmtd[m]> Im busy with some other things but I can tell you, nixos has a lot more wings than its given
<NixOS_GitHub> [nixpkgs] shlevy pushed 1 new commit to master: https://git.io/vSCcV
<NixOS_GitHub> nixpkgs/master c923c6c Shea Levy: webkitgtk24x: Fix build on darwin
<unlmtd[m]> give it an init that runs on everything. systemd was written to overcome problems that nixos resolves by itself. and now its tying it down!
<NixOS_GitHub> [nixpkgs] shlevy pushed 1 new commit to release-17.03: https://git.io/vSCci
<NixOS_GitHub> nixpkgs/release-17.03 8e7d50f Shea Levy: webkitgtk24x: Fix build on darwin...
marsam has joined #nixos
<manveru> i think it was more of a "path of least resistance" choice when nixos switched to systemd
<globin> niksnut: https://github.com/NixOS/nixpkgs/commit/785e45ac06209295531955c0da302f72cb01e4ff could be that more modules need unblacklisting
<unlmtd[m]> I counsel ppl on the right course of action for a living. so this isnt coming from a shmuck
<manveru> then at least spell schmuck right :)
<manveru> sorry, i just had to
<unlmtd[m]> fpletz: loved your presention. you can breath in a bit more but its very much to the point!
ryanartecona has joined #nixos
<unlmtd[m]> 'availability heuristics' - using nixos is so cool that anyone using it would be biased to say something nice about every part of it
nevermind has joined #nixos
<unlmtd[m]> im sorry I dont have the time for doing it myself, but Ill bet anyone that it will be a success when it does happen
<unlmtd[m]> so plant your fruit trees early
<niksnut> manveru: no, we switched to systemd because it's far better than upstart
drasich has joined #nixos
<simpson> unlmtd[m]: There are plenty of folks here who will be honest when NixOS has faults. It's just that Nix really does massively raise the bar in terms of expectations and quality.
JagaJaga has quit [(Ping timeout: 240 seconds)]
<gchristensen> nixos just sucks way less than the rest!
<unlmtd[m]> this is the right direction https://github.com/cleverca22/not-os
<gchristensen> by all means, move to not-os
<unlmtd[m]> follow clever, he knows which way to go
<roundhouse> quick question, what packages do I want to get the standard kde programs for plasma5?
<__Sander__> NixOS is the ultimate OS :D
<__Sander__> :p
<sziszi> indeed
<unlmtd[m]> so lets run in on our routers!
<gchristensen> I do
<sziszi> I'm just curious why the games ported by Aspyr don't work.. I saw the thread on reddit but no one has clue
<unlmtd[m]> 128 mb ram
RchrdB has quit [(Ping timeout: 240 seconds)]
<NixOS_GitHub> [nixpkgs] andsild closed pull request #23112: slock: added documentation to nixpkgs manual (master...wikislock) https://git.io/vyeN3
<gchristensen> I'm sorry, unlmtd[m], I'm a bit tired of hearing your insistence that everyone else do a lot of work.
<unlmtd[m]> ahahh Im trying to save you work
<gchristensen> please try harder by actually doing the work.
<unlmtd[m]> im doing more important things, like making sure we all can eat next year. but I love the idea of nixos, and I can see where efforts would make a greater impact
<gchristensen> right now, the people who do most of the at that level aren't clamoring to replace systemd.
<unlmtd[m]> no of course its a lot of work
<unlmtd[m]> I understand that
<gchristensen> please stop
<unlmtd[m]> I was done
Svarog has joined #nixos
m0rphism2 has joined #nixos
<niksnut> I feel this somehow has to do with the /dev/ptmx issue: https://patchwork.kernel.org/patch/7832531/
m0rphism1 has quit [(Ping timeout: 240 seconds)]
<SovereignBleak> Do the mods have any interest in bridging the #nixos channel to the Matrix protocol?
<globin> niksnut: I have to help prepare for the release party the next our or so, will check later again
<dash> SovereignBleak: there's already a matrix bridge for freenode, why would mods need to do anything?
mt has joined #nixos
<SovereignBleak> dash: Doesn’t it have to be switched on per channel? #gentoo for example shows up in the room browser but not #nixos
<Svarog> I have a couple of questions about gnome3 on nixos. I was wondering if anyone here would be able to help?
<gchristensen> " Bridged public IRC rooms are not yet advertised in the public room list on matrix.org."
<Svarog> About a week ago it seemed to be working fine, then after I've done an upgrade I can no longer change any settings, for example background image or color.
ilyaigpetrov has joined #nixos
<Svarog> Another thing is that touching the touch screen seems to crash it. It segfaults in libcaribou, the on-screen keyboard.
<SovereignBleak> gchristensen: Then something funky is going on because some bridged channels do show up and others do not.
<Svarog> Has anyone else run into these issues? Are there any workarounds?
<SovereignBleak> Are publicly announced is what I mean to say.
crzyp3ck_ has joined #nixos
<goibhniu> Hi Svarog, unfortunately, I believe we're low on gnome maintainers at the moment and I heard of people having issues :/
<Svarog> Oh right.
crzyp3ck has quit [(Ping timeout: 256 seconds)]
<NixOS_GitHub> [nix] shlevy pushed 2 new commits to master: https://git.io/vSCBk
<NixOS_GitHub> nix/master 0bb8db2 Shea Levy: Add exec primop behind allow-unsafe-native-code-during-evaluation....
<NixOS_GitHub> nix/master d299bd7 Shea Levy: Merge branch 'builtins.exec'
RchrdB has joined #nixos
drasich has quit [(Ping timeout: 246 seconds)]
<NixOS_GitHub> [nixpkgs] pngwjpgh opened pull request #24507: networkmanager: use source as in environment.etc (master...fix/nm-dispatch) https://git.io/vSCBG
<Svarog> Is there a way to find out which installed packages line up with what commit in the git repository?
<unlmtd[m]> the irc channel could also be bridged with the #nixos matrix room.
gilligan_ has quit [(Ping timeout: 264 seconds)]
<goibhniu> Svarog: with `nixos-version` you can see the commit of nixpkgs (at the end) that was used to create the your current generation
<unlmtd[m]> so you get an avatar and things of that sort, on matrix of course
<Svarog> Thanks, goibhniu. I'll try that.
<unlmtd[m]> and I dont know if nixos is on gitter or some other thing, they could also be bridged, so that everyone ends up in the same room, dont know if thats too much or what
layus has quit [(Quit: Leaving)]
<unlmtd[m]> but matrix still doesnt have a nice client
stepcut has joined #nixos
ma9e has joined #nixos
<ma9e> sudo: /etc/init.d/nfs-kernel-server: command not found
<ma9e> what do i do? :<
<ma9e> services.nfs.server.enable is true in my config
<spinus> ma9e: nixos uses systemd not init scripts
<ma9e> yeah im dumb
<ma9e> brain fart
goibhniu has quit [(Ping timeout: 268 seconds)]
c0bw3b has joined #nixos
gilligan_ has joined #nixos
peterhoeg has quit [(Remote host closed the connection)]
ryanartecona has quit [(Ping timeout: 240 seconds)]
ryanartecona has joined #nixos
bkchr has quit [(Ping timeout: 260 seconds)]
<NixOS_GitHub> [nixpkgs] 7c6f434c pushed 2 new commits to master: https://git.io/vSCuJ
<NixOS_GitHub> nixpkgs/master 011c907 Michael Raskin: lispPackages: pin to asdf_3_1 by default
<NixOS_GitHub> nixpkgs/master 739ecca Michael Raskin: esrap-peg: 20131029 -> 20170320
<disasm> ma9e: if you have enable set to true, it should start the services.
<ma9e> disasm, i think it's an issue with vagrant, but thanks
roundhouse has quit [(Remote host closed the connection)]
<NixOS_GitHub> [nixpkgs] NeQuissimus opened pull request #24508: nss: 3.28.3 -> 3.29.3 (staging...nss_3_29_3) https://git.io/vSCu3
eacameron has quit [(Ping timeout: 268 seconds)]
bkchr has joined #nixos
civodul has quit [(Quit: ERC (IRC client for Emacs 25.1.1))]
eacameron has joined #nixos
ThatDocsLady has quit [(Quit: Arma-geddin-outta-here!)]
ryanartecona has quit [(Ping timeout: 260 seconds)]
endformationage has joined #nixos
<NixOS_GitHub> [hydra] edolstra pushed 1 new commit to master: https://git.io/vSC2e
<NixOS_GitHub> hydra/master 147ba3c Eelco Dolstra: Set proper charset on log files
<NixOS_GitHub> [nix] shlevy pushed 1 new commit to master: https://git.io/vSC2T
<NixOS_GitHub> nix/master 3ecb09a Shea Levy: builtins.exec: Make the argument just a list
till_ has joined #nixos
till_ is now known as tilpner_
tilpner_ is now known as tilpner__
<tilpner__> How do I check X11 error logs? My system freezes after running "systemctl start display-manager", so I need to check the logs from the last boot
<tilpner__> I'm trying to switch to 17.03, but I haven't gotten everything to work yet
__Sander__ has quit [(Quit: Konversation terminated!)]
<Svarog> tilpner__, journalctl -e should include x11 errors
joelmo has joined #nixos
<tilpner__> Svarog: I tried "journalctl -b -1" and almost the last line is the sudo log for "nixos-rebuild test". After running nixos-rebuild test, I started display-manager.service, but there is mention of anything like that in the log
joelmo has left #nixos []
<tilpner__> *there is no mention
<Svarog> tilpner__, out of curiosity, what graphics card do you have and which display manager are you using?
ThatDocsLady has joined #nixos
ThatDocsLady has quit [(Client Quit)]
<tilpner__> i3 is currently enabled, and I have a laptop with some integrated Intel card and an Nvidia card as well
<tilpner__> This combination was working flawlessly with 16.09 on Linux 4.8, but doesn't anymore
<Svarog> Oh right.
<tilpner__> I have tried disabling bumblebee and enable nvidiaOptimus.disable, but that doesn't change anything
<Svarog> I've been having a lot of problems with gdm and gnome3 with just Intel graphics, which is why I was curious what you are running.
<tilpner__> I don't think the problem is about the nvidia card, considering i3 ran on the intel card and I only used primusrun when needed. But without any logs, I'm just guessing
<Svarog> Yeah.
<tilpner__> Svarog: On 17.03?
<Svarog> Yes.
<tilpner__> What kind of problems?
<jasom> So, ho does one fix the "symbol lookup error: /run/opengl-driver/lib/libEGL.so.1: undefined symbol: wl_proxy_marshal_constructor_versione" error? I'm getting it with vim after upgrading to 16.09. I found the bug in github but didn't find any fixes
<Svarog> I'm new to NixOS, only been running it for a couple of weeks. A week ago it was mostly working aside from a crash if I'd touch the screen. Gnome on-screen keyboard would segfault.
<Svarog> Then a few days later, I've done an update and since then gnome was no longer working. Wouldn't start at all with gdm, would somewhat work with lightdm or slim, but I can't seem to change any settings anymore.
<NixOS_GitHub> [nixops] Profpatsch opened pull request #638: Always print the stacktrace if unforeseen exception in deploy (master...master) https://git.io/vSCwF
<tilpner__> Hmm, that doesn't sound like the same problem, considering yours sort-of works and mine just freezes. What settings are you trying to change?
justin_ has quit [(Ping timeout: 264 seconds)]
<NixOS_GitHub> [nix] edolstra pushed 1 new commit to master: https://git.io/vSCre
<NixOS_GitHub> nix/master 29d3580 Eelco Dolstra: Sandbox: Fix /dev/ptmx on recent kernels...
<Svarog> Well with gdm it freezes/crashes.
<Svarog> Settings like background image or color.
<Svarog> But yes, I think it's a different problem.
<NixOS_GitHub> [nix] edolstra pushed 1 new commit to master: https://git.io/vSCKt
<NixOS_GitHub> nix/master 3b8946e Eelco Dolstra: Maybe fix the RPM build...
tilpner__ has quit [(Quit: WeeChat 1.7)]
eugo has joined #nixos
jensens has quit [(Ping timeout: 260 seconds)]
tilpner__ has joined #nixos
<tilpner__> Svarog: booting with slim enabled doesn't change anything :/
<JayVii> when i was using Gnome, nixos-rebuild wouldn't even work with slim enabled. i *had* to use gdm
ocmylife has quit [(Quit: Connection closed for inactivity)]
<Svarog> Odd. Now gdm doesn't work and slim does.
<JayVii> and that was only a week ago on 17.03beta
<Svarog> Yeah a week ago gdm was working fine for me, didn't try anything else.
<tilpner__> Meh, I might rollback to 16.09, but then I have to debug this some other time :/
<Svarog> tilpner__, have you tried blacklisting the nvidia card? See if you can get it to work with Intel gfx only first?
m0rphism2 has quit [(Quit: WeeChat 1.4)]
<tilpner__> No, I haven't. I'll try that, though it wasn't necessary before, so I don't know why that would've changed
Itkovian has quit [(Quit: My MacBook has gone to sleep. ZZZzzz…)]
<JayVii> has anyone in here used apparmor with NixOS?
<JayVii> is there anything else I need to do, apart from setting "security.apparmor.enable = true;" ?
edvorg has joined #nixos
<Filystyn> ok i want to use wifi
<Filystyn> what should be my steps
<Filystyn> steps*
systemfault has joined #nixos
<JayVii> Filystyn it's probably the easiest to use Networkmanager (at least, if you are loading a desktop)
<ericnoan> Filystyn: the kernel should have the modules if the wifi card is supported. you might need rfkill if you're on a notebook. do you not see your wlan interface at all?
ixxie has quit [(Ping timeout: 260 seconds)]
c0bw3b has left #nixos []
<Filystyn> for now i started from
<Filystyn> networking.networkmanager.enable = true; and switch with rebuild
<Svarog> tilpner__, I meant more for debugging - easier to get things going with just one graphics card.
chakerbenhamed has quit [(Ping timeout: 240 seconds)]
Filystyn has quit [(Ping timeout: 260 seconds)]
vaibhavsagar has quit [(Ping timeout: 240 seconds)]
Filystyn has joined #nixos
<Filystyn> sooo i installed the network manager
<Filystyn> and i do not see it
<Filystyn> well where s the mistake how to enable wi fi?
<Filystyn> simple steps
nschoe has quit [(Quit: Program. Terminated.)]
ixxie has joined #nixos
ZoomZoomZoom has quit [(Quit: Leaving)]
<tilpner__> Svarog: Yes, I couldn't get that to work either. Thanks for the suggestions though :)
k2s has joined #nixos
<Filystyn> welp?
<Filystyn> what to do
<JayVii> Filystyn i usually have to reload my DM/WM (or reboot) to make the menus pick up newly installed applications
<JayVii> probably depends on your desktop, though
<JayVii> could be that this is just a plasma5 thing
AllanEspinosa has joined #nixos
mudri has quit [(Ping timeout: 240 seconds)]
<Filystyn> got it working;)
<Filystyn> thx for help ;)
<Filystyn> cu for now
edvorg has quit [(Ping timeout: 246 seconds)]
mudri has joined #nixos
ambro718 has joined #nixos
<tilpner> eacameron - ping
Filystyn has quit [(Read error: Connection reset by peer)]
hotfuzz has quit [(Ping timeout: 258 seconds)]
dridus has joined #nixos
mckeankylej has joined #nixos
<mckeankylej> Can you use nixops to deploy to vmware?
tilpner__ has quit [(Quit: tilpner__)]
agjacome has joined #nixos
<eacameron> tilpner: pong
<eacameron> mckeankylej: Not that I know of. They use VBox
Acou_Bass has quit [(Read error: Connection reset by peer)]
<mckeankylej> eacameron: turns out you can set the deployment to none! Then it will use ssh to deploy!
<mckeankylej> but it wont do provisioning
<eacameron> mckeankylej: I was going to mention that but, yah, it doesn't do any provisioning.
gilligan_ has quit [(Ping timeout: 240 seconds)]
teknico has left #nixos []
<mckeankylej> great thing is I dont need to do any provisioning! a
<tilpner> eacameron - Have you fixed the relocation errors you had with vscode?
Acou_Bass has joined #nixos
<eacameron> mckeankylej: Well that works! Will nixops stop and start services and everything for you too?
<eacameron> tilpner: I have a workaround
<mckeankylej> eacameron: according to a github issue it seems like that
<ma9e> dumb question: how do i upgrade from 16.09 to 17.03?
<tilpner> How does that workaround, uhm, work?
<eacameron> tilpner: VS Code doesn't seem to have any trouble if the binaries are installed for the user in your profile. So, i.e. if it needs git, then install git with nix-env in your profile.
<tilpner> ma9e - I tried by removing the nixos (at that time 16.09) channel and adding the 17.03 channel as "nixos". But I just rolled back to 16.09, so I guess that wasn't successful
<eacameron> tilpner: I just installed git, coreutils, etc. with nix-env and vs code seems to be working fine that way
<tilpner> eacameron - I'm curious, do you have different channels for system and user packages?
<eacameron> tilpner: I do indeed.
k2s has quit [(Ping timeout: 264 seconds)]
<eacameron> tilpner: I wondered if that was the reason
<eacameron> tilpner: But didn't try to do it a different way
<tilpner> Okay, I think I know how to fix it then, I'll ping you when it works
<eacameron> tilpner: Wow! That would be cool. Are you the maintainer?
<tilpner> No, I'm just required to use per team agreement
marsel has quit [(Ping timeout: 260 seconds)]
<tilpner> *to use it
<eacameron> tilpner: But you think you can fix the vscode package?
<tilpner> I'll try, no promises though
<eacameron> tilpner: Well thanks for trying.
<ma9e> is it as simple as `nixos-rebuild switch --upgrade`?
<ma9e> something else i need to do?
<eacameron> ma9e: That will upgrade within the channel
<eacameron> tilpner: Another random thing: the `code` binary doesn't accept arguments which is not quite right. Like you can't run `code --help`. It just opens VS Code instead of printing help
mudri has quit [(Ping timeout: 260 seconds)]
freusque has quit [(Quit: WeeChat 1.7)]
griff_ has quit [(Quit: griff_)]
gilligan_ has joined #nixos
freusque has joined #nixos
mckeankylej has quit [(Ping timeout: 260 seconds)]
ixxie has quit [(Ping timeout: 240 seconds)]
Filystyn has joined #nixos
<Filystyn> guyas
<Filystyn> guys*
<Filystyn> wwhere is binary stored on nixos i mean installed programs by root
<Filystyn> where?
<Filystyn> i dont see anything in usr/bon
<Filystyn> or bin
<tilpner> Filystyn - Somewhere in /nix/store
<Filystyn> thx
mojjo has joined #nixos
<mojjo> could it be, that the httpd/servedFiles option is broken? the following does not work (whereas servedDirs works):
<mojjo> services.http.servedFiles = [{file = "/etc/passwd"; urlPath = "test";}];
<Filystyn> got it
<Filystyn> thx tilpner
Filystyn has quit [(Quit: Konversation terminated!)]
deepfire has quit [(Ping timeout: 264 seconds)]
<tilpner> eacameron - Are you sure the code binary accepts --help?
<eacameron> tilpner: It does on macOS
<eacameron> tilpner: There should also be commands for listing and installing extensions.
<tilpner> eacameron - If you run $ code <some-text-file>, does it open that text file for you?
demax has joined #nixos
<eacameron> tilpner: Ah yes it does
<tilpner> Oh yes, now I see what it's supposed to do
hotfuzz has joined #nixos
jsgrant has joined #nixos
hotfuzz_ has joined #nixos
hotfuzz has quit [(Ping timeout: 268 seconds)]
Svarog has quit [(Quit: Ex-Chat)]
yumbox has joined #nixos
<yumbox> how do i disable pam?
<simpson> yumbox: That seems a bit extreme. What's your goal?
<dtzWill> hmm, does 'config.inHydra' actually do anything? it's set in release-lib.nix but don't see it elsewhere O:).
<yumbox> simpson: to disable pam
<yumbox> i also get "conflicting definitions" sometimes
<yumbox> for example, I can't disable rtkit if I enable pulseaudio.
hotfuzz_ has quit [(Client Quit)]
<yumbox> I can't disable slim (display manager) if I use X.
<yumbox> that seems weird
<yumbox> how can i override that?
__Sander__ has joined #nixos
<tilpner> eacameron - Got hung up on a typo. I got the relocation errors away and --help works too. Do you want to test?
<tilpner> eacameron - I'm not sure what to do about darwin. There's also a pending PR that I could steal for the latest vscode version
ertesx has joined #nixos
freusque has quit [(Quit: WeeChat 1.7)]
akaWolf has joined #nixos
Itkovian has joined #nixos
ertes has quit [(Ping timeout: 246 seconds)]
ertesx is now known as ertes
marsel has joined #nixos
hyphon81 has quit [(Quit: Page closed)]
hotfuzz has joined #nixos
<yumbox> `The option value `users.users.user.shell' in `/etc/nixos/configuration.nix' is not a package or path`
<NixOS_GitHub> [nixpkgs] tilpner opened pull request #24509: Fix relocation errors in vscode (master...master) https://git.io/vSCdL
Itkovian has quit [(Quit: My MacBook has gone to sleep. ZZZzzz…)]
Itkovian has joined #nixos
tokudan has joined #nixos
dridus has quit [(Quit: znc? wassat?)]
<dtzWill> zomg hydra is amazing haha ^____^
<dtzWill> little bit of work to get setup but so far things are working where it counts :P
<dtzWill> wish I'd made myself do this months ago...
<yumbox> you run ur own hydra?
<dtzWill> i'm doing so now! Soooo much better than the increasing pile of hacks that was my Jenkins-wishes-it-was-hydra setup xD
<dtzWill> nothing against jenkins as much as I was doing what apparently hydra was designed to facilitate wonderfully
<dtzWill> lmao 11k jobs wooo let's do this
justin_ has joined #nixos
* dtzWill is building nixos as bitcode O:)
<dtzWill> llvm ALL the things! ^.^
<dtzWill> well as special bitcode executable format xD. but basically bitcode.
<dtzWill> also the nginx-proxy-acme-ssl-basic-auth workflow has clearly been greased and it's... *magical*
<dtzWill> haha
systemfault has quit [(Quit: Bye!)]
systemfault has joined #nixos
<NixOS_GitHub> [nixpkgs] woehr opened pull request #24510: ghcjs (head): Fix infinite recursion ... (master...master) https://git.io/vSCNQ
dridus has joined #nixos
systemfault has quit [(Ping timeout: 240 seconds)]
<NixOS_GitHub> [nixpkgs] svanderburg pushed 1 new commit to master: https://git.io/vSCAZ
<NixOS_GitHub> nixpkgs/master 7408aca Sander van der Burg: Regenerate NPM expressions with node2nix 1.2.0
georges-duperon has quit [(Ping timeout: 240 seconds)]
<NixOS_GitHub> [nixpkgs] gilligan opened pull request #24511: skopeo: 0.1.16 -> 0.1.18 (master...update-skopeo) https://git.io/vSCAa
marsam has quit [(Remote host closed the connection)]
<mojjo> I know there was a function for this.. cannot remember the name.. it takes a path string of a directory, stores the contents in the nix store and returns the corresponding path to the store...
<NixOS_GitHub> [nixpkgs] svanderburg pushed 1 new commit to release-17.03: https://git.io/vSCxo
<NixOS_GitHub> nixpkgs/release-17.03 699a57d Sander van der Burg: Regenerate NPM expressions with node2nix 1.2.0
romildo has joined #nixos
nand0p has joined #nixos
romildo has left #nixos []
Itkovian has quit [(Quit: My MacBook has gone to sleep. ZZZzzz…)]
Tarinaky has quit [(Read error: Connection reset by peer)]
Itkovian has joined #nixos
justin_ has quit [(Ping timeout: 260 seconds)]
dridus has quit [(Ping timeout: 240 seconds)]
<NixOS_GitHub> [nixpkgs] svanderburg pushed 1 new commit to release-16.09: https://git.io/vSCpH
<NixOS_GitHub> nixpkgs/release-16.09 8b403e5 Sander van der Burg: Regenerate NPM expressions with node2nix 1.2.0
<NixOS_GitHub> [nixpkgs] Mic92 pushed 3 new commits to master: https://git.io/vSChv
<NixOS_GitHub> nixpkgs/master fb50abb Rahul Gopinath: vis: 2016-10-09 -> 0.3
<NixOS_GitHub> nixpkgs/master df4b6ae Jörg Thalheim: vis: use correct separator for LUA_CPATH/LUA_PATH
<NixOS_GitHub> nixpkgs/master a16c2e5 Jörg Thalheim: Merge pull request #24356 from vrthra/vis...
<ma9e> holy wow am i dumb
<ma9e> nix-channel --add https://nixos.org/channels/nixos-17.03 nixos
<ma9e> is all you need to do
<yumbox> no
<yumbox> nixos-unstable
<yumbox> ;)
xAFFE has joined #nixos
<gchristensen> yumbox: please don't confuse new users with the unstable branch
<yumbox> ;)
<yumbox> also, im a new user and im using unstable
marsam has joined #nixos
<NixOS_GitHub> [nixpkgs] Mic92 pushed 1 new commit to release-17.03: https://git.io/vSChz
<NixOS_GitHub> nixpkgs/release-17.03 897813e Jörg Thalheim: vis: use correct separator for LUA_CPATH/LUA_PATH...
<eacameron> tilpner: Wow!! Amazingly done!
<eacameron> Yes I'd be happy to test.
<tilpner> eacameron - Did you manage to use it for debugging? I'm getting some ECONNRESET when trying to debug C++
<tilpner> VS Code is. So. Much. Fun.
<eacameron> tilpner: I've not tried to use it for debugging.
<eacameron> tilpner: Not a fan, eh?
<tilpner> I might be more of a fan if it worked better, and I still don't know how to feel about the Microsoft factor, but it could be worse
gilligan_ has quit [(Quit: Leaving)]
<yumbox> qtcreator is nice for C++ too
georges-duperon has joined #nixos
marsam has quit [(Remote host closed the connection)]
<tilpner> eacameron - The fix was really small, steal it from https://git.io/vSCdL
Itkovian has quit [(Quit: My MacBook has gone to sleep. ZZZzzz…)]
eugo has quit [()]
<manveru> sooo, who else is excited about perlless nix?
<tilpner> eacameron - https://www.linkedin.com/pulse/fix-debug-adapter-process-has-terminated-unexpectedly-dmitry-sotnikov suggests it might be missing something about openssl, but I don't know how to debug that
<manveru> https://github.com/NixOS/nix/pull/1027 was merged today :D
RchrdB has quit [(Ping timeout: 260 seconds)]
<yumbox> manveru: im excited for working nix
<manveru> you'll get used to that :)
<yumbox> :*(
<manveru> nix is my rock in the sea of undeterministic software
<yumbox> it's not a rock
<yumbox> it's more like a sponge
<manveru> but it rocks
<yumbox> kek
<manveru> hehe
<yumbox> not yet
<yumbox> it's not user friendl
<yumbox> y
<manveru> indeed
<manveru> the nix UX rewrite is almost done too, i think
<yumbox> what's that?\
k2s has joined #nixos
RchrdB has joined #nixos
<gchristensen> yumbox: please don't be rude to people in the channel, if you need help, ask questions. if you're not getting answers, it doesn't justify rudeness.
<yumbox> huh?
<gchristensen> the majority of messages I've seen from you are somewhat trolling and rude
<yumbox> "majority"
<yumbox> you mean the last 20 messages?
Itkovian has joined #nixos
<yumbox> wait, 10 even
marsam has joined #nixos
<manveru> yumbox: if you set nix.package = pkgs.nixUnstable, you can try the new commandline
<yumbox> im trying to figure out what it does
<yumbox> oh, it's basically all nix* commands
<manveru> you can also read the issue above
<manveru> it explains most things
<yumbox> that's what I'm doing
<manveru> anw, dotatime, cu :)
<yumbox> that's what I meant with trying to figure out what it does, reading the github thing
<yumbox> nix search is a lot more intuitive than nix-env -qaP
<disasm> just curious, how many people here keep their dotfiles like wm config, vim, etc... in their home directory vs. declaring via nixos?
Itkovian has quit [(Quit: My MacBook has gone to sleep. ZZZzzz…)]
<yumbox> mostly in dotfiles
Itkovian has joined #nixos
<yumbox> for me
<disasm> manveru: I'm going out on a limb and saying that new command line isn't going to be part of the release today, right? :)
nevermind has quit [(Quit: Textual IRC Client: www.textualapp.com)]
<ma9e> yumbox, i thought your comment was funny and wasn't offended or confused at all
<yumbox> oh well, thanks :P
<ma9e> if yall want to see rude check out arch linux
<disasm> yumbox: yeah, I think I'm gonna revert the stuff I did yesterday and move them back to my home directory. When you create a new object in the nix store for WM configs, the reload config option doesn't work, because it's reloading the same config file in the nix store, which is slightly painful.
<yumbox> ma9e: oh definitely. it's one of the reasons I'm trying out nix. i used arch for years.
exarkun has joined #nixos
<yumbox> disasm: maybe it depends on if you change stuff in it often. if you dont change it often, maybe the store is a good place.
<exarkun> my nix build succeeds when I run it on my laptop. and when travis-ci runs it, it fails with a couple "Found duplicated packages in closure for dependency ..." errors.
<eacameron> tilpner: Fantastic! I'll try this out soon.
<exarkun> How can this be.
Itkovian has quit [(Quit: My MacBook has gone to sleep. ZZZzzz…)]
marsel has quit [(Ping timeout: 260 seconds)]
takle has quit [(Remote host closed the connection)]
proteus-guy has joined #nixos
proteusguy has quit [(Ping timeout: 260 seconds)]
<Mic92> Does somebody has a nixops configuration snippet for a google cloud freemium machine :) I could need a monitoring system for my server.
zeus_ has joined #nixos
deepfire has joined #nixos
zeus_ has quit [(Ping timeout: 246 seconds)]
Dr8128 has joined #nixos
civodul has joined #nixos
k2s has quit [(Ping timeout: 258 seconds)]
zeus_ has joined #nixos
cpennington has quit [(Remote host closed the connection)]
<demax> Hi! Is there a way to see all packages availbale on the specific channel?
<NixOS_GitHub> [nixpkgs] abbradar pushed 2 new commits to master: https://git.io/vSWkk
<NixOS_GitHub> nixpkgs/master d8c47a2 Nikolay Amiantov: mumble_git: wrap with Qt dependencies...
<NixOS_GitHub> nixpkgs/master 1eccb75 Nikolay Amiantov: mumble: patch python scripts
Itkovian has joined #nixos
takle_ has joined #nixos
<NixOS_GitHub> [nixpkgs] abbradar pushed 2 new commits to release-17.03: https://git.io/vSWk1
<NixOS_GitHub> nixpkgs/release-17.03 985a8f6 Nikolay Amiantov: mumble_git: wrap with Qt dependencies...
<NixOS_GitHub> nixpkgs/release-17.03 a552d8a Nikolay Amiantov: mumble: patch python scripts...
takle_ has quit [(Remote host closed the connection)]
takle has joined #nixos
mudri has joined #nixos
systemfault has joined #nixos
deepfire has quit [(Ping timeout: 256 seconds)]
xAFFE has quit [(Quit: Error from remote client)]
AllanEspinosa has quit [(Ping timeout: 260 seconds)]
AllanEspinosa has joined #nixos
Sonarpulse has quit [(Ping timeout: 246 seconds)]
Itkovian has quit [(Quit: My MacBook has gone to sleep. ZZZzzz…)]
Itkovian has joined #nixos
<NixOS_GitHub> [nixpkgs] Mic92 pushed 1 new commit to master: https://git.io/vSWqv
<NixOS_GitHub> nixpkgs/master 5793e12 Jörg Thalheim: baresip: enable vp8/vp9
DutchWolfie has quit [(Quit: Konversation terminated!)]
athan has quit [(Remote host closed the connection)]
<NixOS_GitHub> [nixpkgs] 7c6f434c pushed 1 new commit to master: https://git.io/vSWqw
<NixOS_GitHub> nixpkgs/master 1e7bad5 Michael Raskin: clwrapper, buildLispPackage: compile fasls and store them for all systems
Itkovian has quit [(Quit: My MacBook has gone to sleep. ZZZzzz…)]
Itkovian has joined #nixos
bennofs has joined #nixos
georges-duperon has quit [(Ping timeout: 240 seconds)]
justbeingglad has joined #nixos
justbeingglad has left #nixos []
<yumbox> would something like gobolinux provide the same features as nixos?
<Mic92> yumbox: nixos is the next level
<eacameron> tilpner: VS Code works great with your changes!
<yumbox> well, in nixos, the system is defined by a config file, right?
deepfire has joined #nixos
<tilpner> eacameron - You're on NixOS, right?
<eacameron> tilpner: Yah
<Mic92> yes.
<yumbox> and in gobolinux, the system is defined by programs in their install path, right?
<eacameron> tilpner: I run NixOS in a VM on macOS
<mbirkis> When i try to add digikam to my configuration.nix I get this message: "error: undefined variable 'digikam'"
<c74d> mbirkis: try pkgs.digikam
<tilpner> eacameron - Do you know if vs code works on macOS with nix?
<eacameron> tilpner: I've never tried it. I can though.
<Mic92> yumbox: I have not run it personally, but documentation looks alike.
<mbirkis> c74d: I have this: environment.systemPackages = with pkgs; [ digikam ];
RchrdB has quit [(Ping timeout: 246 seconds)]
<c74d> ah
<mbirkis> shouldn't that suffice
<NixOS_GitHub> [nixpkgs] drets opened pull request #24513: xkbset: init at 0.5 (master...xkbset) https://git.io/vSWYp
<eacameron> tilpner: Trying now.
<tilpner> eacameron - Does --help work with it?
<c74d> hm, <https://nixos.org/nixos/packages.html> claims that the attribute path of digikam is just "digikam" (i.e., `with pkgs; [ digikam ]` should indeed suffice)
<c74d> and it works for me in nix-repl
Itkovian has quit [(Quit: My MacBook has gone to sleep. ZZZzzz…)]
<eacameron> tilpner: Yep
<NixOS_GitHub> [nixpkgs] Mic92 closed pull request #24460: qsyncthingtray: fix program paths (master...f/qst) https://git.io/vSG6F
<c74d> mbirkis: what's your whole configuration.nix?
<mbirkis> c74d: one second
<tilpner> eacameron - Thanks for checking
<eacameron> tilpner: NP. Currently building on macOS
Itkovian has joined #nixos
avn has quit [(Read error: Connection reset by peer)]
<eacameron> tilpner: I wonder if your fix would address a different issue I found
<mbirkis> c74d: https://pastebin.com/8dFXGbC4 is my config
<tilpner> eacameron - What other issue?
<eacameron> tilpner: I originally installed vscode for two different users. If I installed extensions in one, then the other user was unable to install those same extensions. It would juts hang. It was odd.
Itkovian has quit [(Max SendQ exceeded)]
<eacameron> tilpner: I'm sure there was more to it but that was the symptom. I wouldn't be surprised if one user was using a root install of vscode or something and the other user ran into the issue you just fixed when trying to install extensions.
<eacameron> tilpner: Hey, it works on macOS too!
<eacameron> rock on!
<tilpner> eacameron - The user-data handling for root wasn't called before, and the CLI part may have done similar things. Both are called now, so that *should* work too
<eacameron> tilpner: Yah that's great news!
tokudan has quit [(Quit: Leaving)]
Itkovian has joined #nixos
<c74d> mbirkis: it works for me; the only thing I can think of is that you might be on an old version of NixOS that doesn't have the package?
<ashkitten> I'd like to be able to bind `loginctl lock-sessions` to a keyboard shortcut in X, however it requires interactive authentication. Is there any way to do this?
endformationage has quit [(Ping timeout: 240 seconds)]
AllanEspinosa has quit [(Ping timeout: 260 seconds)]
<mbirkis> c74d: Would changing the system.stateVersion = 17.03 be enough to be on the latest version?
<c74d> I don't think so
zraexy has quit [(Ping timeout: 268 seconds)]
<c74d> that doesn't determine what version you get packages from
<c74d> mbirkis: what does `nix-channel --list` say?
<c74d> (as root)
RchrdB has joined #nixos
<mbirkis> marius@nixos> sudo nix-channel --list ~
sellout- has joined #nixos
Itkovian has quit [(Quit: My MacBook has gone to sleep. ZZZzzz…)]
georges-duperon has joined #nixos
<c74d> it looks to me like digikam should be available in 16.09; so I don't know what the problem is
seanz has joined #nixos
<mbirkis> c74d: strange
seanz has quit [(Client Quit)]
<mbirkis> I will try to change to current stable channel and see if it helps
<mbirkis> c74d: after changing channels nixos-rebuild switch --upgrade, finished without complaining
<mbirkis> c74d: thank you for your help
<c74d> ah, okay, so it was that
Drakonis_ has joined #nixos
Itkovian has joined #nixos
schoppenhauer has quit [(Ping timeout: 255 seconds)]
froglegs1 has quit [(Ping timeout: 240 seconds)]
ndowens08 has joined #nixos
froglegs1 has joined #nixos
drasich has joined #nixos
<NixOS_GitHub> [nixpkgs] cleverca22 opened pull request #24514: multimc: 5 -> 0.5.1 (master...multimc) https://git.io/vSWnf
jgertm has quit [(Ping timeout: 260 seconds)]
deepfire has quit [(Ping timeout: 260 seconds)]
AllanEspinosa has joined #nixos
Itkovian has quit [(Quit: My MacBook has gone to sleep. ZZZzzz…)]
Itkovian has joined #nixos
__Sander__ has quit [(Quit: Konversation terminated!)]
<ndowens08> Hey
Itkovian has quit [(Client Quit)]
johnw_ has joined #nixos
schoppenhauer has joined #nixos
romildo has joined #nixos
hiratara has quit [(Ping timeout: 246 seconds)]
endformationage has joined #nixos
<yumbox> hi
hiratara has joined #nixos
<ashkitten> how can I create a new system-wide script?
<c74d> ashkitten: what kind of script?
Drakonis_ has quit [(Ping timeout: 256 seconds)]
<c74d> a script for the user to run? an init script?
<ashkitten> Just a wrapper script for `loginctl lock-sessions`
<ashkitten> I want to add it to the sudoers file so I don't have to use authentication in order to lock the sessions
Drakonis_ has joined #nixos
<c74d> ashkitten: `pkgs.writeScriptBin "name-of-script" "loginctl lock-sessions"` should evaluate to a package containing just that script
<ashkitten> Cool.
<c74d> with the file being named name-of-script
<c74d> and then you can put that in environment.systemPackages
<ashkitten> How do I reference that script from the sudoers extraConfig?
<c74d> ashkitten: the path of the executable file will be "${s}/bin/name-of-script" where `s` is the expression I wrote above
MarcWeber has quit [(Remote host closed the connection)]
<c74d> (you should likely assign it to a variable)
<c74d> and the user will invoke it at the command-line as just `name-of-script`
<ashkitten> ok, i'm not very familiar with the nix expression language. how do i assign a variable in configuration.nix?
Sonarpulse has joined #nixos
<c74d> the basic way is the `let` expression: <https://nixos.org/nix/manual/#idm140737318074560>
<c74d> you can start a module with a block of variable definitions like `{ config, lib, pkgs, ... }: let x = 5; y = "foo"; in { ... }`
<c74d> and then those variables can be used anywhere in the rest of the module
<c74d> (configuration.nix is a "module")
<ashkitten> oki
<NixOS_GitHub> [nixpkgs] joachifm pushed 1 new commit to master: https://git.io/vSWWe
<NixOS_GitHub> nixpkgs/master a41668f Joachim Fasting: grsecurity: 4.9.19-201703300917 -> 4.9.20-201703310823
deepfire has joined #nixos
<c74d> ashkitten: the normal way to define new packages is to put each in its own file, and reference it with `import ./pkgs/foo.nix` or `callPackage ./pkgs/foo.nix`, but for such a simple package I don't think that added complication is necessary
<ashkitten> yeah probably
bennofs has quit [(Ping timeout: 264 seconds)]
chakerbenhamed has joined #nixos
ilyaigpetrov has quit [(Quit: Connection closed for inactivity)]
romildo has left #nixos ["Leaving"]
jmsb has joined #nixos
thc202 has quit [(Ping timeout: 260 seconds)]
<NixOS_GitHub> [nixpkgs] joachifm pushed 4 new commits to release-17.03: https://git.io/vSWlu
<NixOS_GitHub> nixpkgs/release-17.03 498db7d Maximilian Bosch: geogebra: 5-0-346-0 -> 5-0-350-0...
<NixOS_GitHub> nixpkgs/release-17.03 bf95571 romildo: gnustep.back: add runtime dependency on libXmu...
<NixOS_GitHub> nixpkgs/release-17.03 b5616cf romildo: gworkspace: 0.9.3 -> 0.9.4...
hiratara has quit [(Quit: ZNC - http://znc.in)]
hiratara has joined #nixos
eacameron has quit [(Remote host closed the connection)]
<ashkitten> c74d: just had to go eat, but i'm back now. still working on this. how do I reference the actual path of the script as a user?
<c74d> hm
<c74d> ashkitten: from a basic shell environment, or from some Nix configuration file?
<ashkitten> if I echo $(which lock-sessions), it gives me /run/current-system/sw/bin/lock-sessions
<ashkitten> basic shell environment
<c74d> is this Bash or zsh (or something more exotic)?
<ashkitten> It's in a script with a nix-shell shebang if that helps
<ashkitten> bash
<c74d> ashkitten: "$(readlink "$(which lock-sessions)")"
<ashkitten> oh cool thanks
<exarkun> is there a https://nixos.org/nix/install but for specific older releases?
<clever> exarkun: you could just change the channel afterwards and nix-env -iA nixpkgs.nix to install the older nix
mw has quit [(Ping timeout: 240 seconds)]
<clever> exarkun: as long as the db.sqlite can downgrade cleanly
civodul has quit [(Quit: ERC (IRC client for Emacs 25.1.1))]
<exarkun> hmm I wonder what channel I had before that was working :/
johnw_ has quit [(Quit: My MacBook has gone to sleep. ZZZzzz…)]
<exarkun> what would https://nixos.org/nix/install have been setting up last month? 16.09?
johnw_ has joined #nixos
johnw_ has quit [(Client Quit)]
<Havvy> Is there a list of breaking changes?
<Havvy> Found it.
Drakonis_ is now known as Drakonis
ambro718 has quit [(Ping timeout: 240 seconds)]
chakerbenhamed has quit [(Ping timeout: 256 seconds)]
eacameron has joined #nixos
sellout- has quit [(Quit: Leaving.)]
<NixOS_GitHub> [nixpkgs] Zimmi48 opened pull request #24515: [doc] remove indentation (master...doc-remove-indentation) https://git.io/vSWRX
ma9e has quit [(Remote host closed the connection)]
markus1209 has joined #nixos
markus1219 has joined #nixos
markus1189 has quit [(Ping timeout: 240 seconds)]
markus1199 has quit [(Ping timeout: 260 seconds)]
<NixOS_GitHub> [nixpkgs] primeos opened pull request #24516: [WIP] sks-module: init (master...sks-module) https://git.io/vSWES
<YellowOnion> how do I turn off firewall logging?
erasmas has quit [(Quit: leaving)]
<YellowOnion> my logs are filled with rejected connection.
stukj has joined #nixos
<Drakonis> which firewall
<stukj> hello all. how to enable bitblee with liburple support?
georges-duperon has quit [(Ping timeout: 240 seconds)]
marsam has quit [(Remote host closed the connection)]
<YellowOnion> Drakonis, just the built in firewall
<Drakonis> that is unhelpful
<Drakonis> there's no built in firewall in the kernel
<simpson> YellowOnion: networking.firewall.logRefusedConnections
<YellowOnion> simpson, thanks!
<simpson> YellowOnion: Do $(man configuration.nix) and scroll down to networking.firewall; there's a bunch of logging flags.
jmiven has quit [(Quit: co'o)]
<YellowOnion> simpson, I'm so use to archlinux wiki that I forget man files exist lol
<simpson> Drakonis: Presumably when folks are asking, they're asking about the standard networking.firewall configuration block in configuration.nix.
<Drakonis> hmmm
<Drakonis> i see
<simpson> YellowOnion: No worries.
<Ralith> which is, in fact, backed by the built-in kernel firewall, configured via iptables :P
<Drakonis> ah yes
<Drakonis> iptable
jmiven has joined #nixos
<Ralith> the proper name of the tool is iptables
<Drakonis> yes i'm aware of that
<Drakonis> iptables
<Drakonis> if only we had pf
<simpson> Patches welcome.
<Drakonis> its not even available on linux
Wizek_ has quit [(Ping timeout: 240 seconds)]
<Drakonis> its available for basically everyone except linux
orivej has joined #nixos
<simpson> I could go search for "pf windows", but honestly I don't care. My machines at home are Linux. My machines at my side business are Linux. My last three day jobs have all been 100% Linux in production.
Dr8128 has quit [(Quit: Leaving.)]
<Drakonis> pf's on bsds and mac
Dr8128 has joined #nixos
<Drakonis> not even a windows thing
<simpson> Yeah, that was kind of my point. Anyway, I mean it when I say that patches to improve Nix on BSD are welcome.
jsgrant has quit [(Remote host closed the connection)]
byteflame has quit [(Ping timeout: 264 seconds)]
<orivej> I can not install pkgs.pythonFull.withPackages with "flake8" and "ipython" in the current NixOS unstable at the same time: python-2.7.13-env.drv can not be built due to collision between `/nix/store/12kp93bhx28ii1713p3xz9g0naz1hd3k-python2.7-configparser-3.5.0/lib/python2.7/site-packages/backports/__init__.py' and `/nix/store/nn8chrxk6dk2k6css8x7v171ry8kw6js-python2.7-backports.shutil_get_terminal_size-1.0.0/lib/python2.7/site-packages/backports/
<orivej> __init__.py'
jsgrant has joined #nixos
<Drakonis> simpson, if the folks that forked nix to make a bsd only version didn't do that
<simpson> Drakonis: We can't control what others do, only ourselves. Be the change you want to see in the code.
<Drakonis> aye
mojjo has quit [(Ping timeout: 260 seconds)]
Dr8128 has quit [(Ping timeout: 258 seconds)]