Remove obsolete directory
This commit is contained in:
parent
46afdaf783
commit
f002a27a80
5 changed files with 0 additions and 136 deletions
|
@ -1,21 +0,0 @@
|
||||||
{
|
|
||||||
boot = {
|
|
||||||
loader.grub.device = "/dev/sda";
|
|
||||||
};
|
|
||||||
|
|
||||||
fileSystems = [
|
|
||||||
{ mountPoint = "/";
|
|
||||||
device = "/dev/sda1";
|
|
||||||
}
|
|
||||||
];
|
|
||||||
|
|
||||||
swapDevices = [
|
|
||||||
{ device = "/dev/sdb1"; }
|
|
||||||
];
|
|
||||||
|
|
||||||
services = {
|
|
||||||
openssh = {
|
|
||||||
enable = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -1,32 +0,0 @@
|
||||||
{
|
|
||||||
boot = {
|
|
||||||
loader.grub.device = "/dev/sda";
|
|
||||||
copyKernels = true;
|
|
||||||
bootMount = "(hd0,0)";
|
|
||||||
};
|
|
||||||
|
|
||||||
fileSystems = [
|
|
||||||
{ mountPoint = "/";
|
|
||||||
device = "/dev/sda3";
|
|
||||||
}
|
|
||||||
{ mountPoint = "/boot";
|
|
||||||
device = "/dev/sda1";
|
|
||||||
neededForBoot = true;
|
|
||||||
}
|
|
||||||
];
|
|
||||||
|
|
||||||
swapDevices = [
|
|
||||||
{ device = "/dev/sda2"; }
|
|
||||||
];
|
|
||||||
|
|
||||||
services = {
|
|
||||||
sshd = {
|
|
||||||
enable = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
fonts = {
|
|
||||||
enableFontConfig = false;
|
|
||||||
};
|
|
||||||
|
|
||||||
}
|
|
|
@ -1,27 +0,0 @@
|
||||||
# This configuration has / on a LVM volume. Since Grub
|
|
||||||
# doesn't know about LVM, a separate /boot is therefore
|
|
||||||
# needed.
|
|
||||||
#
|
|
||||||
# In this example, labels are used for file systems and
|
|
||||||
# swap devices: "boot" might be /dev/sda1, "root" might be
|
|
||||||
# /dev/my-volume-group/root, and "swap" might be /dev/sda2.
|
|
||||||
# In particular there is no specific reference to the fact
|
|
||||||
# that / is on LVM; that's figured out automatically.
|
|
||||||
|
|
||||||
{
|
|
||||||
boot.loader.grub.device = "/dev/sda";
|
|
||||||
boot.initrd.kernelModules = ["ata_piix"];
|
|
||||||
|
|
||||||
fileSystems = [
|
|
||||||
{ mountPoint = "/";
|
|
||||||
label = "root";
|
|
||||||
}
|
|
||||||
{ mountPoint = "/boot";
|
|
||||||
label = "boot";
|
|
||||||
}
|
|
||||||
];
|
|
||||||
|
|
||||||
swapDevices = [
|
|
||||||
{ label = "swap"; }
|
|
||||||
];
|
|
||||||
}
|
|
|
@ -1,36 +0,0 @@
|
||||||
{
|
|
||||||
boot = {
|
|
||||||
loader.grub.device = "/dev/sda";
|
|
||||||
};
|
|
||||||
|
|
||||||
fileSystems = [
|
|
||||||
{ mountPoint = "/";
|
|
||||||
device = "/dev/sda1";
|
|
||||||
}
|
|
||||||
];
|
|
||||||
|
|
||||||
services = {
|
|
||||||
|
|
||||||
sshd = {
|
|
||||||
enable = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
httpd = {
|
|
||||||
enable = true;
|
|
||||||
adminAddr = "admin@example.org";
|
|
||||||
|
|
||||||
subservices = {
|
|
||||||
|
|
||||||
subversion = {
|
|
||||||
enable = true;
|
|
||||||
dataDir = "/data/subversion";
|
|
||||||
notificationSender = "svn@example.org";
|
|
||||||
};
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
}
|
|
|
@ -1,20 +0,0 @@
|
||||||
# Configuration file used to install NixOS-x86_64 on a USB stick.
|
|
||||||
|
|
||||||
{
|
|
||||||
boot = {
|
|
||||||
loader.grub.device = "/dev/sda";
|
|
||||||
initrd = {
|
|
||||||
kernelModules = ["usb_storage" "ehci_hcd" "ohci_hcd"];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
fileSystems = [
|
|
||||||
{ mountPoint = "/";
|
|
||||||
label = "nixos-usb";
|
|
||||||
}
|
|
||||||
];
|
|
||||||
|
|
||||||
fonts = {
|
|
||||||
enableFontConfig = false;
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Reference in a new issue