Eelco Dolstra
5c1f8cbc70
Move all of NixOS to nixos/ in preparation of the repository merge
10 years ago
Shea Levy
6070bc016b
nixos-option --install: Use gummiboot if we're efi-booted
Signed-off-by: Shea Levy <shea@shealevy.com>
10 years ago
Shea Levy
9a008dc4fd
Add test for efi installation
Signed-off-by: Shea Levy <shea@shealevy.com>
10 years ago
Shea Levy
7f5e4f5eb8
Update efi install cd
Signed-off-by: Shea Levy <shea@shealevy.com>
10 years ago
Eelco Dolstra
596a7cbb6d
Improve the vboxnet0 service
10 years ago
Eelco Dolstra
e5bcb378fa
Add support for multiple system profiles
‘nixos-rebuild’ now accepts an argument ‘--profile-name’ (or ‘-p’),
denoting the name of a system profile to use. The default is
‘system’, which maps to /nix/var/nix/profiles/system. Any other value
maps to /nix/var/nix/profiles/system-profiles/<name>. The GRUB menu
generator makes all system profiles available as submenus. For
instance, doing
$ nixos-rebuild boot -p test
will cause a menu named ‘NixOS - Profile 'test'’ to be added to the
GRUB boot menu, leaving the default system profile unaffected.
This is only supported for GRUB 2.
10 years ago
Eelco Dolstra
08f8d9507a
Load ext2/ext3/ext on demand in the initrd
10 years ago
Eelco Dolstra
05d2d19311
Load LUKS-related kernel modules on demand
10 years ago
Eelco Dolstra
de579ba40b
Manual: icecat -> firefox
10 years ago
Eelco Dolstra
58fbf0f18b
Fix eval error
10 years ago
Eelco Dolstra
36079454e5
Make it easier to define timer units for services
Systemd services now have a startAt attribute. If set, NixOS will
automatically emit a timer unit that causes the service to start at
the specified time. For example:
systemd.services.foo =
{ script = "... bla bla ...";
startAt = "02:15";
};
causes the given script to be started at 02:15 every day.
10 years ago
Eelco Dolstra
87bea0b09e
Add more video drivers to the VM image
This might allow it to work in VMware and QEMU.
10 years ago
Eelco Dolstra
3472992188
Only start the VirtualBox guest services if we're in a VirtualBox VM
10 years ago
Eelco Dolstra
d40629ad6d
Add the demo user to the vboxsf group to allow mounting of shared folders
10 years ago
Eelco Dolstra
04ca15d840
Don't expand paths during VirtualBox image generation
10 years ago
Evgeny Egorochkin
3767eecd99
kde4: install mysql by default since it's used by akonadi
10 years ago
Eelco Dolstra
687e0059d5
Generate a VirtualBox appliance (in OVF format) instead of a disk image
10 years ago
Eelco Dolstra
5c17d7d2a6
Lack of laziness strikes again...
10 years ago
Eelco Dolstra
a8fa59aa73
Amazon's pv-grub is GRUB 1
10 years ago
Eelco Dolstra
316326e4e6
Give the VDI generator more memory
These out of memory conditions are highly unpredictable, which is very
annoying.
http://hydra.nixos.org/build/6411393
10 years ago
Eelco Dolstra
3ba15358bc
Make GRUB 2 the default
Fixes #269 .
10 years ago
Eelco Dolstra
8ec44f343d
Add some missing option types
10 years ago
Eelco Dolstra
7459f6fa38
Disallow Memtest86+ with GRUB 1
The GRUB entry as given is syntactically invalid.
10 years ago
Domen Kožar
84926ae0db
Merge pull request #270 from aristidb/master
Add simple rsnapshot module
10 years ago
Aristid Breitkreuz
5e07af062d
rsnapshot: do not use /etc/rsnapshot.conf
10 years ago
Aristid Breitkreuz
2700a13596
rsnapshot: extraConfiguration -> extraConfig
10 years ago
Aristid Breitkreuz
fa1f5e5b75
implement bjornfors comments
10 years ago
Aristid Breitkreuz
cd98acd3a7
add simple rsnapshot module
10 years ago
Evgeny Egorochkin
56e5b35f2e
Properly wipe .compose-cache.
Fixes #267 .
10 years ago
Eelco Dolstra
7808044ba7
Remove the nixos.unstable job from the trunk-combined jobset
10 years ago
Domen Kožar
a09ca7c3d3
Merge pull request #209 from MarcWeber/submit/firebird
systemd/firebird
10 years ago
Marc Weber
5dbc5f120c
firebird service
many suggestions contributed by bjornfor and edolstra
10 years ago
Rok Garbas
c95d830839
adding http_address option to varnish service
10 years ago
Rok Garbas
7b6e26b380
some more zope2 service improvements
10 years ago
Rok Garbas
4ff36cb137
zope2 service fixes
10 years ago
Domen Kožar
fb34754933
Prettify graphite service
cc @offlinehacker
10 years ago
Rok Garbas
81d28e744c
zope2 service (plone)
10 years ago
Eelco Dolstra
17f519e590
Use "cp" instead of "rsync" for VirtualBox image generation
Rsync appears to use a lot of memory. Fixes #266 .
10 years ago
Sander van der Burg
472aff23b7
Move run-in-machine test to a different place, because it does not conform to the other testcases' interface
10 years ago
Eelco Dolstra
c13041c65c
Unify the two Memtest modules
This means we now have Memtest86+ on the installation CD.
10 years ago
Sander van der Burg
1c58fbe4a9
Fix run-in-machine testcase + add it to the tests
10 years ago
Sander van der Burg
afdae66335
The testing interface does not take nixpkgs as a parameter anymore => fix this
10 years ago
Eelco Dolstra
c9b4e6fda2
Don't disable D-Bus if environment.noXlibs is set
D-Bus cannot be disabled since systemd/logind depend on it.
10 years ago
Eelco Dolstra
ed5fbf0082
Don't spam the user
10 years ago
Alexei Robyn
869be5611d
Added support for -I flag to nixos-install
10 years ago
Peter Simons
c811d79c98
Merge pull request #262 from offlinehacker/fix/stage_2_lib_var_db
stage-2-init: create /var/lib and /var/db at boot, so some modules that create user home folders here don't fail
10 years ago
Shea Levy
6e604c8787
enableSplashScreen is no longer a valid option
Signed-off-by: Shea Levy <shea@shealevy.com>
10 years ago
Domen Kožar
5384b04ead
bash: fix broken completion
10 years ago
Eelco Dolstra
df6f5ade40
cupsd: Use Type=forking
http://hydra.nixos.org/build/6291101
10 years ago
Eelco Dolstra
e1318e6026
cupsd: Log to syslog (and thus the journal)
10 years ago