* minimal.nix: don't include base.nix. Also note it's not currently used.
svn path=/nixos/trunk/; revision=30333
This commit is contained in:
parent
f281207ea2
commit
b69dd8759c
2 changed files with 2 additions and 3 deletions
|
@ -36,6 +36,7 @@ in
|
|||
# Profiles of this basic installation CD.
|
||||
../../profiles/all-hardware.nix
|
||||
../../profiles/base.nix
|
||||
# ../../profiles/minimal.nix # should include this, but then the graphical CD will also get it.
|
||||
../../profiles/installation-device.nix
|
||||
];
|
||||
|
||||
|
|
|
@ -1,11 +1,9 @@
|
|||
# This module defines a small NixOS configuration. It does not
|
||||
# contain any graphical stuff.
|
||||
|
||||
{config, pkgs, ...}:
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
require = [ ./base.nix ];
|
||||
|
||||
# Don't include X libraries.
|
||||
services.openssh.forwardX11 = false;
|
||||
services.dbus.enable = false; # depends on libX11
|
||||
|
|
Loading…
Reference in a new issue