Add a base configuration
This commit is contained in:
parent
0f3442ab8c
commit
c757e28761
17
lib/hardware/base.nix
Normal file
17
lib/hardware/base.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{ config, lib, pkgs, modulesPath, ... }: {
|
||||
fileSystems."/" = {
|
||||
device = "/dev/disk/by-label/NixOS";
|
||||
fsType = "ext4";
|
||||
};
|
||||
|
||||
fileSystems."/boot" = {
|
||||
device = "/dev/disk/by-label/Boot";
|
||||
fsType = "vfat";
|
||||
};
|
||||
|
||||
swapDevices = [
|
||||
{
|
||||
device = "/dev/disk/by-label/Swap";
|
||||
}
|
||||
];
|
||||
}
|
|
@ -1,5 +1,6 @@
|
|||
{ config, lib, pkgs, modulesPath, ... }: {
|
||||
imports = [
|
||||
./base.nix
|
||||
(modulesPath + "/profiles/qemu-guest.nix")
|
||||
];
|
||||
|
||||
|
|
Loading…
Reference in a new issue