biotite,thorite: added
This commit is contained in:
parent
3dc3775a6c
commit
2327a171b8
5 changed files with 144 additions and 0 deletions
22
machines/biotite/hardware-configurations.nix
Normal file
22
machines/biotite/hardware-configurations.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ config, modulesPath, ... }:
|
||||
{
|
||||
imports = [
|
||||
(modulesPath + "/profiles/qemu-guest.nix")
|
||||
];
|
||||
|
||||
disko.devices = {
|
||||
disk = {
|
||||
main = {
|
||||
type = "disk";
|
||||
device = "/dev/vda";
|
||||
content = {
|
||||
type = "gpt";
|
||||
partitions = {
|
||||
boot = config.diskPartitions.grubMbr;
|
||||
root = config.diskPartitions.btrfs;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue