mirror of
https://github.com/nmasur/dotfiles
synced 2025-07-05 12:40:13 +00:00
apply new nix fmt specification
This commit is contained in:
@ -1,4 +1,5 @@
|
||||
{ disk, ... }: {
|
||||
{ disk, ... }:
|
||||
{
|
||||
disk = {
|
||||
boot = {
|
||||
type = "disk";
|
||||
|
@ -1,4 +1,5 @@
|
||||
{ pool, disks, ... }: {
|
||||
{ pool, disks, ... }:
|
||||
{
|
||||
disk = lib.genAttrs disks (disk: {
|
||||
"${disk}" = {
|
||||
type = "disk";
|
||||
@ -6,16 +7,18 @@
|
||||
content = {
|
||||
type = "table";
|
||||
format = "gpt";
|
||||
partitions = [{
|
||||
type = "partition";
|
||||
name = "zfs";
|
||||
start = "128MiB";
|
||||
end = "100%";
|
||||
content = {
|
||||
type = "zfs";
|
||||
pool = pool;
|
||||
};
|
||||
}];
|
||||
partitions = [
|
||||
{
|
||||
type = "partition";
|
||||
name = "zfs";
|
||||
start = "128MiB";
|
||||
end = "100%";
|
||||
content = {
|
||||
type = "zfs";
|
||||
pool = pool;
|
||||
};
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
});
|
||||
|
Reference in New Issue
Block a user