Re: [Nix-dev] NixOS on systemd

2012-09-24 Thread Peter Simons
Has anyone managed to run systemd on Linux/i686? I've tried that on my EeePC 1000H (after fixing some trivial build problems), but the systemd daemon segfaults during the boot process. Peter ___ nix-dev mailing list nix-dev@lists.science.uu.nl

Re: [Nix-dev] NixOS on systemd

2012-09-17 Thread Eelco Dolstra
Hi, On 31/08/12 08:26, Shea Levy wrote: One issue I've found so far: hardware.bluetooth.enable=true installs the udev rules to start bluetoothd on bluetooth events, but even though bt-usb is loaded by udev I have to start bluetoothd manually now (before it was automatic). Just saw this

Re: [Nix-dev] NixOS on systemd

2012-09-13 Thread Marc Weber
Hi Eelco, Would you mind listening the advantages causing you to propose the switch one day? If there are strong reasons I'll try to help fix remaining bugs. Marc Weber ___ nix-dev mailing list nix-dev@lists.science.uu.nl

Re: [Nix-dev] NixOS on systemd

2012-09-13 Thread Marc Weber
Excerpts from Marc Weber's message of Thu Sep 13 16:14:20 +0200 2012: Would you mind listening the advantages causing you to propose the sorry - I meant listing. Should have been clear from context though. Marc Weber ___ nix-dev mailing list

Re: [Nix-dev] NixOS on systemd

2012-09-12 Thread Eelco Dolstra
Hi, On 11/09/12 16:07, Mathijs Kwik wrote: To reply to myself: loginctl list-users and list-sessions don't show any users or sessions. As I run a custom X11 env (auto.enable, no dm, just .xsession), I think I somehow need to register a session with systemd. Aha, that explains it. We need

Re: [Nix-dev] NixOS on systemd

2012-09-11 Thread Eelco Dolstra
Hi, On 05/09/12 15:59, Mathijs Kwik wrote: Apart from a bunch of services that I need to change to proper units, my main issue has to do with a tmpfs on /tmp. In configuration.nix, fileSystems contains: { mountPoint = /tmp; device = tmpfs; fsType = tmpfs; options =

Re: [Nix-dev] NixOS on systemd

2012-09-11 Thread Mathijs Kwik
On Thu, Aug 30, 2012 at 8:51 PM, Eelco Dolstra eelco.dols...@logicblox.com wrote: * ConsoleKit is gone. Its role has been taken over by logind. Use loginctl to manage user sessions. Every user session runs in a separate cgroup (see systemd-cgls and systemd-cgtop for a nice view). In the

Re: [Nix-dev] NixOS on systemd

2012-09-11 Thread Eelco Dolstra
Hi, On 11/09/12 13:20, Mathijs Kwik wrote: In the past, ACLs were used on the nodes in /dev, to automatically allow access to some devices when a user logs in on the physical console. I believe this was done by ConsoleKit. Right now, I don't have sound anymore (need to add myself to audio),

Re: [Nix-dev] NixOS on systemd

2012-09-05 Thread Mathijs Kwik
Hi Eelco, Apart from a bunch of services that I need to change to proper units, my main issue has to do with a tmpfs on /tmp. In configuration.nix, fileSystems contains: { mountPoint = /tmp; device = tmpfs; fsType = tmpfs; options = size=10g,mode=1777; } Booting with

Re: [Nix-dev] NixOS on systemd

2012-09-02 Thread Lluís Batlle i Rossell
On Thu, Aug 30, 2012 at 02:51:14PM -0400, Eelco Dolstra wrote: For the last few months I've been working on and off on replacing Upstart with systemd as NixOS's init system. This is now in a fairly usable state. (I'm running it on my own laptop, but it hasn't been widely tested and there are

Re: [Nix-dev] NixOS on systemd

2012-08-31 Thread Rickard Nilsson
Hi, Den 2012-08-30 20:51:14 skrev Eelco Dolstra eelco.dols...@logicblox.com: Hi all, For the last few months I've been working on and off on replacing Upstart with systemd as NixOS's init system. This is now in a fairly usable state. (I'm running it on my own laptop, but it hasn't

Re: [Nix-dev] NixOS on systemd

2012-08-30 Thread Bjørn Forsman
tested and there are undoubtedly many issues remaining.) If you want to test it, do: $ git clone -b systemd git://github.com/edolstra/nixos.git nixos-systemd $ nixos-rebuild switch -I nixos=/path/to/nixos-systemd $ reboot Awesome :-) ___ nix-dev