Re: [Nix-dev] How do you manage bare-metal local servers with nixops

2015-12-14 Thread zimbatm
Rohit, try something like this: https://gist.github.com/zimbatm/d466ef56f88605f78f99 On Mon, 14 Dec 2015 at 22:47 Domen Kožar wrote: > You might want to test https://github.com/NixOS/nixpkgs/pull/11279 > > On Mon, Dec 14, 2015 at 10:45 PM, rohit yadav >

Re: [Nix-dev] builder for ‘*.drv’ failed to produce output path ‘*’

2015-12-14 Thread Tinker
Thanks, that worked. If I install it now and run `pgloader` I am getting (somewhere in sbcl): Error opening shared object "libsqlite3.so.0":... It works if I manually set the LD_LIBRARY_PATH export LD_LIBRARY_PATH=

Re: [Nix-dev] Which is the best way to reload all network configurations? (dhcpclient etc)

2015-12-14 Thread Oliver Charles
Does systemctl restart network.target work? On Thu, Dec 10, 2015 at 10:21 AM Marco Maggesi wrote: > Hi, > > I'm not confident with the systemd infrastructure. > > Which is the best way to shutdown/restart/reload the whole network > infrastructure? > (interfaces,

Re: [Nix-dev] Regarding the unstable channel

2015-12-14 Thread Eelco Dolstra
Hi, On 14/12/15 14:53, Eric Sagnes wrote: > I am using the unstable channel and recently encoutered some issues to update > the system with `nixos-rebuild`, to list a few: > > - flashplayer source not found (PR #11675) > - udevil not building (PR #11702) > - signing-party source not found (PR

[Nix-dev] ZFS on TMP and dealing with missing mode mount option

2015-12-14 Thread Roger Qiu
Hi, ZFS doesn't have a mode option during mounting. See: https://github.com/zfsonlinux/zfs/issues/4101 If I need a filesystem mounted with 1777 permissions and sticky bit on boot, how can do that with ZFS and the NixOS fileSystems settings? The fileSystems settings has no option to run a post

Re: [Nix-dev] ZFS on TMP and dealing with missing mode mount option

2015-12-14 Thread Alexander Zubkov
The mode is not mount option, but permissions configured on filesystem's folder. You should mount needed filesystem to /tmp or somewhere else, do chown on that and then it will be written and saved on filesystem and should persist on remounting. On 14.12.2015 16:31, Roger Qiu wrote: > Hi, > >

[Nix-dev] Regarding the unstable channel

2015-12-14 Thread Eric Sagnes
Hi, I am using the unstable channel and recently encoutered some issues to update the system with `nixos-rebuild`, to list a few: - flashplayer source not found (PR #11675) - udevil not building (PR #11702) - signing-party source not found (PR #11703) All these issues have in common that the

Re: [Nix-dev] How do you manage bare-metal local servers with nixops

2015-12-14 Thread zimbatm
Hi rohit, Personally I just have a folder per machine with the /etc/nixos folder and a little script that runs rsync + `nixos-rebuild --switch` on the target machine. Over time I will probably switch to using nixops as well but for a start it's working super well for me. Especially since it

Re: [Nix-dev] [call for] Release manager for Hydra

2015-12-14 Thread Domen Kožar
Thanks Christian and Aszlig, I'll talk to you on IRC in a couple of days. On Sat, Dec 12, 2015 at 12:56 AM, Joachim Schiele wrote: > nice to hear that you want to do this. > > i've added a documentation about the setup process in the wiki, it can > be found here: > >

Re: [Nix-dev] How do you manage bare-metal local servers with nixops

2015-12-14 Thread rohit yadav
Hi Zimbatm, I have very similar arrangement. I use git and to keep the configuration synced. However, I wish to use NixOps, I haven't been able to find time to do that. From the documentation I could not figure out how to deploy on bare-metal. But as Christoph mentioned that a simple Ip-Address

Re: [Nix-dev] How do you manage bare-metal local servers with nixops

2015-12-14 Thread Domen Kožar
You might want to test https://github.com/NixOS/nixpkgs/pull/11279 On Mon, Dec 14, 2015 at 10:45 PM, rohit yadav wrote: > Hi Zimbatm, > > I have very similar arrangement. I use git and to keep the configuration > synced. However, I wish to use NixOps, I haven't been