about summary refs log tree commit diff
path: root/nixos
Commit message (Collapse)AuthorAge
* Merge pull request #2375 from lethalman/gnome3lethalman2014-05-13
|\ | | | | gtkhtml, evolution, gnome-photos, gnome-clocks, zeitgeist, bijiben
| * bijiben: new packageLuca Bruno2014-05-02
| | | | | | | | | | | | Note editor designed to remain simple to use https://wiki.gnome.org/Apps/Bijiben
| * gnome-clocks: new packageLuca Bruno2014-05-02
| | | | | | | | | | | | Clock application designed for GNOME 3 https://wiki.gnome.org/Apps/Clocks
| * geoclue2: add dbus serviceLuca Bruno2014-05-02
| |
| * gnome-photos: new packageLuca Bruno2014-05-02
| | | | | | | | | | | | Photos is an application to access, organize and share your photos with GNOME 3 https://wiki.gnome.org/Apps/Photos
| * evolution: new packageLuca Bruno2014-05-02
| | | | | | | | | | | | | | Personal information management application that provides integrated mail, calendaring and address book functionality https://wiki.gnome.org/Apps/Evolution
* | resolve issue #2308Corey O'Connor2014-05-13
| |
* | dhcpcd: Allow adding hook codeWout Mertens2014-05-12
| |
* | Set console=ttyS0 for Amazon EC2 instances, as suggested by Amazon.Rob Vermaas2014-05-12
| |
* | nixos: f2fs filesystem module support (close #2085)Emery Hemingway2014-05-11
| |
* | Merge pull request #2497 from aristidb/sudo_terminfomornfall2014-05-10
|\ \ | | | | | | sudo: env_keep TERMINFO for urxvt
| * | sudo: env_keep TERMINFO for urxvtAristid Breitkreuz2014-05-04
| | |
* | | When auto-formatting ext devices, use the -F flag to make it work with ↵Rickard Nilsson2014-05-09
| | | | | | | | | | | | unpartioned disks
* | | nixos-container: Ensure umask 022Eelco Dolstra2014-05-09
| | | | | | | | | | | | Fixes #2585.
* | | nixos-install: Run in a separate UTS namespaceEelco Dolstra2014-05-09
| | | | | | | | | | | | This prevents the activation script from clobbering our hostname.
* | | /var/run -> /runEelco Dolstra2014-05-09
| | |
* | | nixos-install: Don't bind-mount all of /etcEelco Dolstra2014-05-09
| | | | | | | | | | | | | | | We only need a copy of /etc/resolv.conf for networking, and /etc/{passwd,group} for building.
* | | nixos-install: Add operation --chrootEelco Dolstra2014-05-09
| | | | | | | | | | | | | | | | | | "nixos-install --chroot" runs a command (by default a login shell) in a chroot inside the NixOS installation in /mnt. This might useful for poking around a new installation.
* | | nixos-install: Ask the user to set a root passwordEelco Dolstra2014-05-09
| | | | | | | | | | | | This removes the need to have an initially empty root password.
* | | nixos-install: Don't copy the bootstrap Nix if it's already thereEelco Dolstra2014-05-09
| | | | | | | | | | | | This makes re-running nixos-install a bit faster.
* | | nixos-install: Assume the build user group is "nixbld"Eelco Dolstra2014-05-09
| | | | | | | | | | | | The build user group is always "nixbld", so no need to detect it.
* | | nixos-install: Run in a private mount namespaceEelco Dolstra2014-05-09
| | | | | | | | | | | | This ensures that all mounts are automatically cleaned up.
* | | nixos-install: Don't pass --show-trace by defaultEelco Dolstra2014-05-09
| | |
* | | nixos-generator-config: Don't emit a double / in bind mountsEelco Dolstra2014-05-09
| | |
* | | nixos-generate-config: Don't include /var/setuid-wrappersEelco Dolstra2014-05-09
| | |
* | | nixos-generate-config: Use stable device paths (e.g. /dev/disk/by-uuid/X)Eelco Dolstra2014-05-09
| | |
* | | Don't enable the NVIDIA driver by default because it's unfreeEelco Dolstra2014-05-09
| | |
* | | nixos-generate-config.pl: add new PCI IDs for broadcom_staVladimír Čunát2014-05-08
| | | | | | | | | | | | | | | The last ID wasn't in official README, but it was reported by third3ye on IRC.
* | | Fix incorrect commentEelco Dolstra2014-05-08
| | |
* | | Installer test: Increase amount of RAMEelco Dolstra2014-05-07
| | | | | | | | | | | | | | | | | | On x86_64, 384 MB is not enough anymore for running "nix-env -i". http://hydra.nixos.org/build/10865007
* | | Containers: Support setting up macvlan interfacesEelco Dolstra2014-05-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | By setting a line like MACVLANS="eno1" in /etc/containers/<name>.conf, the container will get an Ethernet interface named mv-eno1, which represents an additional MAC address on the physical eno1 interface. Thus the container has direct access to the physical network. You can specify multiple interfaces in MACVLANS. Unfortunately, you can't do this with wireless interfaces. Note that dhcpcd is disabled in containers by default, so you'll probably want to set networking.useDHCP = true; in the container, or configure a static IP address. To do: add a containers.* option for this, and a flag for "nixos-container create".
* | | Containers: Use systemd-nspawn's --network-veth flagEelco Dolstra2014-05-07
| | | | | | | | | | | | | | | Note that this causes the name of the host-side interface to change from c-<name> to ve-<name>.
* | | Containers: Use systemd-nspawn's --keep-unit flagEelco Dolstra2014-05-07
| | | | | | | | | | | | This gets rid of some redundant scopes/slices.
* | | Don't run hwclock if /dev/rtc doesn't existEelco Dolstra2014-05-05
| | | | | | | | | | | | | | | | | | E.g. on EC2 instances. Backport: 14.04
* | | Don't start getty@tty1 on headless machines (like EC2)Eelco Dolstra2014-05-05
| | | | | | | | | | | | Backport: 14.04
* | | switch-to-configuration: Honour RefuseManualStopEelco Dolstra2014-05-05
| | | | | | | | | | | | | | | | | | This prevents spurious errors about systemd-tmpfiles-setup.service. Backport: 14.04
* | | Fix users.*.extraGroups for users.mutableUsers = true.Rob Vermaas2014-05-05
|/ / | | | | | | (cherry picked from commit eb222923054fdc895ab73ff5d0260c1e1fc689c7)
* | On my system OpenGL with bumblebee seems to require libudev in ↵Michael Raskin2014-05-02
| | | | | | | | LD_LIBRARY_PATH. Fix that, fix bumblebee module loading and make the socket group configurable
* | nixos: overhaul datadog moduleAustin Seipp2014-05-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This overhauls the Datadog module a bit to be much more useful. In particular, it adds support for nginx and postgresql monitoring integrations to dd-agent. These have to exist in separate files under /etc/dd-agent, so the module just exposes then as separate options. In the future, more integrations could be added this way. In the process of doing this, I also had to rename the dd-agent user to datadog. Note the UIDs did not change, so this is strictly backwards compatible. The reason for this is to make it easier to create a 'datadog' postgres user with access to pg_stats, as 'dd-agent' typically isn't a valid username. This allows the out of the box configurations to be used. Signed-off-by: Austin Seipp <aseipp@pobox.com>
* | btsync: Default to no login/password for the Web UIAustin Seipp2014-05-02
| | | | | | | | Signed-off-by: Austin Seipp <aseipp@pobox.com>
* | btsync: remove unneeded assertionAustin Seipp2014-05-01
| | | | | | | | Signed-off-by: Austin Seipp <aseipp@pobox.com>
* | Merge pull request #2467 from lethalman/release-notesDomen Kožar2014-05-01
|\ \ | | | | | | Added gnome 3.10 to the release notes
| * | Added gnome 3.10 to the release notesLuca Bruno2014-05-01
| |/
* | grub: Allow setting the boot root explicitlyShea Levy2014-05-01
| | | | | | | | | | | | If /boot is a btrfs subvolume, it will be on a different device than / but not be at the root from grub's perspective. This should be fixed in a nicer way by #2449, but that can't go into 14.04.
* | Mark builds from git explicitlyEelco Dolstra2014-05-01
| |
* | release.nix: Drop officialRelease flagEelco Dolstra2014-05-01
|/
* Disable the rabbitmq testEelco Dolstra2014-04-30
| | | | | It frequently gets stuck in an infinite loop, delaying releases for many hours.
* Set release dateEelco Dolstra2014-04-30
|
* qemu-guest.nix: Load virtio_rngEelco Dolstra2014-04-30
| | | | | This allows the guest to have a paravirtualized RNG, if the host provides it.
* Don't make the EFI tests release-criticalEelco Dolstra2014-04-30
| | | | They're failing on i686: http://hydra.nixos.org/build/10712961