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, > >

Re: [Nix-dev] NixOS 15.09 released

2015-10-03 Thread Alexander Zubkov
Several days ago I found that PID 1 on my system permanently eats 30% of CPU by actively polling something. This is also somehow lead to some error when I have tried to do nixos-rebuild switch. I typed reboot and lost my machine. I found it powered off instead of rebooted when I reached it

Re: [Nix-dev] Why did my SSH host keys change?

2015-08-04 Thread Alexander Zubkov
It does not change. But different key type is selected when connecting to the server. In this case ssh client shows that it is different key. You can see that ED25519 key is selected, but in your known_hosts there is ECDSA key saved. On 08/04/2015 09:32 PM, James Cook wrote: Over the past

Re: [Nix-dev] Is systemd a benefit or a liability?

2014-10-19 Thread Alexander Zubkov
And do not forget uselessd: https://wiki.int.qrator.net/wiki/DevOps/Solutions/JuniperIpipBgp :) On 10/19/2014 02:21 PM, Shell Turner wrote: On 19 October 2014 10:48, Peter Simons sim...@cryp.to wrote: Hi guys, If you have systemd installed, then half of your Unix ecosystem is locked into one

Re: [Nix-dev] Is systemd a benefit or a liability?

2014-10-19 Thread Alexander Zubkov
Sorry, copy-pasted the wrong link: http://uselessd.darknedgy.net/ On 10/19/2014 02:42 PM, Luca Bruno wrote: My reason for using systemd compared to nosh, uselessd, sysvinit, openrc or whatelse is that it's integrated with the event system (udev). That is the real advantage of systemd and you

Re: [Nix-dev] Is systemd a benefit or a liability?

2014-10-19 Thread Alexander Zubkov
. On Sun, Oct 19, 2014 at 12:54 PM, Alexander Zubkov gr...@msu.ru wrote: Sorry, copy-pasted the wrong link: http://uselessd.darknedgy.net/ On 10/19/2014 02:42 PM, Luca Bruno wrote: My reason for using systemd compared to nosh, uselessd, sysvinit, openrc or whatelse is that it's integrated

Re: [Nix-dev] Nix OS installation problems - Where's the hard drive?

2014-10-14 Thread Alexander Zubkov
Yes, the system nixos tree is RO. I think you should make a whole copy of it to your place from system's tree or from github: git clone https://github.com/NixOS/nixpkgs.git Then made your changes there and use release.nix from there for nix-build. On 10/14/2014 07:29 AM, Joseph Joe wrote:

Re: [Nix-dev] Nix OS installation problems - Where's the hard drive?

2014-10-11 Thread Alexander Zubkov
There was a typo, I think. It should be: /nix/store/*/nixos/nixos/release.nix I also usually find this directory using ~/.nix-defepr Also, I think that using nix-build with this release.nix is not enough, you should copy it and make there some changes to embed your kernel configuration. Because

Re: [Nix-dev] Nix OS installation problems - Where's the hard drive?

2014-10-07 Thread Alexander Zubkov
overwrite kernel file, for example, but modules embedded into live filesystem will be much harder to replace. On Sun, Oct 5, 2014 at 3:49 AM, Alexander Zubkov gr...@msu.ru wrote: I think, you can also try to build custom bootable image with changed kernel: https://nixos.org/wiki

Re: [Nix-dev] Nix OS installation problems - Where's the hard drive?

2014-10-05 Thread Alexander Zubkov
I think, you can also try to build custom bootable image with changed kernel: https://nixos.org/wiki/Creating_a_NixOS_live_CD There is also one more option to change kernel compilation parameters, described in wiki: https://nixos.org/wiki/How_to_tweak_Linux_kernel_config_options This variant is

Re: [Nix-dev] Nix OS installation problems - Where's the hard drive?

2014-10-03 Thread Alexander Zubkov
lspci -k will be helpful too. I think the problem is in controller's driver module is not loaded for some reason. On 10/03/2014 11:08 AM, Wout Mertens wrote: What does dmesg say, and what is in /proc/partitions? Also, what kind of hard disk do you have, simple SATA? Wout. On Oct 3, 2014

Re: [Nix-dev] Nix OS installation problems - Where's the hard drive?

2014-10-03 Thread Alexander Zubkov
I think here is the problem (from nixos dmesg): [ 11.494753] sas: ATA device seen but CONFIG_SCSI_SAS_ATA=N so cannot attach Kernel option is missing. On nixos: $ zgrep CONFIG_SCSI_SAS_ATA /proc/config.gz # CONFIG_SCSI_SAS_ATA is not set On Ubuntu 12.04: # grep CONFIG_SCSI_SAS_ATA

Re: [Nix-dev] Nix OS installation problems - Where's the hard drive?

2014-10-03 Thread Alexander Zubkov
/2014 01:39 AM, Alexander Zubkov wrote: I think here is the problem (from nixos dmesg): [ 11.494753] sas: ATA device seen but CONFIG_SCSI_SAS_ATA=N so cannot attach Kernel option is missing. On nixos: $ zgrep CONFIG_SCSI_SAS_ATA /proc/config.gz # CONFIG_SCSI_SAS_ATA is not set On Ubuntu

[Nix-dev] skype4pidgin

2014-09-23 Thread Alexander Zubkov
Hi. Is somebody using skype4pidgin? I'm using unstable channel, installed pidgin, skype4pidgin. But pidgin do not see this plugin. If I run it with debug option: pidgin -d, I see that it only tries for plugins in its own directory. For example: (01:42:37) plugins: probing

Re: [Nix-dev] skype4pidgin

2014-09-23 Thread Alexander Zubkov
; On 09/24/2014 01:52 AM, Lluís Batlle i Rossell wrote: I never made it install well. I always used it (long ago!) by symlinking to its shared object in the home directory for plugins (~/.purple-2/plugins? I don't remember) Regards, Lluís On Wed, Sep 24, 2014 at 01:49:17AM +0400, Alexander

Re: [Nix-dev] systemd in the long run: Revisiting How We Put Together Linux Systems (it's almost Nix...)

2014-09-02 Thread Alexander Zubkov
On 2014-09-02 14:06, Luca Bruno wrote: On 02/09/2014 12:02, Alexei Robyn wrote: Unless I'm missing something, Lennart's only response to you was: we actually try to do our homework before we propose something. We looked at a variety of systems, and not just on Linux ones, but also what MacOS,

[Nix-dev] gvim under nixos

2014-07-24 Thread Alexander Zubkov
be default. -- Alexander Zubkov ___ nix-dev mailing list nix-dev@lists.science.uu.nl http://lists.science.uu.nl/mailman/listinfo/nix-dev

Re: [Nix-dev] gvim under nixos

2014-07-24 Thread Alexander Zubkov
Thank you. That helped. Wat is the case with vim*Wrapper? It seting console interface by default in some of .vimrc-s? On 2014-07-24 17:38, Paul Colomiets wrote: Hi Alexander, On Thu, Jul 24, 2014 at 3:41 PM, Alexander Zubkov gr...@msu.ru wrote: Hello. I have some strange problem. When I run